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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
|
" Tests for the history functions
source check.vim
CheckFeature cmdline_hist
set history=7
function History_Tests(hist)
" First clear the history
call histadd(a:hist, 'dummy')
call assert_true(histdel(a:hist))
call assert_equal(-1, histnr(a:hist))
call assert_equal('', histget(a:hist))
call assert_true('ls'->histadd(a:hist))
call assert_true(histadd(a:hist, 'buffers'))
call assert_equal('buffers', histget(a:hist))
call assert_equal('ls', histget(a:hist, -2))
call assert_equal('ls', histget(a:hist, 1))
call assert_equal('', histget(a:hist, 5))
call assert_equal('', histget(a:hist, -5))
call assert_equal(2, histnr(a:hist))
call assert_true(histdel(a:hist, 2))
call assert_false(a:hist->histdel(7))
call assert_equal(1, histnr(a:hist))
call assert_equal('ls', histget(a:hist, -1))
call assert_true(histadd(a:hist, 'buffers'))
call assert_true(histadd(a:hist, 'ls'))
call assert_equal('ls', a:hist->histget(-1))
call assert_equal(4, a:hist->histnr())
let a=execute('history ' . a:hist)
call assert_match("^\n # \\S* history\n 3 buffers\n> 4 ls$", a)
let a=execute('history all')
call assert_match("^\n # .* history\n 3 buffers\n> 4 ls", a)
if len(a:hist) > 0
let a=execute('history ' . a:hist . ' 2')
call assert_match("^\n # \\S* history$", a)
let a=execute('history ' . a:hist . ' 3')
call assert_match("^\n # \\S* history\n 3 buffers$", a)
let a=execute('history ' . a:hist . ' 4')
call assert_match("^\n # \\S* history\n> 4 ls$", a)
let a=execute('history ' . a:hist . ' 3,4')
call assert_match("^\n # \\S* history\n 3 buffers\n> 4 ls$", a)
let a=execute('history ' . a:hist . ' -1')
call assert_match("^\n # \\S* history\n> 4 ls$", a)
let a=execute('history ' . a:hist . ' -2')
call assert_match("^\n # \\S* history\n 3 buffers$", a)
let a=execute('history ' . a:hist . ' -2,')
call assert_match("^\n # \\S* history\n 3 buffers\n> 4 ls$", a)
let a=execute('history ' . a:hist . ' -3')
call assert_match("^\n # \\S* history$", a)
endif
" Test for removing entries matching a pattern
for i in range(1, 3)
call histadd(a:hist, 'text_' . i)
endfor
call assert_true(histdel(a:hist, 'text_\d\+'))
call assert_equal('ls', histget(a:hist, -1))
" Test for freeing the entire history list
for i in range(1, 7)
call histadd(a:hist, 'text_' . i)
endfor
call histdel(a:hist)
for i in range(1, 7)
call assert_equal('', histget(a:hist, i))
call assert_equal('', histget(a:hist, i - 7 - 1))
endfor
" Test for freeing an entry at the beginning of the history list
for i in range(1, 4)
call histadd(a:hist, 'text_' . i)
endfor
call histdel(a:hist, 1)
call assert_equal('', histget(a:hist, 1))
call assert_equal('text_4', histget(a:hist, 4))
endfunction
function Test_History()
for h in ['cmd', ':', '', 'search', '/', '?', 'expr', '=', 'input', '@', 'debug', '>']
call History_Tests(h)
endfor
" Negative tests
call assert_false(histdel('abc'))
call assert_equal('', histget('abc'))
call assert_fails('call histdel([])', 'E730:')
call assert_equal('', histget(10))
call assert_fails('call histget([])', 'E730:')
call assert_equal(-1, histnr('abc'))
call assert_fails('call histnr([])', 'E730:')
call assert_fails('history xyz', 'E488:')
call assert_fails('history ,abc', 'E488:')
call assert_fails('call histdel(":", "\\%(")', 'E53:')
" Test for filtering the history list
let hist_filter = execute(':filter /_\d/ :history all')->split('\n')
call assert_equal(20, len(hist_filter))
let expected = [' # cmd history',
\ ' 2 text_2',
\ ' 3 text_3',
\ '> 4 text_4',
\ ' # search history',
\ ' 2 text_2',
\ ' 3 text_3',
\ '> 4 text_4',
\ ' # expr history',
\ ' 2 text_2',
\ ' 3 text_3',
\ '> 4 text_4',
\ ' # input history',
\ ' 2 text_2',
\ ' 3 text_3',
\ '> 4 text_4',
\ ' # debug history',
\ ' 2 text_2',
\ ' 3 text_3',
\ '> 4 text_4']
call assert_equal(expected, hist_filter)
let cmds = {'c': 'cmd', 's': 'search', 'e': 'expr', 'i': 'input', 'd': 'debug'}
for h in sort(keys(cmds))
" find some items
let hist_filter = execute(':filter /_\d/ :history ' .. h)->split('\n')
call assert_equal(4, len(hist_filter))
let expected = [' # ' .. cmds[h] .. ' history',
\ ' 2 text_2',
\ ' 3 text_3',
\ '> 4 text_4']
call assert_equal(expected, hist_filter)
" Search for an item that is not there
let hist_filter = execute(':filter /XXXX/ :history ' .. h)->split('\n')
call assert_equal(1, len(hist_filter))
let expected = [' # ' .. cmds[h] .. ' history']
call assert_equal(expected, hist_filter)
" Invert the filter condition, find non-matches
let hist_filter = execute(':filter! /_3$/ :history ' .. h)->split('\n')
call assert_equal(3, len(hist_filter))
let expected = [' # ' .. cmds[h] .. ' history',
\ ' 2 text_2',
\ '> 4 text_4']
call assert_equal(expected, hist_filter)
endfor
endfunction
function Test_history_truncates_long_entry()
" History entry short enough to fit on the screen should not be truncated.
call histadd(':', 'echo x' .. repeat('y', &columns - 17) .. 'z')
let a = execute('history : -1')
call assert_match("^\n # cmd history\n"
\ .. "> *\\d\\+ echo x" .. repeat('y', &columns - 17) .. 'z$', a)
" Long history entry should be truncated to fit on the screen, with, '...'
" inserted in the string to indicate the that there is truncation.
call histadd(':', 'echo x' .. repeat('y', &columns - 16) .. 'z')
let a = execute('history : -1')
call assert_match("^\n # cmd history\n"
\ .. "> *\\d\\+ echo xy\\+\.\.\.y\\+z$", a)
endfunction
function Test_Search_history_window()
new
call setline(1, ['a', 'b', 'a', 'b'])
1
call feedkeys("/a\<CR>", 'xt')
call assert_equal('a', getline('.'))
1
call feedkeys("/b\<CR>", 'xt')
call assert_equal('b', getline('.'))
1
" select the previous /a command
call feedkeys("q/kk\<CR>", 'x!')
call assert_equal('a', getline('.'))
call assert_equal('a', @/)
bwipe!
endfunc
" Test for :history command option completion
function Test_history_completion()
call feedkeys(":history \<C-A>\<C-B>\"\<CR>", 'tx')
call assert_equal('"history / : = > ? @ all cmd debug expr input search', @:)
endfunc
" Test for increasing the 'history' option value
func Test_history_size()
let save_histsz = &history
set history=10
call histadd(':', 'ls')
call histdel(':')
for i in range(1, 5)
call histadd(':', 'cmd' .. i)
endfor
call assert_equal(5, histnr(':'))
call assert_equal('cmd5', histget(':', -1))
set history=15
for i in range(6, 10)
call histadd(':', 'cmd' .. i)
endfor
call assert_equal(10, histnr(':'))
call assert_equal('cmd1', histget(':', 1))
call assert_equal('cmd10', histget(':', -1))
set history=5
call histadd(':', 'abc')
call assert_equal('', histget(':', 6))
call assert_equal('', histget(':', 12))
call assert_equal('cmd7', histget(':', 7))
call assert_equal('abc', histget(':', -1))
" This test works only when the language is English
if v:lang == "C" || v:lang =~ '^[Ee]n'
set history=0
redir => v
call feedkeys(":history\<CR>", 'xt')
redir END
call assert_equal(["'history' option is zero"], split(v, "\n"))
endif
let &history=save_histsz
endfunc
" Test for recalling old search patterns in /
func Test_history_search()
call histdel('/')
let g:pat = []
func SavePat()
call add(g:pat, getcmdline())
return ''
endfunc
cnoremap <F2> <C-\>eSavePat()<CR>
call histadd('/', 'pat1')
call histadd('/', 'pat2')
let @/ = ''
call feedkeys("/\<Up>\<F2>\<Up>\<F2>\<Down>\<Down>\<F2>\<Esc>", 'xt')
call assert_equal(['pat2', 'pat1', ''], g:pat)
cunmap <F2>
delfunc SavePat
" Search for a pattern that is not present in the history
call assert_beeps('call feedkeys("/a1b2\<Up>\<CR>", "xt")')
" Recall patterns with 'history' set to 0
set history=0
let @/ = 'abc'
let cmd = 'call feedkeys("/\<Up>\<Down>\<S-Up>\<S-Down>\<CR>", "xt")'
call assert_fails(cmd, 'E486:')
set history&
" Recall patterns till the end of history
set history=4
call histadd('/', 'pat')
call histdel('/')
call histadd('/', 'pat1')
call histadd('/', 'pat2')
call assert_beeps('call feedkeys("/\<Up>\<Up>\<Up>\<C-U>\<cr>", "xt")')
call assert_beeps('call feedkeys("/\<Down><cr>", "xt")')
" Test for wrapping around the history list
for i in range(3, 7)
call histadd('/', 'pat' .. i)
endfor
let upcmd = "\<up>\<up>\<up>\<up>\<up>"
let downcmd = "\<down>\<down>\<down>\<down>\<down>"
try
call feedkeys("/" .. upcmd .. "\<cr>", 'xt')
catch /E486:/
endtry
call assert_equal('pat4', @/)
try
call feedkeys("/" .. upcmd .. downcmd .. "\<cr>", 'xt')
catch /E486:/
endtry
call assert_equal('pat4', @/)
" Test for changing the search command separator in the history
call assert_fails('call feedkeys("/def/\<cr>", "xt")', 'E486:')
call assert_fails('call feedkeys("?\<up>\<cr>", "xt")', 'E486:')
call assert_equal('def?', histget('/', -1))
call assert_fails('call feedkeys("/ghi?\<cr>", "xt")', 'E486:')
call assert_fails('call feedkeys("?\<up>\<cr>", "xt")', 'E486:')
call assert_equal('ghi\?', histget('/', -1))
set history&
endfunc
" Test for making sure the key value is not stored in history
func Test_history_crypt_key()
CheckFeature cryptv
call feedkeys(":set bs=2 key=abc ts=8\<CR>", 'xt')
call assert_equal('set bs=2 key= ts=8', histget(':'))
call assert_fails("call feedkeys(':set bs=2 key-=abc ts=8\<CR>', 'xt')")
call assert_equal('set bs=2 key-= ts=8', histget(':'))
set key& bs& ts&
endfunc
" The following used to overflow and causing a use-after-free
func Test_history_max_val()
set history=10
call assert_fails(':history 2147483648', 'E1510:')
set history&
endfunc
" vim: shiftwidth=2 sts=2 expandtab
|