2015-02-23 04:30:55 -07:00
|
|
|
-- Inserts 2 million lines with consecutive integers starting from 1
|
|
|
|
-- (essentially, the output of GNU's seq 1 2000000), writes them to Xtest
|
|
|
|
-- and calculates its cksum.
|
|
|
|
-- We need 2 million lines to trigger a call to mf_hash_grow(). If it would mess
|
|
|
|
-- up the lines the checksum would differ.
|
|
|
|
-- cksum is part of POSIX and so should be available on most Unixes.
|
|
|
|
-- If it isn't available then the test will be skipped.
|
|
|
|
|
2016-04-23 16:53:11 -07:00
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
2017-04-08 14:12:26 -07:00
|
|
|
|
2015-11-17 15:31:22 -07:00
|
|
|
local feed = helpers.feed
|
2017-04-08 14:12:26 -07:00
|
|
|
local wait = helpers.wait
|
|
|
|
local clear = helpers.clear
|
|
|
|
local expect = helpers.expect
|
|
|
|
local command = helpers.command
|
2015-02-23 04:30:55 -07:00
|
|
|
|
|
|
|
describe('mf_hash_grow()', function()
|
|
|
|
setup(clear)
|
|
|
|
|
|
|
|
-- Check to see if cksum exists, otherwise skip the test
|
2018-03-26 08:54:44 -07:00
|
|
|
local null = helpers.iswin() and 'nul' or '/dev/null'
|
|
|
|
if os.execute('cksum --help >' .. null .. ' 2>&1') ~= 0 then
|
2015-08-07 15:25:03 -07:00
|
|
|
pending('was not tested because cksum was not found', function() end)
|
2015-02-23 04:30:55 -07:00
|
|
|
else
|
|
|
|
it('is working', function()
|
2017-04-08 14:12:26 -07:00
|
|
|
command('set fileformat=unix undolevels=-1')
|
2015-02-23 04:30:55 -07:00
|
|
|
|
|
|
|
-- Fill the buffer with numbers 1 - 2000000
|
2017-04-08 14:12:26 -07:00
|
|
|
command('let i = 1')
|
|
|
|
command('while i <= 2000000 | call append(i, range(i, i + 99)) | let i += 100 | endwhile')
|
2015-02-23 04:30:55 -07:00
|
|
|
|
|
|
|
-- Delete empty first line, save to Xtest, and clear buffer
|
|
|
|
feed('ggdd<cr>')
|
2017-04-08 14:12:26 -07:00
|
|
|
wait()
|
|
|
|
command('w! Xtest')
|
2015-02-23 04:30:55 -07:00
|
|
|
feed('ggdG<cr>')
|
2017-04-08 14:12:26 -07:00
|
|
|
wait()
|
2015-02-23 04:30:55 -07:00
|
|
|
|
|
|
|
-- Calculate the cksum of Xtest and delete first line
|
2017-04-08 14:12:26 -07:00
|
|
|
command('r !cksum Xtest')
|
2015-02-23 04:30:55 -07:00
|
|
|
feed('ggdd<cr>')
|
|
|
|
|
|
|
|
-- Assert correct output of cksum.
|
|
|
|
expect([[
|
|
|
|
3678979763 14888896 Xtest]])
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
teardown(function()
|
|
|
|
os.remove('Xtest')
|
|
|
|
end)
|
|
|
|
end)
|