summaryrefslogtreecommitdiff
path: root/test/integration/api/token_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/api/token_test.rb')
-rw-r--r--test/integration/api/token_test.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/integration/api/token_test.rb b/test/integration/api/token_test.rb
new file mode 100644
index 0000000..ad3ac22
--- /dev/null
+++ b/test/integration/api/token_test.rb
@@ -0,0 +1,15 @@
+require 'test_helper'
+require_relative 'srp_test'
+
+class TokenTest < SrpTest
+
+ setup do
+ register_user
+ end
+
+ test "stores token SHA512 encoded" do
+ authenticate
+ token = server_auth['token']
+ assert Token.find(Digest::SHA512.hexdigest(token))
+ end
+end