summaryrefslogtreecommitdiff
path: root/test/integration/api/tmp_user_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/api/tmp_user_test.rb')
-rw-r--r--test/integration/api/tmp_user_test.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/integration/api/tmp_user_test.rb b/test/integration/api/tmp_user_test.rb
new file mode 100644
index 0000000..4c1e659
--- /dev/null
+++ b/test/integration/api/tmp_user_test.rb
@@ -0,0 +1,19 @@
+require 'test_helper'
+require_relative 'srp_test'
+
+class TmpUserTest < SrpTest
+
+ setup do
+ register_user('test_user_'+SecureRandom.hex(5))
+ end
+
+ test "login with srp" do
+ authenticate
+ assert_nil server_auth["errors"]
+ assert_nil server_auth["error"]
+ assert_equal ["M2", "id", "token"], server_auth.keys
+ assert last_response.successful?
+ assert server_auth["M2"]
+ end
+
+end