瀏覽代碼

init commit

bmallred 11 年之前
當前提交
1abfdc65a4
共有 2 個文件被更改,包括 226 次插入0 次删除
  1. 81 0
      README.md
  2. 145 0
      plugin/umbrella.vim

+ 81 - 0
README.md

@ -0,0 +1,81 @@
1
Umbrella
2
========
3
4
Runs unit tests and code coverage within the project.
5
6
Introduction
7
------------
8
9
There seems to be a plethora of ways to run unit tests and provide
10
code coverage. It is fine to have a pretty print out showing what
11
areas need more eyes on them but we can do better. By providing
12
quicker feedback the aim is to minimize errors before committing
13
as well as maximizing our testable code base.
14
15
Installation
16
------------
17
18
Using [pathogen.vim](https://github.com/tpope/vim-pathogen)
19
20
```sh
21
    cd ~/.vim/bundle
22
    git clone git://github.com/revolvingcow/vim-umbrella.git
23
```
24
25
Restart `vim` and then:
26
27
```vim
28
    :Helptags
29
```
30
31
Once help tags have been generated, you can view the manual with
32
33
```vim
34
    :help umbrella
35
```
36
37
-
38
39
Using [vundle](https://github.com/gmarik/vundle)
40
41
Append the plugin to the list of existing bundles:
42
43
```sh
44
    Bundle "revolvingcow/vim-umbrella"
45
```
46
47
Then quit (`:q`) and go back in to `vim` and run `:BundleInstall`
48
49
50
How it works
51
------------
52
53
```vim
54
    :Umbrella
55
```
56
57
```vim
58
    :UmbrellaRefresh
59
```
60
61
```vim
62
    :UmbrellaClear
63
```
64
65
```vim
66
    nnoremap    <F7>   :<C-U>Umbrella<CR>
67
    ...
68
```
69
70
License
71
-------
72
73
Umbrella is licensed under the same terms as Vim itself (see [`:help
74
license`](http://vimdoc.sourceforge.net/htmldoc/uganda.html#license)).
75
76
Thanks
77
------
78
79
Many thanks go to [syntastic](https://github.com/scrooloose/sytastic) and
80
[makeshift](https://github.com/johnsyweb/vim-makeshift). Both of these
81
provided a great template to extend on.

+ 145 - 0
plugin/umbrella.vim

@ -0,0 +1,145 @@
1
if exists('g:loaded_umbrella') || &cp || version < 700
2
    finish
3
endif
4
5
let g:loaded_umbrella = 0.1
6
let s:keepcpo = &cpo
7
set cpo&vim
8
9
" Declare highlights.
10
highlight UmbrellaCovered ctermfg=0 ctermbg=121 guifg=Black guibg=Green
11
highlight UmbrellaPartial ctermfg=0 ctermbg=11 guifg=Black guibg=Yellow
12
highlight UmbrellaNone ctermfg=15 ctermbg=1 guifg=White guibg=Red
13
14
" Declare signs.
15
sign define UmbrellaCovered text==] texthl=UmbrellaCovered
16
sign define UmbrellaPartial text==| texthl=UmbrellaPartial
17
sign define UmbrellaNone text==[ texthl=UmbrellaNone
18
19
function! s:Initialize()
20
    let s:coverage_systems = {
21
                \'umbrella': './umbrella',
22
                \}
23
24
    if exists('g:umbrella_root')
25
        unlet g:umbrella_root
26
    endif
27
28
    if exists('g:umbrella_program')
29
        unlet g:umbrella_program
30
    endif
31
32
    if exists('g:umbrella_coverage')
33
        unlet g:umbrella_coverage
34
    endif
35
36
    call s:FindProgram(expand('%:p:h'))
37
endfunction
38
39
function! s:FindProgram(dir)
40
    for [l:filename, l:program] in items(s:coverage_systems)
41
        let l:found = globpath(a:dir, l:filename)
42
        if filereadable(l:found)
43
            let g:umbrella_root = a:dir
44
            let g:umbrella_program = l:program
45
            let g:umbrella_coverage = a:dir . "/.umbrella-coverage"
46
        endif
47
    endfor
48
49
    let l:parent = fnamemodify(a:dir, ':h')
50
    if l:parent != a:dir
51
        call s:FindProgram(l:parent)
52
    endif
53
endfunction
54
55
function! s:SetMakeProgram(program)
56
    if len(a:program)
57
        let &l:makeprg=a:program
58
    endif
59
endfunction
60
61
function! s:RunCoverage()
62
    if exists('g:umbrella_root') && exists('g:umbrella_program')
63
        exec "cd! " . g:umbrella_root
64
        call s:SetMakeProgram(g:umbrella_program)
65
        exec ":silent make"
66
        cd! -
67
    endif
68
endfunction
69
70
function! s:ClearCoverage()
71
    sign unplace *
72
endfunction
73
74
function! s:ShowCoverage()
75
    call s:ClearCoverage()
76
77
    if !has("signs") || empty(bufname(""))
78
        return
79
    endif
80
81
82
    if exists('g:umbrella_root') && exists('g:umbrella_coverage')
83
        exec "cd! " . g:umbrella_root
84
        for line in readfile(g:umbrella_coverage)
85
            let parts = split(l:line, ";")
86
87
            if bufexists(l:parts[0])
88
                if len(l:parts[1])
89
                    exe ":sign place 1 line=" . l:parts[1] . " name=UmbrellaCovered file=" . l:parts[0]
90
                endif
91
92
                if len(l:parts[2])
93
                    exe ":sign place 1 line=" . l:parts[2] . " name=UmbrellaPartial file=" . l:parts[0]
94
                endif
95
96
                if len(l:parts[3])
97
                    exe ":sign place 1 line=" . l:parts[3] . " name=UmbrellaNone file=" . l:parts[0]
98
                endif
99
            endif
100
        endfor
101
        cd! -
102
    endif
103
endfunction
104
105
" Commands
106
command Umbrella
107
    \ call s:RunCoverage()
108
    \ call s:ShowCoverage()
109
command UmbrellaRefresh
110
    \ call s:ShowCoverage()
111
command UmbrellaClear
112
    \ call s:ClearCoverage()
113
114
" Autocommands
115
augroup umbrella
116
    autocmd BufReadPost * call s:BufReadPostHook()
117
    autocmd BufWritePost * call s:BufWritePostHook()
118
    autocmd BufWinEnter * call s:BufWinEnterHook()
119
    autocmd BufEnter * call s:BufEnterHook()
120
augroup END
121
122
" Hooks
123
function! s:BufReadPostHook()
124
    call s:Initialize()
125
    call s:ShowCoverage()
126
endfunction
127
128
function! s:BufWritePostHook()
129
    call s:RunCoverage()
130
    call s:ShowCoverage()
131
endfunction
132
133
function! s:BufWinEnterHook()
134
    call s:Initialize()
135
    call s:ShowCoverage()
136
endfunction
137
138
function! s:BufEnterHook()
139
    call s:Initialize()
140
    call s:ShowCoverage()
141
endfunction
142
143
let &cpo=s:keepcpo
144
unlet s:keepcpo
145
" vim: et:sw=4:ts=8:ft=vim