2017-03-11 03:28:18 -07:00
|
|
|
local helpers = require('test.unit.helpers')(after_each)
|
2017-03-04 18:02:45 -07:00
|
|
|
local itp = helpers.gen_itp(it)
|
2016-02-08 17:20:16 -07:00
|
|
|
local eval_helpers = require('test.unit.eval.helpers')
|
|
|
|
|
|
|
|
local cimport = helpers.cimport
|
|
|
|
local to_cstr = helpers.to_cstr
|
|
|
|
local eq = helpers.eq
|
|
|
|
|
|
|
|
local list = eval_helpers.list
|
|
|
|
local lst2tbl = eval_helpers.lst2tbl
|
|
|
|
local type_key = eval_helpers.type_key
|
|
|
|
local list_type = eval_helpers.list_type
|
|
|
|
local null_string = eval_helpers.null_string
|
|
|
|
|
|
|
|
local encode = cimport('./src/nvim/eval/encode.h')
|
|
|
|
|
|
|
|
describe('encode_list_write()', function()
|
|
|
|
local encode_list_write = function(l, s)
|
|
|
|
return encode.encode_list_write(l, to_cstr(s), #s)
|
|
|
|
end
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('writes empty string', function()
|
2016-02-08 17:20:16 -07:00
|
|
|
local l = list()
|
|
|
|
eq(0, encode_list_write(l, ''))
|
|
|
|
eq({[type_key]=list_type}, lst2tbl(l))
|
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('writes ASCII string literal with printable characters', function()
|
2016-02-08 17:20:16 -07:00
|
|
|
local l = list()
|
|
|
|
eq(0, encode_list_write(l, 'abc'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({'abc'}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('writes string starting with NL', function()
|
2016-02-08 17:20:16 -07:00
|
|
|
local l = list()
|
|
|
|
eq(0, encode_list_write(l, '\nabc'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({null_string, 'abc'}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('writes string starting with NL twice', function()
|
2016-02-08 17:20:16 -07:00
|
|
|
local l = list()
|
|
|
|
eq(0, encode_list_write(l, '\nabc'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({null_string, 'abc'}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
eq(0, encode_list_write(l, '\nabc'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({null_string, 'abc', 'abc'}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('writes string ending with NL', function()
|
2016-02-08 17:20:16 -07:00
|
|
|
local l = list()
|
|
|
|
eq(0, encode_list_write(l, 'abc\n'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({'abc', null_string}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('writes string ending with NL twice', function()
|
2016-02-08 17:20:16 -07:00
|
|
|
local l = list()
|
|
|
|
eq(0, encode_list_write(l, 'abc\n'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({'abc', null_string}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
eq(0, encode_list_write(l, 'abc\n'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({'abc', 'abc', null_string}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('writes string starting, ending and containing NL twice', function()
|
2016-02-08 17:20:16 -07:00
|
|
|
local l = list()
|
|
|
|
eq(0, encode_list_write(l, '\na\nb\n'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({null_string, 'a', 'b', null_string}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
eq(0, encode_list_write(l, '\na\nb\n'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({null_string, 'a', 'b', null_string, 'a', 'b', null_string}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('writes string starting, ending and containing NUL with NL between twice', function()
|
2016-02-08 17:20:16 -07:00
|
|
|
local l = list()
|
|
|
|
eq(0, encode_list_write(l, '\0\n\0\n\0'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({'\n', '\n', '\n'}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
eq(0, encode_list_write(l, '\0\n\0\n\0'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({'\n', '\n', '\n\n', '\n', '\n'}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('writes string starting, ending and containing NL with NUL between twice', function()
|
2016-02-08 17:20:16 -07:00
|
|
|
local l = list()
|
|
|
|
eq(0, encode_list_write(l, '\n\0\n\0\n'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({null_string, '\n', '\n', null_string}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
eq(0, encode_list_write(l, '\n\0\n\0\n'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({null_string, '\n', '\n', null_string, '\n', '\n', null_string}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('writes string containing a single NL twice', function()
|
2016-02-08 17:20:16 -07:00
|
|
|
local l = list()
|
|
|
|
eq(0, encode_list_write(l, '\n'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({null_string, null_string}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
eq(0, encode_list_write(l, '\n'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({null_string, null_string, null_string}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
end)
|
|
|
|
|
2017-03-04 18:02:45 -07:00
|
|
|
itp('writes string containing a few NLs twice', function()
|
2016-02-08 17:20:16 -07:00
|
|
|
local l = list()
|
|
|
|
eq(0, encode_list_write(l, '\n\n\n'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({null_string, null_string, null_string, null_string}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
eq(0, encode_list_write(l, '\n\n\n'))
|
2016-04-19 09:17:09 -07:00
|
|
|
eq({null_string, null_string, null_string, null_string, null_string, null_string, null_string}, lst2tbl(l))
|
2016-02-08 17:20:16 -07:00
|
|
|
end)
|
|
|
|
end)
|