diff options
author | Azul <azul@leap.se> | 2013-04-02 12:45:58 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-04-09 09:01:34 +0200 |
commit | 2bd36ec96d42f0b4585a15759f33ff7f89075dcc (patch) | |
tree | bc523084497325e43a373babc887a1c06f19b327 /users/test | |
parent | 08ce330fd3676ba0b51d604a2aa653c680fffea5 (diff) |
return token on successful login via api
Diffstat (limited to 'users/test')
-rw-r--r-- | users/test/functional/v1/sessions_controller_test.rb | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/users/test/functional/v1/sessions_controller_test.rb b/users/test/functional/v1/sessions_controller_test.rb index 1226c9d..7c6b595 100644 --- a/users/test/functional/v1/sessions_controller_test.rb +++ b/users/test/functional/v1/sessions_controller_test.rb @@ -11,6 +11,22 @@ class V1::SessionsControllerTest < ActionController::TestCase @client_hex = 'a123' end + test "renders json" do + request.env['warden'].expects(:winning_strategy) + get :new, :format => :json + assert_response :success + assert_json_error nil + end + + test "renders warden errors" do + strategy = stub :message => {:field => :translate_me} + request.env['warden'].stubs(:winning_strategy).returns(strategy) + I18n.expects(:t).with(:translate_me).at_least_once.returns("translation stub") + get :new, :format => :json + assert_response 422 + assert_json_error :field => "translation stub" + end + # Warden takes care of parsing the params and # rendering the response. So not much to test here. test "should perform handshake" do @@ -20,15 +36,6 @@ 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) |