tests: test around mouse_x10 frontier

This commit is contained in:
Boris Faure 2019-03-03 18:37:12 +01:00
parent 69e8255d25
commit 19c50c2642
2 changed files with 34 additions and 7 deletions

View File

@ -3,6 +3,13 @@
# char width: 7 # char width: 7
# char height: 15 # char height: 15
# resize window
#resize window to 180-chars width
printf '\033[8;;180;t'
# force render
printf '\033}tr\0'
sleep 0.2
# fill space with E # fill space with E
printf '\033#8' printf '\033#8'
@ -12,9 +19,12 @@ printf '\033[46;31;3m'
# positions used are; # positions used are;
# - 200;130 -> 9;29 # - 200;130 -> 9;29
# - 480;130 -> 9;69 # - 480;130 -> 9;69
# - 1230;130 -> 9;176
# indicate the positions to help testing # indicate the positions to help testing
printf '\033[9;29H#' printf '\033[9;29H#'
printf '\033[9;69H#' printf '\033[9;69H#'
printf '\033[9;95H@' # after that one, MOUSE_X10 is not working
printf '\033[9;176H#'
# set mouse mode - X10 mode # set mouse mode - X10 mode
printf '\033[?9h' printf '\033[?9h'
@ -27,9 +37,26 @@ printf '\033[1H'
# mouse down # mouse down
printf '\033}td;200;130;1;0;0\0' printf '\033}td;200;130;1;0;0\0'
# mouse move # mouse move
printf '\033}tm;480;130\0' printf '\033}tm;480;130;0\0'
# mouse up # mouse up
printf '\033}tu;480;130;1;0;0\0' printf '\033}tu;480;130;1;0;0\0'
# mouse click at x:93 -> ^[[M ~)
printf '\033}td;657;130;1;0;0\0'
printf '\033}tm;657;130;0\0'
printf '\033}tu;657;130;1;0;0\0'
# mouse click at x:94 -> ^[[M ^?)
printf '\033}td;664;130;1;0;0\0'
printf '\033}tm;664;130;0\0'
printf '\033}tu;664;130;1;0;0\0'
# mouse click at x:95 -> ^[[M )
printf '\033}td;671;130;1;0;0\0'
printf '\033}tm;671;130;0\0'
printf '\033}tu;671;130;1;0;0\0'
# mouse click at x:174 -> ^[[M )
printf '\033}td;1230;130;1;0;0\0'
printf '\033}tm;1230;130;0\0'
printf '\033}tu;1230;130;1;0;0\0'
# force render # force render
printf '\033}tr\0' printf '\033}tr\0'
sleep 0.2 sleep 0.2
@ -41,7 +68,7 @@ printf '\033[2H'
# mouse down # mouse down
printf '\033}td;200;130;3;0;0\0' printf '\033}td;200;130;3;0;0\0'
# mouse move # mouse move
printf '\033}tm;480;130\0' printf '\033}tm;480;130;0\0'
# mouse up # mouse up
printf '\033}tu;480;130;3;0;0\0' printf '\033}tu;480;130;3;0;0\0'
# force render # force render
@ -55,7 +82,7 @@ printf '\033[3H'
# mouse down # mouse down
printf '\033}td;200;130;2;0;0\0' printf '\033}td;200;130;2;0;0\0'
# mouse move # mouse move
printf '\033}tm;480;130\0' printf '\033}tm;480;130;0\0'
# mouse up # mouse up
printf '\033}tu;480;130;2;0;0\0' printf '\033}tu;480;130;2;0;0\0'
# force render # force render
@ -86,7 +113,7 @@ printf '\033[7H'
# mouse down # mouse down
printf '\033}td;200;130;1;1;0\0' printf '\033}td;200;130;1;1;0\0'
# mouse move # mouse move
printf '\033}tm;480;130\0' printf '\033}tm;480;130;1\0'
# mouse up # mouse up
printf '\033}tu;480;130;1;1;0\0' printf '\033}tu;480;130;1;1;0\0'
# force render # force render
@ -101,7 +128,7 @@ printf '\033[8H'
# mouse down # mouse down
printf '\033}td;200;130;3;1;0\0' printf '\033}td;200;130;3;1;0\0'
# mouse move # mouse move
printf '\033}tm;480;130\0' printf '\033}tm;480;130;1\0'
# mouse up # mouse up
printf '\033}tu;480;130;3;1;0\0' printf '\033}tu;480;130;3;1;0\0'
# force render # force render
@ -116,7 +143,7 @@ printf '\033[9H'
# mouse down # mouse down
printf '\033}td;200;130;2;1;0\0' printf '\033}td;200;130;2;1;0\0'
# mouse move # mouse move
printf '\033}tm;480;130\0' printf '\033}tm;480;130;1\0'
# mouse up # mouse up
printf '\033}tu;480;130;2;1;0\0' printf '\033}tu;480;130;2;1;0\0'
# force render # force render

View File

@ -102,4 +102,4 @@ selection_box_to_word.sh 0174fb1d413f19f32e68e31439335d97
selection_box_to_paragraph.sh 7b918d2af64eef1ecb39a0f45cf72f2d selection_box_to_paragraph.sh 7b918d2af64eef1ecb39a0f45cf72f2d
selection_invalidation_line_removed.sh 8d689636f976b044dfbf6af6b3333093 selection_invalidation_line_removed.sh 8d689636f976b044dfbf6af6b3333093
resize_window_no_content_change.sh 28d45fe49c686c8c98631cce8e4bd368 resize_window_no_content_change.sh 28d45fe49c686c8c98631cce8e4bd368
mouse_reporting_mode_x10_ext_none.sh 8b72f8ddd3a55ecbe4b65fc3629e88b9 mouse_reporting_mode_x10_ext_none.sh b56ef7d0e2cc236e31ff2e149528833b