2016-04-24 02:53:11 +03:00
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
2017-04-09 00:12:26 +03:00
|
|
|
local clear, feed_command, feed = helpers.clear, helpers.feed_command, helpers.feed
|
2015-08-29 17:10:06 +02:00
|
|
|
local eq, neq, eval = helpers.eq, helpers.neq, helpers.eval
|
|
|
|
|
|
|
|
|
|
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-09 00:12:26 +03:00
|
|
|
feed_command('set encoding=latin1')
|
2015-08-29 17:10:06 +02:00
|
|
|
-- error message expected
|
|
|
|
|
feed('<cr>')
|
2017-05-08 17:17:10 +02:00
|
|
|
neq(nil, string.find(eval('v:errmsg'), '^E519:'))
|
2015-08-29 17:10:06 +02:00
|
|
|
eq('utf-8', eval('&encoding'))
|
|
|
|
|
-- check nvim is still in utf-8 mode
|
|
|
|
|
eq(3, eval('strwidth("Bär")'))
|
|
|
|
|
end)
|
|
|
|
|
|
2015-09-14 13:10:51 +02:00
|
|
|
it('cannot be changed before startup', function()
|
2016-06-23 11:15:08 +02:00
|
|
|
clear('--cmd', 'set enc=latin1')
|
2015-11-11 11:16:31 +01:00
|
|
|
-- error message expected
|
|
|
|
|
feed('<cr>')
|
2017-05-08 17:17:10 +02:00
|
|
|
neq(nil, string.find(eval('v:errmsg'), '^E519:'))
|
2015-09-14 13:10:51 +02:00
|
|
|
eq('utf-8', eval('&encoding'))
|
|
|
|
|
eq(3, eval('strwidth("Bär")'))
|
2015-11-11 11:16:31 +01:00
|
|
|
end)
|
2015-08-29 17:10:06 +02:00
|
|
|
|
2015-09-14 13:10:51 +02:00
|
|
|
it('can be set to utf-8 without error', function()
|
2017-04-09 00:12:26 +03:00
|
|
|
feed_command('set encoding=utf-8')
|
2015-09-14 13:10:51 +02:00
|
|
|
eq("", eval('v:errmsg'))
|
2015-08-29 17:10:06 +02:00
|
|
|
|
2015-09-14 13:10:51 +02:00
|
|
|
clear('--cmd', 'set enc=utf-8')
|
|
|
|
|
eq("", eval('v:errmsg'))
|
|
|
|
|
end)
|
2015-08-29 17:10:06 +02:00
|
|
|
end)
|