2024-04-20 08:44:13 -07:00
|
|
|
local t = require('test.testutil')
|
|
|
|
local n = require('test.functional.testnvim')()
|
|
|
|
|
|
|
|
local clear, feed_command, feed = n.clear, n.feed_command, n.feed
|
|
|
|
local eq, neq, eval = t.eq, t.neq, n.eval
|
2015-08-29 08:10:06 -07:00
|
|
|
|
|
|
|
describe('&encoding', function()
|
|
|
|
before_each(function()
|
|
|
|
clear()
|
|
|
|
-- sanity check: tests should run with encoding=utf-8
|
|
|
|
eq('utf-8', eval('&encoding'))
|
|
|
|
eq(3, eval('strwidth("Bär")'))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('cannot be changed after setup', function()
|
2017-04-08 14:12:26 -07:00
|
|
|
feed_command('set encoding=latin1')
|
2015-08-29 08:10:06 -07:00
|
|
|
-- error message expected
|
|
|
|
feed('<cr>')
|
2017-05-08 08:17:10 -07:00
|
|
|
neq(nil, string.find(eval('v:errmsg'), '^E519:'))
|
2015-08-29 08:10:06 -07:00
|
|
|
eq('utf-8', eval('&encoding'))
|
|
|
|
-- check nvim is still in utf-8 mode
|
|
|
|
eq(3, eval('strwidth("Bär")'))
|
|
|
|
end)
|
|
|
|
|
2015-09-14 04:10:51 -07:00
|
|
|
it('cannot be changed before startup', function()
|
2016-06-23 02:15:08 -07:00
|
|
|
clear('--cmd', 'set enc=latin1')
|
2015-11-11 03:16:31 -07:00
|
|
|
-- error message expected
|
|
|
|
feed('<cr>')
|
2017-05-08 08:17:10 -07:00
|
|
|
neq(nil, string.find(eval('v:errmsg'), '^E519:'))
|
2015-09-14 04:10:51 -07:00
|
|
|
eq('utf-8', eval('&encoding'))
|
|
|
|
eq(3, eval('strwidth("Bär")'))
|
2015-11-11 03:16:31 -07:00
|
|
|
end)
|
2015-08-29 08:10:06 -07:00
|
|
|
|
2015-09-14 04:10:51 -07:00
|
|
|
it('can be set to utf-8 without error', function()
|
2017-04-08 14:12:26 -07:00
|
|
|
feed_command('set encoding=utf-8')
|
2015-09-14 04:10:51 -07:00
|
|
|
eq('', eval('v:errmsg'))
|
2015-08-29 08:10:06 -07:00
|
|
|
|
2015-09-14 04:10:51 -07:00
|
|
|
clear('--cmd', 'set enc=utf-8')
|
|
|
|
eq('', eval('v:errmsg'))
|
|
|
|
end)
|
2015-08-29 08:10:06 -07:00
|
|
|
end)
|