Welcome to mirror list, hosted at ThFree Co, Russian Federation.

invite_registration_spec.rb « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 167cf4b1de7a1a9dd7a9ac8bad0aaddcf6213f70 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Registering from an invite' do
  let(:com) { true }

  before do
    allow(Gitlab).to receive(:dev_env_or_com?).and_return(com)
  end

  describe 'GET /users/sign_up/invites/new' do
    subject(:request) { get '/users/sign_up/invites/new' }

    context 'when on .com' do
      it 'renders the template with expected text', :aggregate_failures do
        request

        expect(response).to render_template('layouts/simple_registration')
        expect(response).to render_template(:new)
        expect(response.body).to include('Join your team')
      end
    end

    context 'when not on .com' do
      let(:com) { false }

      it 'returns not found' do
        request

        expect(response).to have_gitlab_http_status(:not_found)
      end
    end
  end

  describe 'POST /users/sign_up/invites' do
    subject(:request) do
      post '/users/sign_up/invites',
           params: {
             user: {
               first_name: 'first',
               last_name: 'last',
               username: 'new_username',
               email: 'new@user.com',
               password: 'Any_password'
             }
           }
    end

    context 'when on .com' do
      it 'creates a user' do
        expect { request }.to change(User, :count).by(1)

        expect(response).to have_gitlab_http_status(:found)
      end
    end

    context 'when not on .com' do
      let(:com) { false }

      it 'returns not found' do
        request

        expect(response).to have_gitlab_http_status(:not_found)
      end
    end
  end
end