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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
require 'helper'
describe OAuth2::Strategy::AuthCode do
let(:code) { 'sushi' }
let(:kvform_token) { 'expires_in=600&access_token=salmon&refresh_token=trout&extra_param=steve' }
let(:facebook_token) { kvform_token.gsub('_in', '') }
let(:json_token) { MultiJson.encode(:expires_in => 600, :access_token => 'salmon', :refresh_token => 'trout', :extra_param => 'steve') }
let(:client) do
OAuth2::Client.new('abc', 'def', :site => 'http://api.example.com') do |builder|
builder.adapter :test do |stub|
stub.get("/oauth/token?client_id=abc&client_secret=def&code=#{code}&grant_type=authorization_code") do |env|
case @mode
when 'formencoded'
[200, {'Content-Type' => 'application/x-www-form-urlencoded'}, kvform_token]
when 'json'
[200, {'Content-Type' => 'application/json'}, json_token]
when 'from_facebook'
[200, {'Content-Type' => 'application/x-www-form-urlencoded'}, facebook_token]
end
end
stub.post('/oauth/token', 'client_id' => 'abc', 'client_secret' => 'def', 'code' => 'sushi', 'grant_type' => 'authorization_code') do |env|
case @mode
when 'formencoded'
[200, {'Content-Type' => 'application/x-www-form-urlencoded'}, kvform_token]
when 'json'
[200, {'Content-Type' => 'application/json'}, json_token]
when 'from_facebook'
[200, {'Content-Type' => 'application/x-www-form-urlencoded'}, facebook_token]
end
end
end
end
end
subject { client.auth_code }
describe '#authorize_url' do
it 'includes the client_id' do
expect(subject.authorize_url).to include('client_id=abc')
end
it 'includes the type' do
expect(subject.authorize_url).to include('response_type=code')
end
it 'includes passed in options' do
cb = 'http://myserver.local/oauth/callback'
expect(subject.authorize_url(:redirect_uri => cb)).to include("redirect_uri=#{Rack::Utils.escape(cb)}")
end
end
%w(json formencoded from_facebook).each do |mode|
[:get, :post].each do |verb|
describe "#get_token (#{mode}, access_token_method=#{verb}" do
before do
@mode = mode
client.options[:token_method] = verb
@access = subject.get_token(code)
end
it 'returns AccessToken with same Client' do
expect(@access.client).to eq(client)
end
it 'returns AccessToken with #token' do
expect(@access.token).to eq('salmon')
end
it 'returns AccessToken with #refresh_token' do
expect(@access.refresh_token).to eq('trout')
end
it 'returns AccessToken with #expires_in' do
expect(@access.expires_in).to eq(600)
end
it 'returns AccessToken with #expires_at' do
expect(@access.expires_at).to be_kind_of(Integer)
end
it 'returns AccessToken with params accessible via []' do
expect(@access['extra_param']).to eq('steve')
end
end
end
end
end
|