debian-mirror-gitlab/spec/views/notify/pipeline_failed_email.html.haml_spec.rb

75 lines
2.5 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
describe 'notify/pipeline_failed_email.html.haml' do
include Devise::Test::ControllerHelpers
2019-09-04 21:01:54 +05:30
let(:user) { create(:user, developer_projects: [project]) }
2017-09-10 17:25:29 +05:30
let(:project) { create(:project, :repository) }
2017-08-17 22:00:37 +05:30
let(:merge_request) { create(:merge_request, :simple, source_project: project) }
let(:pipeline) do
create(:ci_pipeline,
project: project,
user: user,
ref: project.default_branch,
sha: project.commit.sha,
2020-03-13 15:44:24 +05:30
status: :failed)
2017-08-17 22:00:37 +05:30
end
before do
assign(:project, project)
assign(:pipeline, pipeline)
assign(:merge_request, merge_request)
end
2020-03-13 15:44:24 +05:30
shared_examples_for 'renders the pipeline failed email correctly' do
context 'pipeline with user' do
it 'renders the email correctly' do
render
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
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'
2017-08-17 22:00:37 +05:30
end
2019-12-21 20:55:43 +05:30
2020-03-13 15:44:24 +05:30
context 'pipeline without user' do
before do
pipeline.update_attribute(:user, nil)
end
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
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
2017-08-17 22:00:37 +05:30
end
2020-03-13 15:44:24 +05:30
end
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
context 'when the pipeline contains a failed job' do
let!(:build) { create(:ci_build, :failed, pipeline: pipeline, project: pipeline.project) }
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
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'
2017-08-17 22:00:37 +05:30
end
end