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: 7f3896a3d516c7cc699851297d9a57491a9a5c12 (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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# frozen_string_literal: true

require 'spec_helper'
require 'email_spec'

RSpec.describe Emails::InProductMarketing do
  include EmailSpec::Matchers
  include Gitlab::Routing.url_helpers

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

  shared_examples 'has custom headers when on gitlab.com' do
    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
  end

  describe '#in_product_marketing_email' do
    let_it_be(:group) { create(:group) }

    let!(:onboarding_progress) { create(:onboarding_progress, namespace: group) }

    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_behaves_like 'has custom headers when on gitlab.com'

    it 'sends to the right user with a link to unsubscribe' do
      aggregate_failures do
        expect(subject).to deliver_to(user.notification_email_or_default)
        expect(subject).to have_body_text(profile_notifications_url)
      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
      :experience   | 0
      :team_short   | 0
      :trial_short  | 0
      :admin_verify | 0
    end

    with_them do
      before do
        group.add_owner(user)
      end

      it 'has the correct subject and content' do
        message = Gitlab::Email::Message::InProductMarketing.for(track).new(group: group, user: user, series: series)

        aggregate_failures do
          is_expected.to have_subject(message.subject_line)
          is_expected.to have_body_text(message.title)
          is_expected.to have_body_text(message.subtitle)

          if track == :experience
            is_expected.to have_body_text(CGI.unescapeHTML(message.feedback_link(1)))
          else
            is_expected.to have_body_text(CGI.unescapeHTML(message.cta_link))
          end

          if track =~ /(create|verify)/
            is_expected.to have_body_text(message.invite_text)
            is_expected.to have_body_text(CGI.unescapeHTML(message.invite_link))
          else
            is_expected.not_to have_body_text(message.invite_text)
            is_expected.not_to have_body_text(CGI.unescapeHTML(message.invite_link))
          end

          is_expected.to have_body_text(message.progress)
        end
      end
    end
  end

  describe '#build_ios_app_guide_email' do
    subject { Notify.build_ios_app_guide_email(user.notification_email_or_default) }

    it 'sends to the right user' do
      expect(subject).to deliver_to(user.notification_email_or_default)
    end

    it 'has the correct subject and content' do
      message = Gitlab::Email::Message::BuildIosAppGuide.new
      cta_url = 'https://about.gitlab.com/blog/2019/03/06/ios-publishing-with-gitlab-and-fastlane/'
      cta2_url = 'https://www.youtube.com/watch?v=325FyJt7ZG8'

      aggregate_failures do
        is_expected.to have_subject(message.subject_line)
        is_expected.to have_body_text(message.title)
        is_expected.to have_body_text(message.body_line1)
        is_expected.to have_body_text(CGI.unescapeHTML(message.cta_link))
        is_expected.to have_body_text(CGI.unescapeHTML(message.cta2_link))
        is_expected.to have_body_text(cta_url)
        is_expected.to have_body_text(cta2_url)
      end
    end
  end
end