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

account_validation_spec.rb « message « email « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03d9414b914d824b129eed07ec3529f269005cd1 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Email::Message::AccountValidation do
  let_it_be(:namespace) { create(:namespace) }
  let_it_be(:project) { create(:project, :repository, namespace: namespace) }
  let_it_be(:pipeline) { create(:ci_pipeline, project: project) }

  subject(:message) { described_class.new(pipeline) }

  it 'contains the correct message', :aggregate_failures do
    expect(message.subject_line).to eq 'Fix your pipelines by validating your account'
    expect(message.title).to eq "Looks like you’ll need to validate your account to use free pipeline minutes"
    expect(message.body_line1).to eq "In order to use free pipeline minutes on shared runners, you'll need to validate your account with a credit or debit card. If you prefer not to provide one, you can run pipelines by bringing your own runners and disabling shared runners for your project."
    expect(message.body_line2).to include(
      'This is required to discourage and reduce the abuse on GitLab infrastructure.',
      '<b>GitLab will not charge or store your card, it will only be used for validation.</b>',
      '<a href="https://about.gitlab.com/blog/2021/05/17/prevent-crypto-mining-abuse/">Learn more.</a>'
    )
    expect(message.cta_text).to eq 'Validate your account'
    expect(message.cta2_text).to eq "I'll bring my own runners"
    expect(message.logo_path).to eq 'mailers/in_product_marketing/verify-2.png'
    expect(message.unsubscribe).to include('%tag_unsubscribe_url%')
  end
end