summaryrefslogtreecommitdiff
path: root/users/test/functional/sessions_controller_test.rb
blob: 4bad12f34df7e3a4d8276cf1027cdb9e6e5b173c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
require 'test_helper'

class SessionsControllerTest < ActionController::TestCase

  setup do
    @user = stub :login => "me", :id => 123
    @client_hex = 'a123'
  end

  test "should get login screen" do
    request.env['warden'].expects(:winning_strategy)
    get :new
    assert_response :success
    assert_equal "text/html", response.content_type
    assert_template "sessions/new"
  end

  test "renders json" do
    request.env['warden'].expects(:winning_strategy)
    get :new, :format => :json
    assert_response :success
    assert_json_response :errors => nil
  end

  test "renders warden errors" do
    strategy = stub :message => "Warden auth did not work"
    request.env['warden'].expects(:winning_strategy).returns(strategy)
    get :new, :format => :json
    assert_response :success
    assert_json_response :errors => strategy.message
  end

  test "should perform handshake" do
    assert_raises ActionView::MissingTemplate do
      request.env['warden'].expects(:authenticate!)
      post :create, :login => @user.login, 'A' => @client_hex
      assert params['A']
      assert params['login']
    end
  end

  test "should authorize" do
    assert_raises ActionView::MissingTemplate do
      request.env['warden'].expects(:authenticate!)
      session[:handshake] = stub
      post :update, :id => @user.login, :client_auth => @client_hex
      assert params['client_auth']
      assert session[:handshake]
    end
  end

  test "logout should reset warden user" do
    expect_warden_logout
    delete :destroy
    assert_response :redirect
    assert_redirected_to root_url
  end

  def expect_warden_logout
    raw = mock('raw session') do
      expects(:inspect)
    end
    request.env['warden'].expects(:raw_session).returns(raw)
    request.env['warden'].expects(:logout)
  end


end