summaryrefslogtreecommitdiff
path: root/spec/views/registrations/welcome/show.html.haml_spec.rb
blob: 639759ae09540a9ec538c757c849e57b0c72bc99 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'registrations/welcome/show' do
  let(:is_gitlab_com) { false }

  let_it_be(:user) { User.new }

  before do
    allow(view).to receive(:current_user).and_return(user)
    allow(view).to receive(:in_subscription_flow?).and_return(false)
    allow(view).to receive(:in_trial_flow?).and_return(false)
    allow(view).to receive(:user_has_memberships?).and_return(false)
    allow(view).to receive(:in_oauth_flow?).and_return(false)
    allow(Gitlab).to receive(:com?).and_return(is_gitlab_com)

    render
  end

  subject { rendered }

  it { is_expected.not_to have_selector('label[for="user_setup_for_company"]') }
  it { is_expected.to have_button('Get started!') }
  it { is_expected.to have_selector('input[name="user[email_opted_in]"]') }

  describe 'email opt in' do
    context 'when on gitlab.com' do
      let(:is_gitlab_com) { true }

      it 'hides the email-opt in by default' do
        expect(subject).to have_css('.js-email-opt-in.hidden')
      end
    end

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

      it 'hides the email-opt in by default' do
        expect(subject).not_to have_css('.js-email-opt-in.hidden')
        expect(subject).to have_css('.js-email-opt-in')
      end
    end
  end
end