1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
so check.vim
CheckExecutable unzip
if 0 " Find uncovered line
profile start zip_profile
profile! file */zip*.vim
endif
runtime plugin/zipPlugin.vim
func Test_zip_basic()
"## get our zip file
if !filecopy("samples/test.zip", "X.zip")
call assert_report("Can't copy samples/test.zip")
return
endif
defer delete("X.zip")
e X.zip
"## Check header
call assert_match('^" zip\.vim version v\d\+', getline(1))
call assert_match('^" Browsing zipfile .*/X.zip', getline(2))
call assert_match('^" Select a file with cursor and press ENTER', getline(3))
call assert_match('^$', getline(4))
"## Check files listing
call assert_equal(["Xzip/", "Xzip/dir/", "Xzip/file.txt"], getline(5, 7))
"## Check ENTER on header
:1
exe ":normal \<cr>"
call assert_equal("X.zip", @%)
"## Check ENTER on directory
:1|:/^$//dir/
call assert_match('Please specify a file, not a directory',
\ execute("normal \<CR>"))
"## Check ENTER on file
:1
call search('file.txt')
exe ":normal \<cr>"
call assert_match('zipfile://.*/X.zip::Xzip/file.txt', @%)
call assert_equal('one', getline(1))
"## Check editing file
if executable("zip")
s/one/two/
call assert_equal("two", getline(1))
w
bw|bw
e X.zip
:1|:/^$//file/
exe "normal \<cr>"
call assert_equal("two", getline(1))
endif
only
e X.zip
"## Check extracting file
:1|:/^$//file/
normal x
call assert_true(filereadable("Xzip/file.txt"))
"## Check not overwriting existing file
call assert_match('<Xzip/file.txt> .* not overwriting!', execute("normal x"))
call delete("Xzip", "rf")
"## Check extracting directory
:1|:/^$//dir/
call assert_match('Please specify a file, not a directory', execute("normal x"))
call assert_equal("X.zip", @%)
"## Check "x" on header
:1
normal x
call assert_equal("X.zip", @%)
bw
"## Check opening zip when "unzip" program is missing
let save_zip_unzipcmd = g:zip_unzipcmd
let g:zip_unzipcmd = "/"
call assert_match('unzip not available on your system', execute("e X.zip"))
"## Check when "unzip" don't work
if executable("false")
let g:zip_unzipcmd = "false"
call assert_match('X\.zip is not a zip file', execute("e X.zip"))
endif
bw
let g:zip_unzipcmd = save_zip_unzipcmd
e X.zip
"## Check opening file when "unzip" is missing
let g:zip_unzipcmd = "/"
call assert_match('sorry, your system doesn''t appear to have the / program',
\ execute("normal \<CR>"))
bw|bw
let g:zip_unzipcmd = save_zip_unzipcmd
e X.zip
"## Check :write when "zip" program is missing
:1|:/^$//file/
exe "normal \<cr>Goanother\<esc>"
let save_zip_zipcmd = g:zip_zipcmd
let g:zip_zipcmd = "/"
call assert_match('sorry, your system doesn''t appear to have the / program',
\ execute("write"))
"## Check when "zip" report failure
if executable("false")
let g:zip_zipcmd = "false"
call assert_match('sorry, unable to update .*/X.zip with Xzip/file.txt',
\ execute("write"))
endif
bw!|bw
let g:zip_zipcmd = save_zip_zipcmd
"## Check opening an no zipfile
call writefile(["qsdf"], "Xcorupt.zip", "D")
e! Xcorupt.zip
call assert_equal("qsdf", getline(1))
bw
"## Check no existing zipfile
call assert_match('File not readable', execute("e Xnot_exists.zip"))
bw
endfunc
func Test_zip_glob_fname()
CheckNotMSWindows
" does not work on Windows, why?
"## copy sample zip file
if !filecopy("samples/testa.zip", "X.zip")
call assert_report("Can't copy samples/testa.zip")
return
endif
defer delete("X.zip")
defer delete('zipglob', 'rf')
e X.zip
"## 1) Check extracting strange files
:1
let fname = 'a[a].txt'
call search('\V' .. fname)
normal x
call assert_true(filereadable('zipglob/' .. fname))
call delete('zipglob', 'rf')
:1
let fname = 'a*.txt'
call search('\V' .. fname)
normal x
call assert_true(filereadable('zipglob/' .. fname))
call delete('zipglob', 'rf')
:1
let fname = 'a?.txt'
call search('\V' .. fname)
normal x
call assert_true(filereadable('zipglob/' .. fname))
call delete('zipglob', 'rf')
:1
let fname = 'a\.txt'
call search('\V' .. escape(fname, '\\'))
normal x
call assert_true(filereadable('zipglob/' .. fname))
call delete('zipglob', 'rf')
:1
let fname = 'a\\.txt'
call search('\V' .. escape(fname, '\\'))
normal x
call assert_true(filereadable('zipglob/' .. fname))
call delete('zipglob', 'rf')
"## 2) Check entering strange file names
:1
let fname = 'a[a].txt'
call search('\V' .. fname)
exe ":normal \<cr>"
call assert_match('zipfile://.*/X.zip::zipglob/a\[a\].txt', @%)
call assert_equal('a test file with []', getline(1))
bw
e X.zip
:1
let fname = 'a*.txt'
call search('\V' .. fname)
exe ":normal \<cr>"
call assert_match('zipfile://.*/X.zip::zipglob/a\*.txt', @%)
call assert_equal('a test file with a*', getline(1))
bw
e X.zip
:1
let fname = 'a?.txt'
call search('\V' .. fname)
exe ":normal \<cr>"
call assert_match('zipfile://.*/X.zip::zipglob/a?.txt', @%)
call assert_equal('a test file with a?', getline(1))
bw
e X.zip
:1
let fname = 'a\.txt'
call search('\V' .. escape(fname, '\\'))
exe ":normal \<cr>"
call assert_match('zipfile://.*/X.zip::zipglob/a\\.txt', @%)
call assert_equal('a test file with a\', getline(1))
bw
e X.zip
:1
let fname = 'a\\.txt'
call search('\V' .. escape(fname, '\\'))
exe ":normal \<cr>"
call assert_match('zipfile://.*/X.zip::zipglob/a\\\\.txt', @%)
call assert_equal('a test file with a double \', getline(1))
bw
bw
endfunc
func Test_zip_fname_leading_hyphen()
CheckNotMSWindows
"## copy sample zip file
if !filecopy("samples/poc.zip", "X.zip")
call assert_report("Can't copy samples/poc.zip")
return
endif
defer delete("X.zip")
defer delete('-d', 'rf')
defer delete('/tmp/pwned', 'rf')
e X.zip
:1
let fname = '-d/tmp'
call search('\V' .. fname)
normal x
call assert_true(filereadable('-d/tmp'))
call assert_false(filereadable('/tmp/pwned'))
bw
endfunc
|