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-08-11 20:09:59 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-08-11 22:23:16 -0700
commit0afd03e72128f691d702ec67f317e6fbf407724e (patch)
treeeaed39e6872c64969b4c7d1d792e56fd1eb258c0 /text_tests.lua
parentd14e03d7065e989125f0985e497419dddd50da66 (diff)
downloadtext.love-0afd03e72128f691d702ec67f317e6fbf407724e.tar.gz
bugfix: check before cursor on same line
Diffstat (limited to 'text_tests.lua')
-rw-r--r--text_tests.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/text_tests.lua b/text_tests.lua
index e5e7823..1167355 100644
--- a/text_tests.lua
+++ b/text_tests.lua
@@ -2045,3 +2045,22 @@ function test_search()
   check_eq(Editor_state.cursor1.line, 4, 'F - test_search/2/cursor:line')
   check_eq(Editor_state.cursor1.pos, 1, 'F - test_search/2/cursor:pos')
 end
+
+function test_search_wrap()
+  io.write('\ntest_search_wrap')
+  App.screen.init{width=120, height=60}
+  Editor_state = edit.initialize_test_state()
+  Editor_state.lines = load_array{'abc'}
+  Text.redraw_all(Editor_state)
+  Editor_state.cursor1 = {line=1, pos=3}
+  Editor_state.screen_top1 = {line=1, pos=1}
+  Editor_state.screen_bottom1 = {}
+  edit.draw(Editor_state)
+  -- search for a string
+  edit.run_after_keychord(Editor_state, 'C-f')
+  edit.run_after_textinput(Editor_state, 'a')
+  edit.run_after_keychord(Editor_state, 'return')
+  -- cursor wraps
+  check_eq(Editor_state.cursor1.line, 1, 'F - test_search_wrap/1/cursor:line')
+  check_eq(Editor_state.cursor1.pos, 1, 'F - test_search_wrap/1/cursor:pos')
+end