42 lines
1.2 KiB
Ruby
42 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Emails::IdentityVerification do
|
|
include EmailSpec::Matchers
|
|
include_context 'gitlab email notification'
|
|
|
|
describe 'verification_instructions_email' do
|
|
let_it_be(:user) { build_stubbed(:user) }
|
|
let_it_be(:token) { '123456' }
|
|
|
|
subject do
|
|
Notify.verification_instructions_email(user.email, token: token)
|
|
end
|
|
|
|
it_behaves_like 'an email sent from GitLab'
|
|
|
|
it 'is sent to the user' do
|
|
is_expected.to deliver_to user.email
|
|
end
|
|
|
|
it 'has the correct subject' do
|
|
is_expected.to have_subject s_('IdentityVerification|Verify your identity')
|
|
end
|
|
|
|
it 'has the mailgun suppression bypass header' do
|
|
is_expected.to have_header 'X-Mailgun-Suppressions-Bypass', 'true'
|
|
end
|
|
|
|
it 'includes the token' do
|
|
is_expected.to have_body_text token
|
|
end
|
|
|
|
it 'includes the expiration time' do
|
|
expires_in_minutes = Users::EmailVerification::ValidateTokenService::TOKEN_VALID_FOR_MINUTES
|
|
|
|
is_expected.to have_body_text format(s_('IdentityVerification|Your verification code expires after '\
|
|
'%{expires_in_minutes} minutes.'), expires_in_minutes: expires_in_minutes)
|
|
end
|
|
end
|
|
end
|