gitlab-org--gitlab-foss/spec/lib/mattermost/session_spec.rb

99 lines
3.0 KiB
Ruby
Raw Normal View History

2016-12-15 13:32:50 +00:00
require 'spec_helper'
2016-12-16 10:31:26 +00:00
describe Mattermost::Session, type: :request do
2016-12-15 13:32:50 +00:00
let(:user) { create(:user) }
2016-12-16 10:31:26 +00:00
let(:gitlab_url) { "http://gitlab.com" }
let(:mattermost_url) { "http://mattermost.com" }
2016-12-16 11:20:42 +00:00
subject { described_class.new(user) }
2016-12-15 13:32:50 +00:00
# Needed for doorkeeper to function
it { is_expected.to respond_to(:current_resource_owner) }
it { is_expected.to respond_to(:request) }
it { is_expected.to respond_to(:authorization) }
it { is_expected.to respond_to(:strategy) }
2016-12-16 11:20:42 +00:00
before do
described_class.base_uri(mattermost_url)
end
2016-12-15 13:32:50 +00:00
describe '#with session' do
let(:location) { 'http://location.tld' }
let!(:stub) do
2016-12-16 10:31:26 +00:00
WebMock.stub_request(:get, "#{mattermost_url}/api/v3/oauth/gitlab/login").
2016-12-15 13:32:50 +00:00
to_return(headers: { 'location' => location }, status: 307)
end
context 'without oauth uri' do
it 'makes a request to the oauth uri' do
expect { subject.with_session }.to raise_error(Mattermost::NoSessionError)
end
end
context 'with oauth_uri' do
let!(:doorkeeper) do
2016-12-16 10:31:26 +00:00
Doorkeeper::Application.create(
name: "GitLab Mattermost",
redirect_uri: "#{mattermost_url}/signup/gitlab/complete\n#{mattermost_url}/login/gitlab/complete",
scopes: "")
2016-12-15 13:32:50 +00:00
end
context 'without token_uri' do
it 'can not create a session' do
expect do
subject.with_session
end.to raise_error(Mattermost::NoSessionError)
end
end
context 'with token_uri' do
2016-12-16 10:31:26 +00:00
let(:state) { "state" }
let(:params) do
{ response_type: "code",
client_id: doorkeeper.uid,
redirect_uri: "#{mattermost_url}/signup/gitlab/complete",
state: state }
end
let(:location) do
"#{gitlab_url}/oauth/authorize?#{URI.encode_www_form(params)}"
end
2016-12-15 13:32:50 +00:00
before do
2016-12-16 10:31:26 +00:00
WebMock.stub_request(:get, "#{mattermost_url}/signup/gitlab/complete").
with(query: hash_including({ 'state' => state })).
to_return do |request|
post "/oauth/token",
client_id: doorkeeper.uid,
client_secret: doorkeeper.secret,
redirect_uri: params[:redirect_uri],
grant_type: 'authorization_code',
code: request.uri.query_values['code']
if response.status == 200
{ headers: { 'token' => 'thisworksnow' }, status: 202 }
end
end
WebMock.stub_request(:post, "#{mattermost_url}/api/v3/users/logout").
2016-12-16 11:20:42 +00:00
to_return(headers: { Authorization: 'token thisworksnow' }, status: 200)
2016-12-15 13:32:50 +00:00
end
it 'can setup a session' do
2016-12-16 11:20:42 +00:00
subject.with_session do |session|
end
2016-12-15 13:32:50 +00:00
2016-12-16 10:31:26 +00:00
expect(subject.token).not_to be_nil
2016-12-15 13:32:50 +00:00
end
it 'returns the value of the block' do
2016-12-16 11:20:42 +00:00
result = subject.with_session do |session|
"value"
end
2016-12-15 13:32:50 +00:00
2016-12-16 11:20:42 +00:00
expect(result).to eq("value")
2016-12-15 13:32:50 +00:00
end
end
end
end
end