2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
require 'email_spec'
2020-07-28 23:09:34 +05:30
RSpec . describe Emails :: PagesDomains do
2018-03-17 18:26:18 +05:30
include EmailSpec :: Matchers
include_context 'gitlab email notification'
2020-04-08 14:13:33 +05:30
let_it_be ( :domain , reload : true ) { create ( :pages_domain , project : project ) }
let_it_be ( :user ) { project . creator }
2018-03-17 18:26:18 +05:30
shared_examples 'a pages domain email' do
2019-09-04 21:01:54 +05:30
let ( :recipient ) { user }
it_behaves_like 'an email sent to a user'
2018-03-17 18:26:18 +05:30
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like 'a user cannot unsubscribe through footer link'
it 'has the expected content' do
aggregate_failures do
is_expected . to have_subject ( email_subject )
is_expected . to have_body_text ( project . human_name )
is_expected . to have_body_text ( domain . domain )
is_expected . to have_body_text project_pages_domain_url ( project , domain )
end
end
end
2020-04-22 19:07:51 +05:30
shared_examples 'a pages domain verification email' do
it_behaves_like 'a pages domain email'
it 'has the expected content' do
is_expected . to have_body_text domain . url
is_expected . to have_body_text help_page_url ( 'user/project/pages/custom_domains_ssl_tls_certification/index.md' , anchor : link_anchor )
end
end
2019-07-31 22:56:46 +05:30
shared_examples 'notification about upcoming domain removal' do
context 'when domain is not scheduled for removal' do
it 'asks user to remove it' do
is_expected . to have_body_text 'please remove it'
end
end
context 'when domain is scheduled for removal' do
before do
domain . update! ( remove_at : 1 . week . from_now )
end
it 'notifies user that domain will be removed automatically' do
aggregate_failures do
is_expected . to have_body_text domain . remove_at . strftime ( '%F %T' )
is_expected . to have_body_text " it will be removed from your GitLab project "
end
end
end
end
2018-03-17 18:26:18 +05:30
describe '#pages_domain_enabled_email' do
let ( :email_subject ) { " #{ project . path } | GitLab Pages domain ' #{ domain . domain } ' has been enabled " }
2019-09-30 21:07:59 +05:30
let ( :link_anchor ) { 'steps' }
2018-03-17 18:26:18 +05:30
subject { Notify . pages_domain_enabled_email ( domain , user ) }
2020-04-22 19:07:51 +05:30
it_behaves_like 'a pages domain verification email'
2018-03-17 18:26:18 +05:30
it { is_expected . to have_body_text 'has been enabled' }
end
describe '#pages_domain_disabled_email' do
let ( :email_subject ) { " #{ project . path } | GitLab Pages domain ' #{ domain . domain } ' has been disabled " }
2019-09-30 21:07:59 +05:30
let ( :link_anchor ) { '4-verify-the-domains-ownership' }
2018-03-17 18:26:18 +05:30
subject { Notify . pages_domain_disabled_email ( domain , user ) }
2020-04-22 19:07:51 +05:30
it_behaves_like 'a pages domain verification email'
2018-03-17 18:26:18 +05:30
2019-07-31 22:56:46 +05:30
it_behaves_like 'notification about upcoming domain removal'
2018-03-17 18:26:18 +05:30
it { is_expected . to have_body_text 'has been disabled' }
end
describe '#pages_domain_verification_succeeded_email' do
let ( :email_subject ) { " #{ project . path } | Verification succeeded for GitLab Pages domain ' #{ domain . domain } ' " }
2019-09-30 21:07:59 +05:30
let ( :link_anchor ) { 'steps' }
2018-03-17 18:26:18 +05:30
subject { Notify . pages_domain_verification_succeeded_email ( domain , user ) }
2020-04-22 19:07:51 +05:30
it_behaves_like 'a pages domain verification email'
2018-03-17 18:26:18 +05:30
it { is_expected . to have_body_text 'successfully verified' }
end
describe '#pages_domain_verification_failed_email' do
let ( :email_subject ) { " #{ project . path } | ACTION REQUIRED: Verification failed for GitLab Pages domain ' #{ domain . domain } ' " }
2019-09-30 21:07:59 +05:30
let ( :link_anchor ) { 'steps' }
2018-03-17 18:26:18 +05:30
subject { Notify . pages_domain_verification_failed_email ( domain , user ) }
it_behaves_like 'a pages domain email'
2019-07-31 22:56:46 +05:30
it_behaves_like 'notification about upcoming domain removal'
2020-04-22 19:07:51 +05:30
end
describe '#pages_domain_auto_ssl_failed_email' do
let ( :email_subject ) { " #{ project . path } | ACTION REQUIRED: Something went wrong while obtaining the Let's Encrypt certificate for GitLab Pages domain ' #{ domain . domain } ' " }
subject { Notify . pages_domain_auto_ssl_failed_email ( domain , user ) }
it_behaves_like 'a pages domain email'
2019-07-31 22:56:46 +05:30
2020-04-22 19:07:51 +05:30
it 'says that we failed to obtain certificate' do
is_expected . to have_body_text " Something went wrong while obtaining the Let's Encrypt certificate. "
is_expected . to have_body_text help_page_url ( 'user/project/pages/custom_domains_ssl_tls_certification/lets_encrypt_integration.md' , anchor : 'troubleshooting' )
2018-03-17 18:26:18 +05:30
end
end
end