Commit 4fc478a4 authored by Lin Jen-Shin's avatar Lin Jen-Shin
parent 5067d9d3
...@@ -10,7 +10,7 @@ describe SlackService::BuildMessage do ...@@ -10,7 +10,7 @@ describe SlackService::BuildMessage do
tag: false, tag: false,
project_name: 'project_name', project_name: 'project_name',
project_url: 'somewhere.com', project_url: 'example.gitlab.com',
commit: { commit: {
status: status, status: status,
...@@ -26,7 +26,7 @@ describe SlackService::BuildMessage do ...@@ -26,7 +26,7 @@ describe SlackService::BuildMessage do
let(:duration) { 10 } let(:duration) { 10 }
it 'returns a message with information about succeeded build' do it 'returns a message with information about succeeded build' do
message = '<somewhere.com|project_name>: Commit <somewhere.com/commit/97de212e80737a608d939f648d959671fb0a0142/builds|97de212e> of <somewhere.com/commits/develop|develop> branch by hacker passed in 10 seconds' message = '<example.gitlab.com|project_name>: Commit <example.gitlab.com/commit/97de212e80737a608d939f648d959671fb0a0142/builds|97de212e> of <example.gitlab.com/commits/develop|develop> branch by hacker passed in 10 seconds'
expect(subject.pretext).to be_empty expect(subject.pretext).to be_empty
expect(subject.fallback).to eq(message) expect(subject.fallback).to eq(message)
...@@ -40,7 +40,7 @@ describe SlackService::BuildMessage do ...@@ -40,7 +40,7 @@ describe SlackService::BuildMessage do
let(:duration) { 10 } let(:duration) { 10 }
it 'returns a message with information about failed build' do it 'returns a message with information about failed build' do
message = '<somewhere.com|project_name>: Commit <somewhere.com/commit/97de212e80737a608d939f648d959671fb0a0142/builds|97de212e> of <somewhere.com/commits/develop|develop> branch by hacker failed in 10 seconds' message = '<example.gitlab.com|project_name>: Commit <example.gitlab.com/commit/97de212e80737a608d939f648d959671fb0a0142/builds|97de212e> of <example.gitlab.com/commits/develop|develop> branch by hacker failed in 10 seconds'
expect(subject.pretext).to be_empty expect(subject.pretext).to be_empty
expect(subject.fallback).to eq(message) expect(subject.fallback).to eq(message)
...@@ -54,7 +54,7 @@ describe SlackService::BuildMessage do ...@@ -54,7 +54,7 @@ describe SlackService::BuildMessage do
let(:duration) { 1 } let(:duration) { 1 }
it 'returns seconds as singular when there is only one' do it 'returns seconds as singular when there is only one' do
message = '<somewhere.com|project_name>: Commit <somewhere.com/commit/97de212e80737a608d939f648d959671fb0a0142/builds|97de212e> of <somewhere.com/commits/develop|develop> branch by hacker failed in 1 second' message = '<example.gitlab.com|project_name>: Commit <example.gitlab.com/commit/97de212e80737a608d939f648d959671fb0a0142/builds|97de212e> of <example.gitlab.com/commits/develop|develop> branch by hacker failed in 1 second'
expect(subject.pretext).to be_empty expect(subject.pretext).to be_empty
expect(subject.fallback).to eq(message) expect(subject.fallback).to eq(message)
......
...@@ -14,7 +14,7 @@ describe SlackService::PipelineMessage do ...@@ -14,7 +14,7 @@ describe SlackService::PipelineMessage do
duration: duration duration: duration
}, },
project: { path_with_namespace: 'project_name', project: { path_with_namespace: 'project_name',
web_url: 'somewhere.com' }, web_url: 'example.gitlab.com' },
commit: { author_name: 'hacker' } commit: { author_name: 'hacker' }
} }
end end
...@@ -25,7 +25,7 @@ describe SlackService::PipelineMessage do ...@@ -25,7 +25,7 @@ describe SlackService::PipelineMessage do
let(:duration) { 10 } let(:duration) { 10 }
it 'returns a message with information about succeeded build' do it 'returns a message with information about succeeded build' do
message = '<somewhere.com|project_name>: Pipeline <somewhere.com/pipelines/123|97de212e> of <somewhere.com/commits/develop|develop> branch by hacker passed in 10 seconds' message = '<example.gitlab.com|project_name>: Pipeline <example.gitlab.com/pipelines/123|97de212e> of <example.gitlab.com/commits/develop|develop> branch by hacker passed in 10 seconds'
expect(subject.pretext).to be_empty expect(subject.pretext).to be_empty
expect(subject.fallback).to eq(message) expect(subject.fallback).to eq(message)
...@@ -39,7 +39,7 @@ describe SlackService::PipelineMessage do ...@@ -39,7 +39,7 @@ describe SlackService::PipelineMessage do
let(:duration) { 10 } let(:duration) { 10 }
it 'returns a message with information about failed build' do it 'returns a message with information about failed build' do
message = '<somewhere.com|project_name>: Pipeline <somewhere.com/pipelines/123|97de212e> of <somewhere.com/commits/develop|develop> branch by hacker failed in 10 seconds' message = '<example.gitlab.com|project_name>: Pipeline <example.gitlab.com/pipelines/123|97de212e> of <example.gitlab.com/commits/develop|develop> branch by hacker failed in 10 seconds'
expect(subject.pretext).to be_empty expect(subject.pretext).to be_empty
expect(subject.fallback).to eq(message) expect(subject.fallback).to eq(message)
...@@ -53,7 +53,7 @@ describe SlackService::PipelineMessage do ...@@ -53,7 +53,7 @@ describe SlackService::PipelineMessage do
let(:duration) { 1 } let(:duration) { 1 }
it 'returns seconds as singular when there is only one' do it 'returns seconds as singular when there is only one' do
message = '<somewhere.com|project_name>: Pipeline <somewhere.com/pipelines/123|97de212e> of <somewhere.com/commits/develop|develop> branch by hacker failed in 1 second' message = '<example.gitlab.com|project_name>: Pipeline <example.gitlab.com/pipelines/123|97de212e> of <example.gitlab.com/commits/develop|develop> branch by hacker failed in 1 second'
expect(subject.pretext).to be_empty expect(subject.pretext).to be_empty
expect(subject.fallback).to eq(message) expect(subject.fallback).to eq(message)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment