diff options
author | azul <azul@riseup.net> | 2017-03-20 10:11:44 +0000 |
---|---|---|
committer | azul <azul@riseup.net> | 2017-03-20 10:11:44 +0000 |
commit | 15de288c3ca9bacc3d45675878ee7b8a2d9fc935 (patch) | |
tree | ce9e94b23dc6b838a9e68a96b1d7cc811924f952 /test/integration/key_discovery_test.rb | |
parent | d7990f1b2af378ad071db6d94c5f95a50d6b7dcd (diff) | |
parent | 32b07d8c98719f3c52a3c5315da1f61c6e35cbd6 (diff) |
Merge branch 'test/404-error-test' into 'master'
test: 404 response for missing key
See merge request !18
Diffstat (limited to 'test/integration/key_discovery_test.rb')
-rw-r--r-- | test/integration/key_discovery_test.rb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/integration/key_discovery_test.rb b/test/integration/key_discovery_test.rb new file mode 100644 index 0000000..2a38a78 --- /dev/null +++ b/test/integration/key_discovery_test.rb @@ -0,0 +1,23 @@ +require 'test_helper' + +# This is not really a browser test - key discovery is used from bitmask. +# However we need to make sure to test the full rack stack to replicate +# exception handling. +class KeyDiscoveryTest < RackStackTest + include Capybara::DSL + + setup do + # make sure we test the whole stack... + Capybara.current_driver = Capybara.javascript_driver + end + + teardown do + # Revert Capybara.current_driver to Capybara.default_driver + Capybara.use_default_driver + end + + def test_404_on_non_existing_user + visit '/key/asjkholifweatg' + assert_equal 404, status_code + end +end |