summaryrefslogtreecommitdiff
path: root/spec/views/notify/pipeline_failed_email.html.haml_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/views/notify/pipeline_failed_email.html.haml_spec.rb')
-rw-r--r--spec/views/notify/pipeline_failed_email.html.haml_spec.rb64
1 files changed, 40 insertions, 24 deletions
diff --git a/spec/views/notify/pipeline_failed_email.html.haml_spec.rb b/spec/views/notify/pipeline_failed_email.html.haml_spec.rb
index b821b015c97..a540a53c91d 100644
--- a/spec/views/notify/pipeline_failed_email.html.haml_spec.rb
+++ b/spec/views/notify/pipeline_failed_email.html.haml_spec.rb
@@ -15,7 +15,7 @@ describe 'notify/pipeline_failed_email.html.haml' do
user: user,
ref: project.default_branch,
sha: project.commit.sha,
- status: :success)
+ status: :failed)
end
before do
@@ -24,35 +24,51 @@ describe 'notify/pipeline_failed_email.html.haml' do
assign(:merge_request, merge_request)
end
- context 'pipeline with user' do
- it 'renders the email correctly' do
- render
+ shared_examples_for 'renders the pipeline failed email correctly' do
+ context 'pipeline with user' do
+ it 'renders the email correctly' do
+ render
- expect(rendered).to have_content "Your pipeline has failed"
- expect(rendered).to have_content pipeline.project.name
- expect(rendered).to have_content pipeline.git_commit_message.truncate(50).gsub(/\s+/, ' ')
- expect(rendered).to have_content pipeline.commit.author_name
- expect(rendered).to have_content "##{pipeline.id}"
- expect(rendered).to have_content pipeline.user.name
+ expect(rendered).to have_content "Your pipeline has failed"
+ expect(rendered).to have_content pipeline.project.name
+ expect(rendered).to have_content pipeline.git_commit_message.truncate(50).gsub(/\s+/, ' ')
+ expect(rendered).to have_content pipeline.commit.author_name
+ expect(rendered).to have_content "##{pipeline.id}"
+ expect(rendered).to have_content pipeline.user.name
+ expect(rendered).to have_content build.name
+ end
+
+ it_behaves_like 'correct pipeline information for pipelines for merge requests'
end
- it_behaves_like 'correct pipeline information for pipelines for merge requests'
- end
+ context 'pipeline without user' do
+ before do
+ pipeline.update_attribute(:user, nil)
+ end
- context 'pipeline without user' do
- before do
- pipeline.update_attribute(:user, nil)
+ it 'renders the email correctly' do
+ render
+
+ expect(rendered).to have_content "Your pipeline has failed"
+ expect(rendered).to have_content pipeline.project.name
+ expect(rendered).to have_content pipeline.git_commit_message.truncate(50).gsub(/\s+/, ' ')
+ expect(rendered).to have_content pipeline.commit.author_name
+ expect(rendered).to have_content "##{pipeline.id}"
+ expect(rendered).to have_content "by API"
+ expect(rendered).to have_content build.name
+ end
end
+ end
- it 'renders the email correctly' do
- render
+ context 'when the pipeline contains a failed job' do
+ let!(:build) { create(:ci_build, :failed, pipeline: pipeline, project: pipeline.project) }
- expect(rendered).to have_content "Your pipeline has failed"
- expect(rendered).to have_content pipeline.project.name
- expect(rendered).to have_content pipeline.git_commit_message.truncate(50).gsub(/\s+/, ' ')
- expect(rendered).to have_content pipeline.commit.author_name
- expect(rendered).to have_content "##{pipeline.id}"
- expect(rendered).to have_content "by API"
- end
+ it_behaves_like 'renders the pipeline failed email correctly'
+ end
+
+ context 'when the latest failed job is a bridge job' do
+ let!(:build) { create(:ci_bridge, status: :failed, pipeline: pipeline, project: pipeline.project) }
+
+ it_behaves_like 'renders the pipeline failed email correctly'
end
end