summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-04-14 14:16:46 +0200
committerBram Moolenaar <Bram@vim.org>2019-04-14 14:16:46 +0200
commit74e3d4ec113d4061d24768b5a08f55b918132215 (patch)
tree25b79bce6d39388a43539d7fcafb8a6320229239
parent316c16797a0baee8f4bced2235b783b21fbbea65 (diff)
patch 8.1.1172: cursor properties were not fully testedv8.1.1172
Problem: Cursor properties were not fully tested. Solution: Add a test. (Dominique Pelle, closes #4256)
-rw-r--r--src/testdir/test_terminal.vim57
-rw-r--r--src/version.c2
2 files changed, 59 insertions, 0 deletions
diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim
index be771b4a10..36e513e30d 100644
--- a/src/testdir/test_terminal.vim
+++ b/src/testdir/test_terminal.vim
@@ -1892,6 +1892,63 @@ func Test_terminal_no_job()
call WaitForAssert({-> assert_equal(v:null, term_getjob(term)) })
endfunc
+func Test_term_getcursor()
+ if !has('unix')
+ return
+ endif
+ let buf = Run_shell_in_terminal({})
+
+ " Wait for the shell to display a prompt.
+ call WaitForAssert({-> assert_notequal('', term_getline(buf, 1))})
+
+ " Hide the cursor.
+ call term_sendkeys(buf, "echo -e '\\033[?25l'\r")
+ call WaitForAssert({-> assert_equal(0, term_getcursor(buf)[2].visible)})
+
+ " Show the cursor.
+ call term_sendkeys(buf, "echo -e '\\033[?25h'\r")
+ call WaitForAssert({-> assert_equal(1, term_getcursor(buf)[2].visible)})
+
+ " Change color of cursor.
+ call WaitForAssert({-> assert_equal('', term_getcursor(buf)[2].color)})
+ call term_sendkeys(buf, "echo -e '\\033]12;blue\\007'\r")
+ call WaitForAssert({-> assert_equal('blue', term_getcursor(buf)[2].color)})
+ call term_sendkeys(buf, "echo -e '\\033]12;green\\007'\r")
+ call WaitForAssert({-> assert_equal('green', term_getcursor(buf)[2].color)})
+
+ " Make cursor a blinking block.
+ call term_sendkeys(buf, "echo -e '\\033[1 q'\r")
+ call WaitForAssert({-> assert_equal([1, 1],
+ \ [term_getcursor(buf)[2].blink, term_getcursor(buf)[2].shape])})
+
+ " Make cursor a steady block.
+ call term_sendkeys(buf, "echo -e '\\033[2 q'\r")
+ call WaitForAssert({-> assert_equal([0, 1],
+ \ [term_getcursor(buf)[2].blink, term_getcursor(buf)[2].shape])})
+
+ " Make cursor a blinking underline.
+ call term_sendkeys(buf, "echo -e '\\033[3 q'\r")
+ call WaitForAssert({-> assert_equal([1, 2],
+ \ [term_getcursor(buf)[2].blink, term_getcursor(buf)[2].shape])})
+
+ " Make cursor a steady underline.
+ call term_sendkeys(buf, "echo -e '\\033[4 q'\r")
+ call WaitForAssert({-> assert_equal([0, 2],
+ \ [term_getcursor(buf)[2].blink, term_getcursor(buf)[2].shape])})
+
+ " Make cursor a blinking vertical bar.
+ call term_sendkeys(buf, "echo -e '\\033[5 q'\r")
+ call WaitForAssert({-> assert_equal([1, 3],
+ \ [term_getcursor(buf)[2].blink, term_getcursor(buf)[2].shape])})
+
+ " Make cursor a steady vertical bar.
+ call term_sendkeys(buf, "echo -e '\\033[6 q'\r")
+ call WaitForAssert({-> assert_equal([0, 3],
+ \ [term_getcursor(buf)[2].blink, term_getcursor(buf)[2].shape])})
+
+ call Stop_shell_in_terminal(buf)
+endfunc
+
func Test_term_gettitle()
" term_gettitle() returns an empty string for a non-terminal buffer
" and for a non-existing buffer.
diff --git a/src/version.c b/src/version.c
index 7717887e9f..aacbf13353 100644
--- a/src/version.c
+++ b/src/version.c
@@ -772,6 +772,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1172,
+/**/
1171,
/**/
1170,