summaryrefslogtreecommitdiff
path: root/spec/services/pages_service_spec.rb
blob: aa63fe3a5c114756447f5232a16bc3d62128788a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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