summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/email/message/in_product_marketing/trial_spec.rb
blob: 3e18b8e35b6a5f3e576eefcef20bd59ab88821bb (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Email::Message::InProductMarketing::Trial do
  using RSpec::Parameterized::TableSyntax

  let_it_be(:group) { build(:group) }
  let_it_be(:user) { build(:user) }

  subject(:message) { described_class.new(group: group, user: user, series: series)}

  describe "public methods" do
    where(series: [0, 1, 2])

    with_them do
      it 'returns value for series', :aggregate_failures do
        expect(message.subject_line).to be_present
        expect(message.tagline).to be_present
        expect(message.title).to be_present
        expect(message.subtitle).to be_present
        expect(message.body_line1).to be_present
        expect(message.body_line2).to be_present
        expect(message.cta_text).to be_present
      end

      describe '#progress' do
        subject { message.progress }

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

        context 'on gitlab.com' do
          let(:is_gitlab_com) { true }

          it { is_expected.to eq("This is email #{series + 2} of 4 in the Trial series.") }
        end

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

          it { is_expected.to include("This is email #{series + 2} of 4 in the Trial series", Gitlab::Routing.url_helpers.profile_notifications_url) }
        end
      end
    end
  end
end