2015-10-20 03:28:28 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe InvitesController do
|
|
|
|
let(:token) { '123456' }
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:member) { create(:project_member, invite_token: token, invite_email: 'test@abc.com', user: user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
controller.instance_variable_set(:@member, member)
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #accept' do
|
|
|
|
it 'accepts user' do
|
|
|
|
get :accept, id: token
|
|
|
|
member.reload
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(302)
|
2015-10-20 03:28:28 -04:00
|
|
|
expect(member.user).to eq(user)
|
|
|
|
expect(flash[:notice]).to include 'You have been granted'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #decline' do
|
|
|
|
it 'declines user' do
|
|
|
|
get :decline, id: token
|
2017-08-09 05:52:22 -04:00
|
|
|
expect {member.reload}.to raise_error ActiveRecord::RecordNotFound
|
2015-10-20 03:28:28 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(302)
|
2015-10-20 03:28:28 -04:00
|
|
|
expect(flash[:notice]).to include 'You have declined the invitation to join'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|