Bram Moolenaar | c525e3a | 2017-02-18 16:59:02 +0100 | [diff] [blame] | 1 | " Test :recover |
| 2 | |
Bram Moolenaar | f52f060 | 2021-03-10 21:26:37 +0100 | [diff] [blame] | 3 | source check.vim |
| 4 | |
Bram Moolenaar | c525e3a | 2017-02-18 16:59:02 +0100 | [diff] [blame] | 5 | func Test_recover_root_dir() |
| 6 | " This used to access invalid memory. |
| 7 | split Xtest |
| 8 | set dir=/ |
| 9 | call assert_fails('recover', 'E305:') |
| 10 | close! |
| 11 | |
Bram Moolenaar | 2a0b06d | 2017-05-18 16:23:43 +0200 | [diff] [blame] | 12 | if has('win32') || filewritable('/') == 2 |
Bram Moolenaar | 8034520 | 2017-02-18 22:43:19 +0100 | [diff] [blame] | 13 | " can write in / directory on MS-Windows |
| 14 | set dir=/notexist/ |
| 15 | endif |
Bram Moolenaar | c525e3a | 2017-02-18 16:59:02 +0100 | [diff] [blame] | 16 | call assert_fails('split Xtest', 'E303:') |
Bram Moolenaar | 00e192b | 2019-10-19 17:01:28 +0200 | [diff] [blame] | 17 | |
| 18 | " No error with empty 'directory' setting. |
| 19 | set directory= |
| 20 | split XtestOK |
| 21 | close! |
| 22 | |
Bram Moolenaar | c525e3a | 2017-02-18 16:59:02 +0100 | [diff] [blame] | 23 | set dir& |
| 24 | endfunc |
| 25 | |
Bram Moolenaar | f52f060 | 2021-03-10 21:26:37 +0100 | [diff] [blame] | 26 | " Make a copy of the current swap file to "Xswap". |
| 27 | " Return the name of the swap file. |
| 28 | func CopySwapfile() |
| 29 | preserve |
| 30 | " get the name of the swap file |
| 31 | let swname = split(execute("swapname"))[0] |
| 32 | let swname = substitute(swname, '[[:blank:][:cntrl:]]*\(.\{-}\)[[:blank:][:cntrl:]]*$', '\1', '') |
| 33 | " make a copy of the swap file in Xswap |
| 34 | set binary |
| 35 | exe 'sp ' . swname |
| 36 | w! Xswap |
| 37 | set nobinary |
| 38 | return swname |
| 39 | endfunc |
| 40 | |
Bram Moolenaar | 4a6fcf8 | 2017-10-12 21:29:22 +0200 | [diff] [blame] | 41 | " Inserts 10000 lines with text to fill the swap file with two levels of pointer |
| 42 | " blocks. Then recovers from the swap file and checks all text is restored. |
| 43 | " |
| 44 | " We need about 10000 lines of 100 characters to get two levels of pointer |
| 45 | " blocks. |
| 46 | func Test_swap_file() |
Bram Moolenaar | 67418d9 | 2017-10-15 22:07:39 +0200 | [diff] [blame] | 47 | set fileformat=unix undolevels=-1 |
Bram Moolenaar | 4a6fcf8 | 2017-10-12 21:29:22 +0200 | [diff] [blame] | 48 | edit! Xtest |
| 49 | let text = "\tabcdefghijklmnoparstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnoparstuvwxyz0123456789" |
| 50 | let i = 1 |
| 51 | let linecount = 10000 |
| 52 | while i <= linecount |
| 53 | call append(i - 1, i . text) |
| 54 | let i += 1 |
| 55 | endwhile |
| 56 | $delete |
Bram Moolenaar | f52f060 | 2021-03-10 21:26:37 +0100 | [diff] [blame] | 57 | |
| 58 | let swname = CopySwapfile() |
| 59 | |
Bram Moolenaar | 4a6fcf8 | 2017-10-12 21:29:22 +0200 | [diff] [blame] | 60 | new |
| 61 | only! |
| 62 | bwipe! Xtest |
| 63 | call rename('Xswap', swname) |
| 64 | recover Xtest |
| 65 | call delete(swname) |
| 66 | let linedollar = line('$') |
| 67 | call assert_equal(linecount, linedollar) |
| 68 | if linedollar < linecount |
| 69 | let linecount = linedollar |
| 70 | endif |
| 71 | let i = 1 |
| 72 | while i <= linecount |
| 73 | call assert_equal(i . text, getline(i)) |
| 74 | let i += 1 |
| 75 | endwhile |
| 76 | |
| 77 | set undolevels& |
| 78 | enew! | only |
| 79 | endfunc |
Bram Moolenaar | 6d91bcb | 2020-08-12 18:50:36 +0200 | [diff] [blame] | 80 | |
Bram Moolenaar | f52f060 | 2021-03-10 21:26:37 +0100 | [diff] [blame] | 81 | func Test_nocatch_process_still_running() |
Bram Moolenaar | 6635ae1 | 2021-03-10 21:46:39 +0100 | [diff] [blame] | 82 | " sysinfo.uptime probably only works on Linux |
Bram Moolenaar | 776b954 | 2021-03-10 22:27:48 +0100 | [diff] [blame] | 83 | if !has('linux') |
| 84 | let g:skipped_reason = 'only works on Linux' |
| 85 | return |
| 86 | endif |
Bram Moolenaar | 6635ae1 | 2021-03-10 21:46:39 +0100 | [diff] [blame] | 87 | " the GUI dialog can't be handled |
Bram Moolenaar | 776b954 | 2021-03-10 22:27:48 +0100 | [diff] [blame] | 88 | if has('gui_running') |
| 89 | let g:skipped_reason = 'only works in the terminal' |
| 90 | return |
| 91 | endif |
Bram Moolenaar | f52f060 | 2021-03-10 21:26:37 +0100 | [diff] [blame] | 92 | |
| 93 | " don't intercept existing swap file here |
| 94 | au! SwapExists |
| 95 | |
| 96 | " Edit a file and grab its swapfile. |
| 97 | edit Xswaptest |
| 98 | call setline(1, ['a', 'b', 'c']) |
| 99 | let swname = CopySwapfile() |
| 100 | |
| 101 | " Forget we edited this file |
| 102 | new |
| 103 | only! |
| 104 | bwipe! Xswaptest |
| 105 | |
| 106 | call rename('Xswap', swname) |
| 107 | call feedkeys('e', 'tL') |
| 108 | redir => editOutput |
| 109 | edit Xswaptest |
| 110 | redir END |
| 111 | call assert_match('E325: ATTENTION', editOutput) |
| 112 | call assert_match('file name: .*Xswaptest', editOutput) |
| 113 | call assert_match('process ID: \d* (STILL RUNNING)', editOutput) |
| 114 | |
| 115 | " Forget we edited this file |
| 116 | new |
| 117 | only! |
| 118 | bwipe! Xswaptest |
| 119 | |
| 120 | " pretend we rebooted |
| 121 | call test_override("uptime", 0) |
| 122 | sleep 1 |
| 123 | |
| 124 | call rename('Xswap', swname) |
| 125 | call feedkeys('e', 'tL') |
| 126 | redir => editOutput |
| 127 | edit Xswaptest |
| 128 | redir END |
| 129 | call assert_match('E325: ATTENTION', editOutput) |
| 130 | call assert_notmatch('(STILL RUNNING)', editOutput) |
| 131 | |
| 132 | call test_override("ALL", 0) |
| 133 | call delete(swname) |
| 134 | endfunc |
| 135 | |
Yegappan Lakshmanan | 59b2623 | 2021-06-05 20:59:22 +0200 | [diff] [blame] | 136 | " Test for :recover with multiple swap files |
| 137 | func Test_recover_multiple_swap_files() |
| 138 | CheckUnix |
| 139 | new Xfile1 |
| 140 | call setline(1, ['a', 'b', 'c']) |
| 141 | preserve |
Yegappan Lakshmanan | 9928555 | 2021-06-06 17:12:46 +0200 | [diff] [blame] | 142 | let b = readblob(swapname('')) |
Yegappan Lakshmanan | 59b2623 | 2021-06-05 20:59:22 +0200 | [diff] [blame] | 143 | call writefile(b, '.Xfile1.swm') |
| 144 | call writefile(b, '.Xfile1.swn') |
| 145 | call writefile(b, '.Xfile1.swo') |
| 146 | %bw! |
| 147 | call feedkeys(":recover Xfile1\<CR>3\<CR>q", 'xt') |
| 148 | call assert_equal(['a', 'b', 'c'], getline(1, '$')) |
Yegappan Lakshmanan | 8cf02e5 | 2021-06-07 20:41:22 +0200 | [diff] [blame] | 149 | " try using out-of-range number to select a swap file |
| 150 | bw! |
| 151 | call feedkeys(":recover Xfile1\<CR>4\<CR>q", 'xt') |
| 152 | call assert_equal('Xfile1', @%) |
| 153 | call assert_equal([''], getline(1, '$')) |
| 154 | bw! |
| 155 | call feedkeys(":recover Xfile1\<CR>0\<CR>q", 'xt') |
| 156 | call assert_equal('Xfile1', @%) |
| 157 | call assert_equal([''], getline(1, '$')) |
| 158 | bw! |
Yegappan Lakshmanan | 59b2623 | 2021-06-05 20:59:22 +0200 | [diff] [blame] | 159 | |
| 160 | call delete('.Xfile1.swm') |
| 161 | call delete('.Xfile1.swn') |
| 162 | call delete('.Xfile1.swo') |
| 163 | endfunc |
| 164 | |
| 165 | " Test for :recover using an empty swap file |
| 166 | func Test_recover_empty_swap_file() |
| 167 | CheckUnix |
| 168 | call writefile([], '.Xfile1.swp') |
| 169 | let msg = execute('recover Xfile1') |
| 170 | call assert_match('Unable to read block 0 from .Xfile1.swp', msg) |
| 171 | call assert_equal('Xfile1', @%) |
| 172 | bw! |
| 173 | " :recover from an empty buffer |
| 174 | call assert_fails('recover', 'E305:') |
| 175 | call delete('.Xfile1.swp') |
| 176 | endfunc |
| 177 | |
| 178 | " Test for :recover using a corrupted swap file |
Yegappan Lakshmanan | 8cf02e5 | 2021-06-07 20:41:22 +0200 | [diff] [blame] | 179 | " Refer to the comments in the memline.c file for the swap file headers |
| 180 | " definition. |
Yegappan Lakshmanan | 59b2623 | 2021-06-05 20:59:22 +0200 | [diff] [blame] | 181 | func Test_recover_corrupted_swap_file() |
| 182 | CheckUnix |
Yegappan Lakshmanan | 9928555 | 2021-06-06 17:12:46 +0200 | [diff] [blame] | 183 | |
Yegappan Lakshmanan | 59b2623 | 2021-06-05 20:59:22 +0200 | [diff] [blame] | 184 | " recover using a partial swap file |
| 185 | call writefile(0z1234, '.Xfile1.swp') |
| 186 | call assert_fails('recover Xfile1', 'E295:') |
| 187 | bw! |
| 188 | |
| 189 | " recover using invalid content in the swap file |
| 190 | call writefile([repeat('1', 2*1024)], '.Xfile1.swp') |
| 191 | call assert_fails('recover Xfile1', 'E307:') |
| 192 | call delete('.Xfile1.swp') |
| 193 | |
| 194 | " :recover using a swap file with a corrupted header |
| 195 | edit Xfile1 |
| 196 | preserve |
| 197 | let sn = swapname('') |
| 198 | let b = readblob(sn) |
Yegappan Lakshmanan | 9928555 | 2021-06-06 17:12:46 +0200 | [diff] [blame] | 199 | let save_b = copy(b) |
Yegappan Lakshmanan | 59b2623 | 2021-06-05 20:59:22 +0200 | [diff] [blame] | 200 | bw! |
Yegappan Lakshmanan | 9928555 | 2021-06-06 17:12:46 +0200 | [diff] [blame] | 201 | |
James McCoy | 6654ca7 | 2021-06-12 14:05:41 +0200 | [diff] [blame] | 202 | " Not all fields are written in a system-independent manner. Detect whether |
| 203 | " the test is running on a little or big-endian system, so the correct |
| 204 | " corruption values can be set. |
| 205 | let little_endian = b[1008:1015] == 0z33323130.00000000 |
Yegappan Lakshmanan | 8cf02e5 | 2021-06-07 20:41:22 +0200 | [diff] [blame] | 206 | |
James McCoy | 6654ca7 | 2021-06-12 14:05:41 +0200 | [diff] [blame] | 207 | " clear the B0_MAGIC_LONG field |
| 208 | let b[1008:1015] = 0z0000000000000000 |
| 209 | call writefile(b, sn) |
| 210 | let msg = execute('recover Xfile1') |
| 211 | call assert_match('the file has been damaged', msg) |
| 212 | call assert_equal('Xfile1', @%) |
| 213 | call assert_equal([''], getline(1, '$')) |
| 214 | bw! |
Yegappan Lakshmanan | 9928555 | 2021-06-06 17:12:46 +0200 | [diff] [blame] | 215 | |
James McCoy | 6654ca7 | 2021-06-12 14:05:41 +0200 | [diff] [blame] | 216 | " reduce the page size |
| 217 | let b = copy(save_b) |
| 218 | let b[12:15] = 0z00010000 |
| 219 | call writefile(b, sn) |
| 220 | let msg = execute('recover Xfile1') |
| 221 | call assert_match('page size is smaller than minimum value', msg) |
| 222 | call assert_equal('Xfile1', @%) |
| 223 | call assert_equal([''], getline(1, '$')) |
| 224 | bw! |
Yegappan Lakshmanan | 8cf02e5 | 2021-06-07 20:41:22 +0200 | [diff] [blame] | 225 | |
James McCoy | 6654ca7 | 2021-06-12 14:05:41 +0200 | [diff] [blame] | 226 | " clear the pointer ID |
| 227 | let b = copy(save_b) |
| 228 | let b[4096:4097] = 0z0000 |
| 229 | call writefile(b, sn) |
| 230 | call assert_fails('recover Xfile1', 'E310:') |
| 231 | call assert_equal('Xfile1', @%) |
| 232 | call assert_equal([''], getline(1, '$')) |
| 233 | bw! |
Yegappan Lakshmanan | 8cf02e5 | 2021-06-07 20:41:22 +0200 | [diff] [blame] | 234 | |
James McCoy | 6654ca7 | 2021-06-12 14:05:41 +0200 | [diff] [blame] | 235 | " set the number of pointers in a pointer block to zero |
| 236 | let b = copy(save_b) |
| 237 | let b[4098:4099] = 0z0000 |
| 238 | call writefile(b, sn) |
| 239 | call assert_fails('recover Xfile1', 'E312:') |
| 240 | call assert_equal('Xfile1', @%) |
| 241 | call assert_equal(['???EMPTY BLOCK'], getline(1, '$')) |
| 242 | bw! |
Yegappan Lakshmanan | 9928555 | 2021-06-06 17:12:46 +0200 | [diff] [blame] | 243 | |
James McCoy | 6654ca7 | 2021-06-12 14:05:41 +0200 | [diff] [blame] | 244 | " set the block number in a pointer entry to a negative number |
| 245 | let b = copy(save_b) |
| 246 | let b[4104:4111] = little_endian ? 0z00000000.00000080 : 0z80000000.00000000 |
| 247 | call writefile(b, sn) |
| 248 | call assert_fails('recover Xfile1', 'E312:') |
| 249 | call assert_equal('Xfile1', @%) |
| 250 | call assert_equal(['???LINES MISSING'], getline(1, '$')) |
| 251 | bw! |
Yegappan Lakshmanan | 8cf02e5 | 2021-06-07 20:41:22 +0200 | [diff] [blame] | 252 | |
James McCoy | 6654ca7 | 2021-06-12 14:05:41 +0200 | [diff] [blame] | 253 | " clear the data block ID |
| 254 | let b = copy(save_b) |
| 255 | let b[8192:8193] = 0z0000 |
| 256 | call writefile(b, sn) |
| 257 | call assert_fails('recover Xfile1', 'E312:') |
| 258 | call assert_equal('Xfile1', @%) |
| 259 | call assert_equal(['???BLOCK MISSING'], getline(1, '$')) |
| 260 | bw! |
Yegappan Lakshmanan | 8cf02e5 | 2021-06-07 20:41:22 +0200 | [diff] [blame] | 261 | |
James McCoy | 6654ca7 | 2021-06-12 14:05:41 +0200 | [diff] [blame] | 262 | " set the number of lines in the data block to zero |
| 263 | let b = copy(save_b) |
| 264 | let b[8208:8215] = 0z00000000.00000000 |
| 265 | call writefile(b, sn) |
| 266 | call assert_fails('recover Xfile1', 'E312:') |
| 267 | call assert_equal('Xfile1', @%) |
| 268 | call assert_equal(['??? from here until ???END lines may have been inserted/deleted', |
| 269 | \ '???END'], getline(1, '$')) |
| 270 | bw! |
Yegappan Lakshmanan | 8cf02e5 | 2021-06-07 20:41:22 +0200 | [diff] [blame] | 271 | |
James McCoy | 6654ca7 | 2021-06-12 14:05:41 +0200 | [diff] [blame] | 272 | " use an invalid text start for the lines in a data block |
| 273 | let b = copy(save_b) |
| 274 | let b[8216:8219] = 0z00000000 |
| 275 | call writefile(b, sn) |
| 276 | call assert_fails('recover Xfile1', 'E312:') |
| 277 | call assert_equal('Xfile1', @%) |
| 278 | call assert_equal(['???'], getline(1, '$')) |
| 279 | bw! |
Yegappan Lakshmanan | 9928555 | 2021-06-06 17:12:46 +0200 | [diff] [blame] | 280 | |
James McCoy | 6654ca7 | 2021-06-12 14:05:41 +0200 | [diff] [blame] | 281 | " use an incorrect text end (db_txt_end) for the data block |
| 282 | let b = copy(save_b) |
| 283 | let b[8204:8207] = little_endian ? 0z80000000 : 0z00000080 |
| 284 | call writefile(b, sn) |
| 285 | call assert_fails('recover Xfile1', 'E312:') |
| 286 | call assert_equal('Xfile1', @%) |
| 287 | call assert_equal(['??? from here until ???END lines may be messed up', '', |
| 288 | \ '???END'], getline(1, '$')) |
| 289 | bw! |
| 290 | |
| 291 | " remove the data block |
| 292 | let b = copy(save_b) |
| 293 | call writefile(b[:8191], sn) |
| 294 | call assert_fails('recover Xfile1', 'E312:') |
| 295 | call assert_equal('Xfile1', @%) |
| 296 | call assert_equal(['???MANY LINES MISSING'], getline(1, '$')) |
Yegappan Lakshmanan | 9928555 | 2021-06-06 17:12:46 +0200 | [diff] [blame] | 297 | |
Yegappan Lakshmanan | 59b2623 | 2021-06-05 20:59:22 +0200 | [diff] [blame] | 298 | bw! |
| 299 | call delete(sn) |
| 300 | endfunc |
| 301 | |
| 302 | " Test for :recover using an encrypted swap file |
| 303 | func Test_recover_encrypted_swap_file() |
| 304 | CheckUnix |
| 305 | |
| 306 | " Recover an encrypted file from the swap file without the original file |
| 307 | new Xfile1 |
| 308 | call feedkeys(":X\<CR>vim\<CR>vim\<CR>", 'xt') |
| 309 | call setline(1, ['aaa', 'bbb', 'ccc']) |
| 310 | preserve |
| 311 | let b = readblob('.Xfile1.swp') |
| 312 | call writefile(b, '.Xfile1.swm') |
| 313 | bw! |
| 314 | call feedkeys(":recover Xfile1\<CR>vim\<CR>\<CR>", 'xt') |
| 315 | call assert_equal(['aaa', 'bbb', 'ccc'], getline(1, '$')) |
| 316 | bw! |
| 317 | call delete('.Xfile1.swm') |
| 318 | |
| 319 | " Recover an encrypted file from the swap file with the original file |
| 320 | new Xfile1 |
| 321 | call feedkeys(":X\<CR>vim\<CR>vim\<CR>", 'xt') |
| 322 | call setline(1, ['aaa', 'bbb', 'ccc']) |
| 323 | update |
| 324 | call setline(1, ['111', '222', '333']) |
| 325 | preserve |
| 326 | let b = readblob('.Xfile1.swp') |
| 327 | call writefile(b, '.Xfile1.swm') |
| 328 | bw! |
| 329 | call feedkeys(":recover Xfile1\<CR>vim\<CR>\<CR>", 'xt') |
| 330 | call assert_equal(['111', '222', '333'], getline(1, '$')) |
| 331 | call assert_true(&modified) |
| 332 | bw! |
| 333 | call delete('.Xfile1.swm') |
| 334 | call delete('Xfile1') |
| 335 | endfunc |
| 336 | |
| 337 | " Test for :recover using a unreadable swap file |
| 338 | func Test_recover_unreadble_swap_file() |
| 339 | CheckUnix |
| 340 | CheckNotRoot |
| 341 | new Xfile1 |
| 342 | let b = readblob('.Xfile1.swp') |
| 343 | call writefile(b, '.Xfile1.swm') |
| 344 | bw! |
| 345 | call setfperm('.Xfile1.swm', '-w-------') |
| 346 | call assert_fails('recover Xfile1', 'E306:') |
| 347 | call delete('.Xfile1.swm') |
| 348 | endfunc |
| 349 | |
| 350 | " Test for using :recover when the original file and the swap file have the |
| 351 | " same contents. |
| 352 | func Test_recover_unmodified_file() |
| 353 | CheckUnix |
| 354 | call writefile(['aaa', 'bbb', 'ccc'], 'Xfile1') |
| 355 | edit Xfile1 |
| 356 | preserve |
| 357 | let b = readblob('.Xfile1.swp') |
| 358 | %bw! |
| 359 | call writefile(b, '.Xfile1.swz') |
| 360 | let msg = execute('recover Xfile1') |
| 361 | call assert_equal(['aaa', 'bbb', 'ccc'], getline(1, '$')) |
| 362 | call assert_false(&modified) |
| 363 | call assert_match('Buffer contents equals file contents', msg) |
| 364 | bw! |
| 365 | call delete('Xfile1') |
| 366 | call delete('.Xfile1.swz') |
| 367 | endfunc |
| 368 | |
Yegappan Lakshmanan | 8cf02e5 | 2021-06-07 20:41:22 +0200 | [diff] [blame] | 369 | " Test for recovering a file when editing a symbolically linked file |
| 370 | func Test_recover_symbolic_link() |
| 371 | CheckUnix |
| 372 | call writefile(['aaa', 'bbb', 'ccc'], 'Xfile1') |
| 373 | silent !ln -s Xfile1 Xfile2 |
| 374 | edit Xfile2 |
| 375 | call assert_equal('.Xfile1.swp', fnamemodify(swapname(''), ':t')) |
| 376 | preserve |
| 377 | let b = readblob('.Xfile1.swp') |
| 378 | %bw! |
| 379 | call writefile([], 'Xfile1') |
| 380 | call writefile(b, '.Xfile1.swp') |
| 381 | silent! recover Xfile2 |
| 382 | call assert_equal(['aaa', 'bbb', 'ccc'], getline(1, '$')) |
| 383 | call assert_true(&modified) |
| 384 | update |
| 385 | %bw! |
| 386 | call assert_equal(['aaa', 'bbb', 'ccc'], readfile('Xfile1')) |
| 387 | call delete('Xfile1') |
| 388 | call delete('Xfile2') |
| 389 | call delete('.Xfile1.swp') |
| 390 | endfunc |
| 391 | |
Yegappan Lakshmanan | 3044324 | 2021-06-10 21:52:15 +0200 | [diff] [blame] | 392 | " Test for recovering a file when an autocmd moves the cursor to an invalid |
| 393 | " line. This used to result in an internal error (E315) which is fixed |
| 394 | " by 8.2.2966. |
| 395 | func Test_recover_invalid_cursor_pos() |
| 396 | call writefile([], 'Xfile1') |
| 397 | edit Xfile1 |
| 398 | preserve |
| 399 | let b = readblob('.Xfile1.swp') |
| 400 | bw! |
| 401 | augroup Test |
| 402 | au! |
| 403 | au BufReadPost Xfile1 normal! 3G |
| 404 | augroup END |
| 405 | call writefile(range(1, 3), 'Xfile1') |
| 406 | call writefile(b, '.Xfile1.swp') |
| 407 | try |
| 408 | recover Xfile1 |
| 409 | catch /E308:/ |
| 410 | " this test is for the :E315 internal error. |
| 411 | " ignore the 'E308: Original file may have been changed' error |
| 412 | endtry |
| 413 | redraw! |
| 414 | augroup Test |
| 415 | au! |
| 416 | augroup END |
| 417 | augroup! Test |
| 418 | call delete('Xfile1') |
| 419 | call delete('.Xfile1.swp') |
| 420 | endfunc |
| 421 | |
| 422 | " Test for recovering a buffer without a name |
| 423 | func Test_noname_buffer() |
| 424 | new |
| 425 | call setline(1, ['one', 'two']) |
| 426 | preserve |
| 427 | let sn = swapname('') |
| 428 | let b = readblob(sn) |
| 429 | bw! |
| 430 | call writefile(b, sn) |
| 431 | exe "recover " .. sn |
| 432 | call assert_equal(['one', 'two'], getline(1, '$')) |
| 433 | call delete(sn) |
| 434 | endfunc |
| 435 | |
Bram Moolenaar | 6d91bcb | 2020-08-12 18:50:36 +0200 | [diff] [blame] | 436 | " vim: shiftwidth=2 sts=2 expandtab |