94545e58f3
Ports change from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/642
47 lines
1.1 KiB
Ruby
47 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 { build.name = 'pages' }
|
|
|
|
context 'on success' do
|
|
before { build.success }
|
|
|
|
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 { build.status = status }
|
|
|
|
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
|