]> granicus.if.org Git - vim/commitdiff
patch 7.4.2270 v7.4.2270
authorBram Moolenaar <Bram@vim.org>
Sat, 27 Aug 2016 17:21:48 +0000 (19:21 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 27 Aug 2016 17:21:48 +0000 (19:21 +0200)
Problem:    Insufficient testing for NUL bytes on a raw channel.
Solution:   Add a test for writing and reading.

src/testdir/test_channel.vim
src/version.c

index ee52eef89d514ad8aaf8d5371957b81c74fdfd83..6ecbc789aa6d52f2e626cfb8513e591406a4ba20 100644 (file)
@@ -1321,7 +1321,7 @@ func Test_using_freed_memory()
 endfunc
 
 func Test_collapse_buffers()
-  if !executable('cat')
+  if !executable('cat') || !has('job')
     return
   endif
   sp test_channel.vim
@@ -1335,6 +1335,42 @@ func Test_collapse_buffers()
   bwipe!
 endfunc
 
+func Test_raw_passes_nul()
+  if !executable('cat') || !has('job')
+    return
+  endif
+
+  " Test lines from the job containing NUL are stored correctly in a buffer.
+  new
+  call setline(1, ["asdf\nasdf", "xxx\n", "\nyyy"])
+  w! Xtestread
+  bwipe!
+  split testout
+  1,$delete
+  call job_start('cat Xtestread', {'out_io': 'buffer', 'out_name': 'testout'})
+  call WaitFor('line("$") > 2')
+  call assert_equal("asdf\nasdf", getline(2))
+  call assert_equal("xxx\n", getline(3))
+  call assert_equal("\nyyy", getline(4))
+
+  call delete('Xtestread')
+  bwipe!
+
+  " Test lines from a buffer with NUL bytes are written correctly to the job.
+  new mybuffer
+  call setline(1, ["asdf\nasdf", "xxx\n", "\nyyy"])
+  let g:Ch_job = job_start('cat', {'in_io': 'buffer', 'in_name': 'mybuffer', 'out_io': 'file', 'out_name': 'Xtestwrite'})
+  call WaitFor('"dead" == job_status(g:Ch_job)')
+  bwipe!
+  split Xtestwrite
+  call assert_equal("asdf\nasdf", getline(1))
+  call assert_equal("xxx\n", getline(2))
+  call assert_equal("\nyyy", getline(3))
+
+  call delete('Xtestwrite')
+  bwipe!
+endfunc
+
 function Ch_test_close_lambda(port)
   let handle = ch_open('localhost:' . a:port, s:chopt)
   if ch_status(handle) == "fail"
index 289474ba825ef2f3caad36bf8776e0670511128e..097befc5f4c11bbb9aeaf7f5c85510fa057bb8b4 100644 (file)
@@ -763,6 +763,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2270,
 /**/
     2269,
 /**/