summaryrefslogtreecommitdiff
path: root/users/test/functional
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-04-02 14:20:55 +0200
committerAzul <azul@leap.se>2013-04-02 14:20:55 +0200
commit62c48c5a14ea0c1221216c3e40eb82ef594f2771 (patch)
tree374b3201989f20fa6f6b10a0a63c75cd6ff4f3db /users/test/functional
parent869ba2f363a48d0f76321efc08a228f54aeb6758 (diff)
send salt on Session#create without srp ephemeral A
Diffstat (limited to 'users/test/functional')
-rw-r--r--users/test/functional/v1/sessions_controller_test.rb11
1 files changed, 10 insertions, 1 deletions
diff --git a/users/test/functional/v1/sessions_controller_test.rb b/users/test/functional/v1/sessions_controller_test.rb
index be085ce..535da52 100644
--- a/users/test/functional/v1/sessions_controller_test.rb
+++ b/users/test/functional/v1/sessions_controller_test.rb
@@ -7,7 +7,7 @@ class V1::SessionsControllerTest < ActionController::TestCase
setup do
@request.env['HTTP_HOST'] = 'api.lvh.me'
- @user = stub :login => "me", :id => 123
+ @user = stub_record :user
@client_hex = 'a123'
end
@@ -36,6 +36,15 @@ class V1::SessionsControllerTest < ActionController::TestCase
post :create, :login => @user.login, 'A' => @client_hex
end
+ test "should send salt" do
+ User.expects(:find_by_login).with(@user.login).returns(@user)
+
+ post :create, :login => @user.login
+
+ assert_equal @user, assigns(:user)
+ assert_json_response salt: @user.salt
+ end
+
test "should authorize" do
request.env['warden'].expects(:authenticate!)
@controller.expects(:current_user).returns(@user)