summaryrefslogtreecommitdiff
path: root/vendor/gems/omniauth-cas3/spec/omniauth/strategies/cas3/service_ticket_validator_spec.rb
blob: b031d1d68fc3bc5bb1082989593ec047afe9f8be (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
require 'spec_helper'

describe OmniAuth::Strategies::CAS3::ServiceTicketValidator do
  let(:strategy) do
    double('strategy',
      service_validate_url: 'https://example.org/serviceValidate'
    )
  end
  let(:provider_options) do
    double('provider_options',
      disable_ssl_verification?: false,
      ca_path: '/etc/ssl/certsZOMG'
    )
  end
  let(:validator) do
    OmniAuth::Strategies::CAS3::ServiceTicketValidator.new( strategy, provider_options, '/foo', nil )
  end

  describe '#call' do
    before do
      stub_request(:get, 'https://example.org/serviceValidate?')
        .to_return(status: 200, body: '')
    end

    subject { validator.call }

    it 'returns itself' do
      expect(subject).to eq validator
    end

    it 'uses the configured CA path' do
      subject
      expect(provider_options).to have_received :ca_path
    end
  end

  describe '#user_info' do
    let(:ok_fixture) do
      File.expand_path(File.join(File.dirname(__FILE__), '../../../fixtures/cas_success.xml'))
    end
    let(:service_response) { File.read(ok_fixture) }

    before do
      stub_request(:get, 'https://example.org/serviceValidate?')
        .to_return(status: 200, body:service_response)
      validator.call
    end

    subject { validator.user_info }

    it 'parses user info from the response' do
      expect(subject).to include 'user' => 'psegel'
    end
  end
end