about summary refs log tree commit diff stats
path: root/sandbox
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-01-22 19:28:11 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-01-22 19:28:11 -0800
commit56d26afb1ac967339217d5cf3eda9af85e9a278d (patch)
treed3a0a4b35a83c3b7833f6a26f83720854772b196 /sandbox
parent6a03974c420bf2eb560d1fbcdaab8ebb6ef152d8 (diff)
downloadmu-56d26afb1ac967339217d5cf3eda9af85e9a278d.tar.gz
2592 - bugfix: sandbox title bar management
Diffstat (limited to 'sandbox')
-rw-r--r--sandbox/005-sandbox.mu85
1 files changed, 84 insertions, 1 deletions
diff --git a/sandbox/005-sandbox.mu b/sandbox/005-sandbox.mu
index 98a7779c..08617080 100644
--- a/sandbox/005-sandbox.mu
+++ b/sandbox/005-sandbox.mu
@@ -542,19 +542,20 @@ after <global-keypress> [
     sandbox:address:shared:sandbox-data <- get *env, sandbox:offset
     break-unless sandbox
     first-sandbox-to-render:address:address:shared:sandbox-data <- get-address *env, first-sandbox-to-render:offset
+    first-sandbox-index:address:number <- get-address *env, first-sandbox-index:offset
     # if first-sandbox-to-render is set, slide it down if possible
     {
       break-unless *first-sandbox-to-render
       next:address:shared:sandbox-data <- get **first-sandbox-to-render, next-sandbox:offset
       break-unless next
       *first-sandbox-to-render <- copy next
-      first-sandbox-index:address:number <- get-address *env, first-sandbox-index:offset
       *first-sandbox-index <- add *first-sandbox-index, 1
     }
     # if first-sandbox-to-render is not set, set it to first sandbox
     {
       break-if *first-sandbox-to-render
       *first-sandbox-to-render <- copy sandbox
+      *first-sandbox-index <- copy 0
     }
     hide-screen screen
     screen <- render-sandbox-side screen, env
@@ -787,3 +788,85 @@ scenario scrolling-through-multiple-sandboxes [
     .                                                  .
   ]
 ]
+
+scenario scrolling-manages-sandbox-index-correctly [
+  trace-until 100/app  # trace too long
+  assume-screen 50/width, 20/height
+  # initialize environment
+  1:address:shared:array:character <- new []
+  2:address:shared:programming-environment-data <- new-programming-environment screen:address:shared:screen, 1:address:shared:array:character
+  render-all screen, 2:address:shared:programming-environment-data
+  # create a sandbox
+  assume-console [
+    press ctrl-n
+    type [add 1, 1]
+    press F4
+  ]
+  run [
+    event-loop screen:address:shared:screen, console:address:shared:console, 2:address:shared:programming-environment-data
+  ]
+  screen-should-contain [
+    .                               run (F4)           .
+    .                                                  .
+    .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
+    .0                                                x.
+    .add 1, 1                                          .
+    .2                                                 .
+    .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
+    .                                                  .
+  ]
+  # hit 'down' and 'up' a couple of times. sandbox index should be stable
+  assume-console [
+    press down-arrow
+  ]
+  run [
+    event-loop screen:address:shared:screen, console:address:shared:console, 2:address:shared:programming-environment-data
+  ]
+  # sandbox editor hidden; first sandbox displayed
+  # cursor moves to first sandbox
+  screen-should-contain [
+    .                               run (F4)           .
+    .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
+    .0                                                x.
+    .add 1, 1                                          .
+    .2                                                 .
+    .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
+    .                                                  .
+  ]
+  # hit 'up' again
+  assume-console [
+    press up-arrow
+  ]
+  run [
+    event-loop screen:address:shared:screen, console:address:shared:console, 2:address:shared:programming-environment-data
+  ]
+  # back to displaying both sandboxes as well as editor
+  screen-should-contain [
+    .                               run (F4)           .
+    .                                                  .
+    .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
+    .0                                                x.
+    .add 1, 1                                          .
+    .2                                                 .
+    .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
+    .                                                  .
+  ]
+  # hit 'down'
+  assume-console [
+    press down-arrow
+  ]
+  run [
+    event-loop screen:address:shared:screen, console:address:shared:console, 2:address:shared:programming-environment-data
+  ]
+  # sandbox editor hidden; first sandbox displayed
+  # cursor moves to first sandbox
+  screen-should-contain [
+    .                               run (F4)           .
+    .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
+    .0                                                x.  # no change
+    .add 1, 1                                          .
+    .2                                                 .
+    .━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
+    .                                                  .
+  ]
+]