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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/mailers/notify_spec.rb')
-rw-r--r--spec/mailers/notify_spec.rb39
1 files changed, 39 insertions, 0 deletions
diff --git a/spec/mailers/notify_spec.rb b/spec/mailers/notify_spec.rb
index 8ee88776107..ae956adf563 100644
--- a/spec/mailers/notify_spec.rb
+++ b/spec/mailers/notify_spec.rb
@@ -1609,6 +1609,32 @@ RSpec.describe Notify do
end
end
end
+
+ describe 'admin notification' do
+ let(:example_site_path) { root_path }
+ let(:user) { create(:user) }
+
+ subject { @email = described_class.send_admin_notification(user.id, 'Admin announcement', 'Text') }
+
+ it 'is sent as the author' do
+ sender = subject.header[:from].addrs[0]
+ expect(sender.display_name).to eq("GitLab")
+ expect(sender.address).to eq(gitlab_sender)
+ end
+
+ it 'is sent to recipient' do
+ is_expected.to deliver_to user.email
+ end
+
+ it 'has the correct subject' do
+ is_expected.to have_subject 'Admin announcement'
+ end
+
+ it 'includes unsubscribe link' do
+ unsubscribe_link = "http://localhost/unsubscribes/#{Base64.urlsafe_encode64(user.email)}"
+ is_expected.to have_body_text(unsubscribe_link)
+ end
+ end
end
describe 'confirmation if email changed' do
@@ -1969,6 +1995,19 @@ RSpec.describe Notify do
end
end
+ describe 'in product marketing', :mailer do
+ let_it_be(:group) { create(:group) }
+
+ let(:mail) { ActionMailer::Base.deliveries.last }
+
+ it 'does not raise error' do
+ described_class.in_product_marketing_email(user.id, group.id, :trial, 0).deliver
+
+ expect(mail.subject).to eq('Go farther with GitLab')
+ expect(mail.body.parts.first.to_s).to include('Start a GitLab Ultimate trial today in less than one minute, no credit card required.')
+ end
+ end
+
def expect_sender(user)
sender = subject.header[:from].addrs[0]
expect(sender.display_name).to eq("#{user.name} (@#{user.username})")