From 7ef4b413b507d1c1ec1726f1051871ffa7f4314d Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Mon, 25 Feb 2019 22:05:02 +0100 Subject: [PATCH] tests: add some on box selection to position --- tests/selection_box_to_position.sh | 334 +++++++++++++++++++++++++++++ tests/tests.results | 1 + 2 files changed, 335 insertions(+) create mode 100755 tests/selection_box_to_position.sh diff --git a/tests/selection_box_to_position.sh b/tests/selection_box_to_position.sh new file mode 100755 index 00000000..03707191 --- /dev/null +++ b/tests/selection_box_to_position.sh @@ -0,0 +1,334 @@ +#!/bin/sh + +# char width: 7 +# char height: 15 + +# clear screen +printf '\033[2J' + +# set color +printf '\033[46;31;3m' + +#move to 2,0 +printf '\033[2H' + +# set text +TEXT="The path of the righteous man is beset on all sides by the iniquities of the selfish and the tyranny of evil men. Blessed is he who, in the name of charity and good will, shepherds the weak through the valley of darkness, for he is truly his brother's keeper and the finder of lost children. And I will strike down upon thee with great vengeance and furious anger those who would attempt to poison and destroy My brothers. And you will know My name is the Lord when I lay My vengeance upon thee." + +# display text +printf "%s\r\n%s\r\n%s" "$TEXT" "$TEXT" "$TEXT" +# force render +printf '\033}tr\0' + +# NE to SW {{{ + +setup_NE_to_SW() +{ +# remove selection +printf '\033}td;0;0;1;0;0\0\033}tu;0;0;1;0;0\0' +printf '\033}tr\0\033}tn\0' +# mouse down to start selection +printf '\033}td;395;148;1;4;0\0' +# mouse move +printf '\033}tm;175;160;4\0' +# mouse up +printf '\033}tu;175;160;1;4;0\0' +# force render +printf '\033}tr\0' +# selection is +printf '\033}tsevil men. Blessed is he who, in t\n weak through the valley of darkn\0' +} + +## sel "top-down" to NE +setup_NE_to_SW +# To +# mouse move +printf '\033}tm;510;78;0\0' +# mouse down with shift +printf '\033}td;510;78;1;2;0\0' +# mouse up with shift +printf '\033}tu;510;78;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tse and furious anger those who would attempt to po\nnd you will know My name is the Lord when I lay M\n\n\ns man is beset on all sides by the iniquities of\nevil men. Blessed is he who, in the name of chari\n weak through the valley of darkness, for he is t\0' + + +## sel TO SE +setup_NE_to_SW +# To (with shift) +printf '\033}tm;510;187;0\0' +printf '\033}td;510;187;1;2;0\0' +printf '\033}tu;510;187;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsevil men. Blessed is he who, in the name of chari\n weak through the valley of darkness, for he is t\nhe finder of lost children. And I will strike dow\ne and furious anger those who would attempt to po\0' + + +## sel TO to SW +setup_NE_to_SW +# To (with shift) +printf '\033}tm;51;187;0\0' +printf '\033}td;51;187;1;2;0\0' +printf '\033}tu;51;187;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsd the tyranny of evil men. Blessed is he who, in t\nll, shepherds the weak through the valley of darkn\ner\047s keeper and the finder of lost children. And I\nth great vengeance and furious anger those who wou\0' + +## sel TO NW +setup_NE_to_SW +# To (with shift) +printf '\033}tm;51;78;0\0' +printf '\033}td;51;78;1;2;0\0' +printf '\033}tu;51;78;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsth great vengeance and furious anger those who wou\noy My brothers. And you will know My name is the L\non thee.\n\nh of the righteous man is beset on all sides by th\nd the tyranny of evil men. Blessed is he who, in t\nll, shepherds the weak through the valley of darkn\0' + +## sel TO middle +setup_NE_to_SW +# To (with shift) +printf '\033}tm;251;150;0\0' +printf '\033}td;251;150;1;2;0\0' +printf '\033}tu;251;150;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tslessed is he who, in t\0' + + +# }}} +# SW to NE {{{ + +setup_SW_to_NE() +{ +# remove selection +printf '\033}td;0;0;1;0;0\0\033}tu;0;0;1;0;0\0' +printf '\033}tr\0\033}tn\0' +# mouse down to start selection +printf '\033}td;175;160;1;4;0\0' +# mouse move +printf '\033}tm;395;148;4\0' +# mouse up +printf '\033}tu;395;148;1;4;0\0' +# force render +printf '\033}tr\0' +# selection is +printf '\033}tsevil men. Blessed is he who, in t\n weak through the valley of darkn\0' +} + + +## sel "top-down" to NE +setup_SW_to_NE +# To +# mouse move +printf '\033}tm;510;78;0\0' +# mouse down with shift +printf '\033}td;510;78;1;2;0\0' +# mouse up with shift +printf '\033}tu;510;78;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tse and furious anger those who would attempt to po\nnd you will know My name is the Lord when I lay M\n\n\ns man is beset on all sides by the iniquities of\nevil men. Blessed is he who, in the name of chari\n weak through the valley of darkness, for he is t\0' + + +## sel TO SE +setup_SW_to_NE +# To (with shift) +printf '\033}tm;510;187;0\0' +printf '\033}td;510;187;1;2;0\0' +printf '\033}tu;510;187;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsevil men. Blessed is he who, in the name of chari\n weak through the valley of darkness, for he is t\nhe finder of lost children. And I will strike dow\ne and furious anger those who would attempt to po\0' + + +## sel TO to SW +setup_SW_to_NE +# To (with shift) +printf '\033}tm;51;187;0\0' +printf '\033}td;51;187;1;2;0\0' +printf '\033}tu;51;187;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsd the tyranny of evil men. Blessed is he who, in t\nll, shepherds the weak through the valley of darkn\ner\047s keeper and the finder of lost children. And I\nth great vengeance and furious anger those who wou\0' + + +## sel TO NW +setup_SW_to_NE +# To (with shift) +printf '\033}tm;51;78;0\0' +printf '\033}td;51;78;1;2;0\0' +printf '\033}tu;51;78;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsth great vengeance and furious anger those who wou\noy My brothers. And you will know My name is the L\non thee.\n\nh of the righteous man is beset on all sides by th\nd the tyranny of evil men. Blessed is he who, in t\nll, shepherds the weak through the valley of darkn\0' + +## sel TO middle +setup_SW_to_NE +# To (with shift) +printf '\033}tm;251;150;0\0' +printf '\033}td;251;150;1;2;0\0' +printf '\033}tu;251;150;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsevil men. Bl\n weak throug\0' + +# }}} +# NW to SE {{{ + +setup_NW_to_SE() +{ +# remove selection +printf '\033}td;0;0;1;0;0\0\033}tu;0;0;1;0;0\0' +printf '\033}tr\0\033}tn\0' +# mouse down to start selection +printf '\033}td;175;148;1;4;0\0' +# mouse move +printf '\033}tm;395;160;4\0' +# mouse up +printf '\033}tu;395;160;1;4;0\0' +# force render +printf '\033}tr\0' +# selection is +printf '\033}tsevil men. Blessed is he who, in t\n weak through the valley of darkn\0' +} + + +## sel "top-down" to NE +setup_NW_to_SE +# To +# mouse move +printf '\033}tm;510;78;0\0' +# mouse down with shift +printf '\033}td;510;78;1;2;0\0' +# mouse up with shift +printf '\033}tu;510;78;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tse and furious anger those who would attempt to po\nnd you will know My name is the Lord when I lay M\n\n\ns man is beset on all sides by the iniquities of\nevil men. Blessed is he who, in the name of chari\n weak through the valley of darkness, for he is t\0' + + +## sel TO SE +setup_NW_to_SE +# To (with shift) +printf '\033}tm;510;187;0\0' +printf '\033}td;510;187;1;2;0\0' +printf '\033}tu;510;187;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsevil men. Blessed is he who, in the name of chari\n weak through the valley of darkness, for he is t\nhe finder of lost children. And I will strike dow\ne and furious anger those who would attempt to po\0' + + +## sel TO to SW +setup_NW_to_SE +# To (with shift) +printf '\033}tm;51;187;0\0' +printf '\033}td;51;187;1;2;0\0' +printf '\033}tu;51;187;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsd the tyranny of evil men. Blessed is he who, in t\nll, shepherds the weak through the valley of darkn\ner\047s keeper and the finder of lost children. And I\nth great vengeance and furious anger those who wou\0' + + +## sel TO NW +setup_NW_to_SE +# To (with shift) +printf '\033}tm;51;78;0\0' +printf '\033}td;51;78;1;2;0\0' +printf '\033}tu;51;78;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsth great vengeance and furious anger those who wou\noy My brothers. And you will know My name is the L\non thee.\n\nh of the righteous man is beset on all sides by th\nd the tyranny of evil men. Blessed is he who, in t\nll, shepherds the weak through the valley of darkn\0' + +## sel TO middle +setup_NW_to_SE +# To (with shift) +printf '\033}tm;251;150;0\0' +printf '\033}td;251;150;1;2;0\0' +printf '\033}tu;251;150;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsevil men. Bl\0' + + +# }}} +# SE to NW {{{ + +setup_SE_to_NW() +{ +# remove selection +printf '\033}td;0;0;1;0;0\0\033}tu;0;0;1;0;0\0' +printf '\033}tr\0\033}tn\0' +# mouse down to start selection +printf '\033}td;395;160;1;4;0\0' +# mouse move +printf '\033}tm;175;148;4\0' +# mouse up +printf '\033}tu;175;148;1;4;0\0' +# force render +printf '\033}tr\0' +# selection is +printf '\033}tsevil men. Blessed is he who, in t\n weak through the valley of darkn\0' +} + + +## sel "top-down" to NE +setup_SE_to_NW +# To +# mouse move +printf '\033}tm;510;78;0\0' +# mouse down with shift +printf '\033}td;510;78;1;2;0\0' +# mouse up with shift +printf '\033}tu;510;78;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tse and furious anger those who would attempt to po\nnd you will know My name is the Lord when I lay M\n\n\ns man is beset on all sides by the iniquities of\nevil men. Blessed is he who, in the name of chari\n weak through the valley of darkness, for he is t\0' + + +## sel TO SE +setup_SE_to_NW +# To (with shift) +printf '\033}tm;510;187;0\0' +printf '\033}td;510;187;1;2;0\0' +printf '\033}tu;510;187;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsevil men. Blessed is he who, in the name of chari\n weak through the valley of darkness, for he is t\nhe finder of lost children. And I will strike dow\ne and furious anger those who would attempt to po\0' + + +## sel TO to SW +setup_SE_to_NW +# To (with shift) +printf '\033}tm;51;187;0\0' +printf '\033}td;51;187;1;2;0\0' +printf '\033}tu;51;187;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsd the tyranny of evil men. Blessed is he who, in t\nll, shepherds the weak through the valley of darkn\ner\047s keeper and the finder of lost children. And I\nth great vengeance and furious anger those who wou\0' + + +## sel TO NW +setup_SE_to_NW +# To (with shift) +printf '\033}tm;51;78;0\0' +printf '\033}td;51;78;1;2;0\0' +printf '\033}tu;51;78;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tsth great vengeance and furious anger those who wou\noy My brothers. And you will know My name is the L\non thee.\n\nh of the righteous man is beset on all sides by th\nd the tyranny of evil men. Blessed is he who, in t\nll, shepherds the weak through the valley of darkn\0' + +## sel TO middle +setup_SE_to_NW +# To (with shift) +printf '\033}tm;251;150;0\0' +printf '\033}td;251;150;1;2;0\0' +printf '\033}tu;251;150;1;2;0\0' +printf '\033}tr\0' +# selection is +printf '\033}tslessed is he who, in t\ngh the valley of darkn\0' + +# }}} + +# remove selection +printf '\033}td;0;0;1;0;0\0\033}tu;0;0;1;0;0\0' +printf '\033}tr\0\033}tn\0' diff --git a/tests/tests.results b/tests/tests.results index f2ece93b..a9528f40 100644 --- a/tests/tests.results +++ b/tests/tests.results @@ -97,3 +97,4 @@ selection_invisible.sh 198db7819804c4b34ad5f7fd2a71c420 selection_to_position.sh 0174fb1d413f19f32e68e31439335d97 selection_to_word.sh 0174fb1d413f19f32e68e31439335d97 selection_to_paragraph.sh 7b918d2af64eef1ecb39a0f45cf72f2d +selection_box_to_position.sh 0174fb1d413f19f32e68e31439335d97