summaryrefslogtreecommitdiff
path: root/spec/helpers/sessions_helper_spec.rb
blob: c7b8225b866529d3232e0da6bce928915ed0bb91 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe SessionsHelper do
  describe '#recently_confirmed_com?' do
    subject { helper.recently_confirmed_com? }

    context 'when on .com' do
      before do
        allow(Gitlab).to receive(:com?).and_return(true)
      end

      it 'when flash notice is empty it is false' do
        flash[:notice] = nil
        expect(subject).to be false
      end

      it 'when flash notice is anything it is false' do
        flash[:notice] = 'hooray!'
        expect(subject).to be false
      end

      it 'when flash notice is devise confirmed message it is true' do
        flash[:notice] = t(:confirmed, scope: [:devise, :confirmations])
        expect(subject).to be true
      end
    end

    context 'when not on .com' do
      before do
        allow(Gitlab).to receive(:com?).and_return(false)
      end

      it 'when flash notice is devise confirmed message it is false' do
        flash[:notice] = t(:confirmed, scope: [:devise, :confirmations])
        expect(subject).to be false
      end
    end
  end

  describe '#unconfirmed_email?' do
    it 'returns true when the flash alert contains a devise failure unconfirmed message' do
      flash[:alert] = t(:unconfirmed, scope: [:devise, :failure])
      expect(helper.unconfirmed_email?).to be_truthy
    end

    it 'returns false when the flash alert does not contain a devise failure unconfirmed message' do
      flash[:alert] = 'something else'
      expect(helper.unconfirmed_email?).to be_falsey
    end
  end

  describe '#send_rate_limited?' do
    let_it_be(:user) { build(:user) }

    subject { helper.send_rate_limited?(user) }

    before do
      allow(::Gitlab::ApplicationRateLimiter)
        .to receive(:peek)
        .with(:email_verification_code_send, scope: user)
        .and_return(rate_limited)
    end

    context 'when rate limited' do
      let(:rate_limited) { true }

      it { is_expected.to eq(true) }
    end

    context 'when not rate limited' do
      let(:rate_limited) { false }

      it { is_expected.to eq(false) }
    end
  end

  describe '#obfuscated_email' do
    subject { helper.obfuscated_email(email) }

    context 'when an email address is normal length' do
      let(:email) { 'alex@gitlab.com' }

      it { is_expected.to eq('al**@g*****.com') }
    end

    context 'when an email address contains multiple top level domains' do
      let(:email) { 'alex@gl.co.uk' }

      it { is_expected.to eq('al**@g****.uk') }
    end

    context 'when an email address is very short' do
      let(:email) { 'a@b.c' }

      it { is_expected.to eq('a@b.c') }
    end

    context 'when an email address is even shorter' do
      let(:email) { 'a@b' }

      it { is_expected.to eq('a@b') }
    end
  end
end