about summary refs log tree commit diff stats
path: root/text_tests.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-06-09 15:49:16 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-06-09 15:49:16 -0700
commit6ba10b4de61f1bce61bb946a0d023cf4969fdefe (patch)
treecf271d6c6210ddf00ec145c48544c411f1604b13 /text_tests.lua
parentfa5bf1218af8d87193f5d333904708a312ff7471 (diff)
downloadtext.love-6ba10b4de61f1bce61bb946a0d023cf4969fdefe.tar.gz
fix a corner case when selecting text
The hard part here is keeping click-drag selection working (without
pressing and holding shift).
Diffstat (limited to 'text_tests.lua')
-rw-r--r--text_tests.lua30
1 files changed, 30 insertions, 0 deletions
diff --git a/text_tests.lua b/text_tests.lua
index 85b301a..ab7ac10 100644
--- a/text_tests.lua
+++ b/text_tests.lua
@@ -224,6 +224,36 @@ function test_select_text_using_mouse_and_shift()
   check_eq(Cursor1.pos, 4, 'F - test_select_text_using_mouse_and_shift/cursor:pos')
 end
 
+function test_select_text_repeatedly_using_mouse_and_shift()
+  io.write('\ntest_select_text_repeatedly_using_mouse_and_shift')
+  App.screen.init{width=50, height=60}
+  Lines = load_array{'abc', 'def', 'xyz'}
+  Line_width = App.screen.width
+  Cursor1 = {line=1, pos=1}
+  Screen_top1 = {line=1, pos=1}
+  Screen_bottom1 = {}
+  Selection1 = {}
+  App.draw()  -- populate line.y for each line in Lines
+  local screen_left_margin = 25  -- pixels
+  -- click on first location
+  App.run_after_mousepress(screen_left_margin+8,Margin_top+5, '1')
+  App.run_after_mouserelease(screen_left_margin+8,Margin_top+5, '1')
+  -- hold down shift and click on a second location
+  App.keypress('lshift')
+  App.run_after_mousepress(screen_left_margin+20,Margin_top+5, '1')
+  App.run_after_mouserelease(screen_left_margin+20,Margin_top+Line_height+5, '1')
+  -- hold down shift and click at a third location
+  App.keypress('lshift')
+  App.run_after_mousepress(screen_left_margin+20,Margin_top+5, '1')
+  App.run_after_mouserelease(screen_left_margin+8,Margin_top+Line_height+5, '1')
+  App.keyrelease('lshift')
+  -- selection is between first and third location. forget the second location, not the first.
+  check_eq(Selection1.line, 1, 'F - test_select_text_repeatedly_using_mouse_and_shift/selection:line')
+  check_eq(Selection1.pos, 2, 'F - test_select_text_repeatedly_using_mouse_and_shift/selection:pos')
+  check_eq(Cursor1.line, 2, 'F - test_select_text_repeatedly_using_mouse_and_shift/cursor:line')
+  check_eq(Cursor1.pos, 2, 'F - test_select_text_repeatedly_using_mouse_and_shift/cursor:pos')
+end
+
 function test_pagedown()
   io.write('\ntest_pagedown')
   App.screen.init{width=120, height=45}