summaryrefslogtreecommitdiff
path: root/test/integration/api/update_account_test.rb
diff options
context:
space:
mode:
authorazul <azul@riseup.net>2017-10-24 11:40:46 +0000
committerazul <azul@riseup.net>2017-10-24 11:40:46 +0000
commitd717aba320abc5cc2ebf5650cbd52a69a56926b5 (patch)
tree4a9adacadce129529bed44792e6a4de1dc158519 /test/integration/api/update_account_test.rb
parentfecd710de6c574ac8e2b0c45ad9e081badd59b61 (diff)
parent325bccc1649c928d512ce7c7b11e14566a8c9eeb (diff)
Merge branch '8801-500-on-lynx' into 'master'
fix: sanity checks on user params Closes #8801 See merge request leap/webapp!50
Diffstat (limited to 'test/integration/api/update_account_test.rb')
-rw-r--r--test/integration/api/update_account_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/integration/api/update_account_test.rb b/test/integration/api/update_account_test.rb
index f083dbc..dd28b06 100644
--- a/test/integration/api/update_account_test.rb
+++ b/test/integration/api/update_account_test.rb
@@ -19,6 +19,14 @@ class UpdateAccountTest < SrpTest
assert_login_required
end
+ test "empty request" do
+ authenticate
+ update_user
+ refute last_response.successful?
+ assert_equal 400, last_response.status
+ assert_equal '', last_response.body
+ end
+
test "update password via api" do
authenticate
update_user password: "No! Verify me instead."