53 lines
1.1 KiB
Ruby
53 lines
1.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe PagesService, services: true do
|
|
let(:build) { create(:ci_build) }
|
|
let(:data) { Gitlab::DataBuilder::Build.build(build) }
|
|
let(:service) { PagesService.new(data) }
|
|
|
|
before do
|
|
allow(Gitlab.config.pages).to receive(:enabled).and_return(true)
|
|
end
|
|
|
|
context 'execute asynchronously for pages job' do
|
|
before do
|
|
build.name = 'pages'
|
|
end
|
|
|
|
context 'on success' do
|
|
before do
|
|
build.success
|
|
end
|
|
|
|
it 'executes worker' do
|
|
expect(PagesWorker).to receive(:perform_async)
|
|
service.execute
|
|
end
|
|
end
|
|
|
|
%w(pending running failed canceled).each do |status|
|
|
context "on #{status}" do
|
|
before do
|
|
build.status = status
|
|
end
|
|
|
|
it 'does not execute worker' do
|
|
expect(PagesWorker).not_to receive(:perform_async)
|
|
service.execute
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'for other jobs' do
|
|
before do
|
|
build.name = 'other job'
|
|
build.success
|
|
end
|
|
|
|
it 'does not execute worker' do
|
|
expect(PagesWorker).not_to receive(:perform_async)
|
|
service.execute
|
|
end
|
|
end
|
|
end
|