aboutsummaryrefslogtreecommitdiff
path: root/test/functional/job/job_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/job/job_spec.lua')
-rw-r--r--test/functional/job/job_spec.lua17
1 files changed, 14 insertions, 3 deletions
diff --git a/test/functional/job/job_spec.lua b/test/functional/job/job_spec.lua
index 9bdade7733..0d561ec4d7 100644
--- a/test/functional/job/job_spec.lua
+++ b/test/functional/job/job_spec.lua
@@ -45,7 +45,7 @@ describe('jobs', function()
eq({'notification', 'stdout', {{'abc', ''}}}, next_message())
nvim('command', 'call jobsend(j, "123\\nxyz\\n")')
eq({'notification', 'stdout', {{'123', 'xyz', ''}}}, next_message())
- nvim('command', 'call jobsend(j, [123, "xyz"])')
+ nvim('command', 'call jobsend(j, [123, "xyz", ""])')
eq({'notification', 'stdout', {{'123', 'xyz', ''}}}, next_message())
nvim('command', "call jobstop(j)")
eq({'notification', 'exit', {0}}, next_message())
@@ -67,7 +67,7 @@ describe('jobs', function()
-- jobsend() preserves NULs.
nvim('command', "let j = jobstart('xxx', 'cat', ['-'])")
- nvim('command', [[call jobsend(j, ["123\n456"])]])
+ nvim('command', [[call jobsend(j, ["123\n456",""])]])
eq({'notification', 'stdout', {{'123\n456', ''}}}, next_message())
nvim('command', "call jobstop(j)")
end)
@@ -92,13 +92,24 @@ describe('jobs', function()
it('can preserve nuls', function()
nvim('command', notify_str('v:job_data[1]', 'get(v:job_data, 2)'))
nvim('command', "let j = jobstart('xxx', 'cat', ['-'])")
- nvim('command', 'call jobsend(j, ["\n123\n", "abc\\nxyz\n"])')
+ nvim('command', 'call jobsend(j, ["\n123\n", "abc\\nxyz\n", ""])')
eq({'notification', 'stdout', {{'\n123\n', 'abc\nxyz\n', ''}}},
next_message())
nvim('command', "call jobstop(j)")
eq({'notification', 'exit', {0}}, next_message())
end)
+ it('can avoid sending final newline', function()
+ nvim('command', notify_str('v:job_data[1]', 'get(v:job_data, 2)'))
+ nvim('command', "let j = jobstart('xxx', 'cat', ['-'])")
+ nvim('command', 'call jobsend(j, ["some data", "without\nfinal nl"])')
+ eq({'notification', 'stdout', {{'some data', 'without\nfinal nl'}}},
+ next_message())
+ nvim('command', "call jobstop(j)")
+ eq({'notification', 'exit', {0}}, next_message())
+ end)
+
+
it('will not allow jobsend/stop on a non-existent job', function()
eq(false, pcall(eval, "jobsend(-1, 'lol')"))
eq(false, pcall(eval, "jobstop(-1)"))