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

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

require 'spec_helper'
require 'email_spec'

RSpec.describe Emails::InProductMarketing do
  include EmailSpec::Matchers
  include InProductMarketingHelper

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

  describe '#in_product_marketing_email' do
    using RSpec::Parameterized::TableSyntax

    let(:track) { :create }
    let(:series) { 0 }

    subject { Notify.in_product_marketing_email(user.id, group.id, track, series) }

    include_context 'gitlab email notification'

    it 'sends to the right user with a link to unsubscribe' do
      aggregate_failures do
        expect(subject).to deliver_to(user.notification_email)
        expect(subject).to have_body_text(profile_notifications_url)
      end
    end

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

      it 'has custom headers' do
        aggregate_failures do
          expect(subject).to deliver_from(described_class::FROM_ADDRESS)
          expect(subject).to reply_to(described_class::FROM_ADDRESS)
          expect(subject).to have_header('X-Mailgun-Track', 'yes')
          expect(subject).to have_header('X-Mailgun-Track-Clicks', 'yes')
          expect(subject).to have_header('X-Mailgun-Track-Opens', 'yes')
          expect(subject).to have_header('X-Mailgun-Tag', 'marketing')
          expect(subject).to have_body_text('%tag_unsubscribe_url%')
        end
      end
    end

    where(:track, :series) do
      :create | 0
      :create | 1
      :create | 2
      :verify | 0
      :verify | 1
      :verify | 2
      :trial  | 0
      :trial  | 1
      :trial  | 2
      :team   | 0
      :team   | 1
      :team   | 2
    end

    with_them do
      it 'has the correct subject and content' do
        aggregate_failures do
          is_expected.to have_subject(subject_line(track, series))
          is_expected.to have_body_text(in_product_marketing_title(track, series))
          is_expected.to have_body_text(in_product_marketing_subtitle(track, series))
          is_expected.to have_body_text(in_product_marketing_cta_text(track, series))
        end
      end
    end
  end
end