diff options
| author | Stephen Blott | 2016-03-29 15:05:52 +0100 |
|---|---|---|
| committer | Stephen Blott | 2016-03-29 15:05:52 +0100 |
| commit | 7ecc65d8215203b89248d8f313783ce48e8ba1c4 (patch) | |
| tree | b9cdb213f283961baf9e42e66649e2c83cdb841f /tests | |
| parent | 3b72ced87f4dc6402f4ab8f8dbf2873e9a53093d (diff) | |
| download | vimium-7ecc65d8215203b89248d8f313783ce48e8ba1c4.tar.bz2 | |
Add tests for WaitForEnter.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/dom_tests/dom_tests.coffee | 26 | ||||
| -rw-r--r-- | tests/dom_tests/phantom_runner.coffee | 3 |
2 files changed, 29 insertions, 0 deletions
diff --git a/tests/dom_tests/dom_tests.coffee b/tests/dom_tests/dom_tests.coffee index c3bdb9c5..84942908 100644 --- a/tests/dom_tests/dom_tests.coffee +++ b/tests/dom_tests/dom_tests.coffee @@ -996,3 +996,29 @@ context "PostFindMode", sendKeyboardEvent "escape" assert.isTrue @postFindMode.modeIsActive +context "WaitForEnter", + setup -> + initializeModeState() + @isSuccess = null + @waitForEnter = new WaitForEnter (isSuccess) => @isSuccess = isSuccess + + should "exit with success on Enter", -> + assert.isTrue @waitForEnter.modeIsActive + assert.isFalse @isSuccess? + sendKeyboardEvent "enter" + assert.isFalse @waitForEnter.modeIsActive + assert.isTrue @isSuccess? and @isSuccess == true + + should "exit without success on Escape", -> + assert.isTrue @waitForEnter.modeIsActive + assert.isFalse @isSuccess? + sendKeyboardEvent "escape" + assert.isFalse @waitForEnter.modeIsActive + assert.isTrue @isSuccess? and @isSuccess == false + + should "not exit on other keyboard events", -> + assert.isTrue @waitForEnter.modeIsActive + assert.isFalse @isSuccess? + sendKeyboardEvents "abc" + assert.isTrue @waitForEnter.modeIsActive + assert.isFalse @isSuccess? diff --git a/tests/dom_tests/phantom_runner.coffee b/tests/dom_tests/phantom_runner.coffee index 265c994e..09d7d584 100644 --- a/tests/dom_tests/phantom_runner.coffee +++ b/tests/dom_tests/phantom_runner.coffee @@ -28,6 +28,9 @@ page.onCallback = (request) -> when "escape" page.sendEvent "keydown", page.event.key.Escape page.sendEvent "keyup", page.event.key.Escape + when "enter" + page.sendEvent "keydown", page.event.key.Enter + page.sendEvent "keyup", page.event.key.Enter when "tab" page.sendEvent "keydown", page.event.key.Tab page.sendEvent "keyup", page.event.key.Tab |
