about summary refs log tree commit diff stats
path: root/text_tests.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-06-03 10:36:05 -0700
committerKartik K. Agaram <vc@akkartik.com>2023-06-03 10:36:05 -0700
commit3114176ebd5b9895b5f67c759a2a705f673a4ac0 (patch)
treef8a6a60a8cd0165f5aa7b70fea1c267f469fcca6 /text_tests.lua
parent541519a9986fe5c85d6b03fc8cf993ba8e950b0c (diff)
downloadlines.love-3114176ebd5b9895b5f67c759a2a705f673a4ac0.tar.gz
change how we handle clicks above top margin
Diffstat (limited to 'text_tests.lua')
-rw-r--r--text_tests.lua43
1 files changed, 19 insertions, 24 deletions
diff --git a/text_tests.lua b/text_tests.lua
index eec3098..d5368a8 100644
--- a/text_tests.lua
+++ b/text_tests.lua
@@ -1,4 +1,6 @@
 -- major tests for text editing flows
+-- Arguably this should be called edit_tests.lua,
+-- but that would mess up the git blame at this point.
 
 function test_initial_state()
   App.screen.init{width=120, height=60}
@@ -828,6 +830,23 @@ function test_select_text_using_mouse()
   check_eq(Editor_state.cursor1.pos, 4, 'cursor:pos')
 end
 
+function test_select_text_using_mouse_starting_above_text()
+  App.screen.init{width=50, height=60}
+  Editor_state = edit.initialize_test_state()
+  Editor_state.lines = load_array{'abc', 'def', 'xyz'}
+  Text.redraw_all(Editor_state)
+  Editor_state.cursor1 = {line=1, pos=1}
+  Editor_state.screen_top1 = {line=1, pos=1}
+  Editor_state.screen_bottom1 = {}
+  Editor_state.selection1 = {}
+  edit.draw(Editor_state)  -- populate line_cache.starty for each line Editor_state.line_cache
+  -- press mouse above first line of text
+  edit.run_after_mouse_press(Editor_state, Editor_state.left+8,5, 1)
+  check(Editor_state.selection1.line ~= nil, 'selection:line-not-nil')
+  check_eq(Editor_state.selection1.line, 1, 'selection:line')
+  check_eq(Editor_state.selection1.pos, 1, 'selection:pos')
+end
+
 function test_select_text_using_mouse_and_shift()
   App.screen.init{width=50, height=60}
   Editor_state = edit.initialize_test_state()
@@ -904,30 +923,6 @@ function test_select_all_text()
   check_eq(Editor_state.cursor1.pos, 8, 'cursor:pos')
 end
 
---? function test_select_all_text_then_mouse_press_outside_text()
---?   -- display a single line of text
---?   App.screen.init{width=75, height=80}
---?   Editor_state = edit.initialize_test_state()
---?   Editor_state.lines = load_array{'abc def'}
---?   Text.redraw_all(Editor_state)
---?   Editor_state.cursor1 = {line=1, pos=1}
---?   Editor_state.screen_top1 = {line=1, pos=1}
---?   Editor_state.screen_bottom1 = {}
---?   edit.draw(Editor_state)
---?   -- select all
---?   App.fake_key_press('lctrl')
---?   edit.run_after_keychord(Editor_state, 'C-a')
---?   App.fake_key_release('lctrl')
---?   edit.key_release(Editor_state, 'lctrl')
---?   -- selection
---?   check_eq(Editor_state.selection1.line, 1, 'selection:line')
---?   check_eq(Editor_state.selection1.pos, 1, 'selection:pos')
---?   check_eq(Editor_state.cursor1.line, 1, 'cursor:line')
---?   check_eq(Editor_state.cursor1.pos, 8, 'cursor:pos')
---?   -- part of a mouse click outside the selected line
---?   edit.run_after_mouse_press(Editor_state, 45, Margin_top + Editor_state.line_height + 10, --[[mouse button]] 1)
---? end
-
 function test_cut_without_selection()
   -- display a few lines
   App.screen.init{width=Editor_state.left+30, height=60}