summaryrefslogtreecommitdiff
path: root/spec/services/projects/propagate_service_spec.rb
blob: b8aa4de5bd17aae6ad580bc7298f921c0d70bd2f (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
require 'spec_helper'

describe Projects::PropagateService, services: true do
  describe '.propagate!' do
    let!(:service_template) do
      PushoverService.create(
        template: true,
        active: true,
        properties: {
          device: 'MyDevice',
          sound: 'mic',
          priority: 4,
          user_key: 'asdf',
          api_key: '123456789'
        })
    end

    let!(:project) { create(:empty_project) }

    it 'creates services for projects' do
      expect { described_class.propagate(service_template) }.
        to change { Service.count }.by(1)
    end

    it 'creates services for a project that has another service' do
      other_service = BambooService.create(
        template: true,
        active: true,
        properties: {
          bamboo_url: 'http://gitlab.com',
          username: 'mic',
          password: "password",
          build_key: 'build'
        }
      )

      Service.build_from_template(project.id, other_service).save!

      expect { described_class.propagate(service_template) }.
        to change { Service.count }.by(1)
    end

    it 'does not create the service if it exists already' do
      other_service = BambooService.create(
        template: true,
        active: true,
        properties: {
          bamboo_url: 'http://gitlab.com',
          username: 'mic',
          password: "password",
          build_key: 'build'
        }
      )

      Service.build_from_template(project.id, service_template).save!
      Service.build_from_template(project.id, other_service).save!

      expect { described_class.propagate(service_template) }.
        not_to change { Service.count }
    end

    it 'creates the service containing the template attributes' do
      described_class.propagate(service_template)

      service = Service.find_by(type: service_template.type, template: false)

      expect(service.properties).to eq(service_template.properties)
    end

    describe 'bulk update' do
      it 'creates services for all projects' do
        project_total = 5
        stub_const 'Projects::PropagateService::BATCH_SIZE', 3

        project_total.times { create(:empty_project) }

        expect { described_class.propagate(service_template) }.
          to change { Service.count }.by(project_total + 1)
      end
    end

    describe 'external tracker' do
      it 'updates the project external tracker' do
        service_template.update(category: 'issue_tracker', default: false)

        expect { described_class.propagate(service_template) }.
          to change { project.reload.has_external_issue_tracker }.to(true)
      end
    end

    describe 'external wiki' do
      it 'updates the project external tracker' do
        service_template.update(type: 'ExternalWikiService')

        expect { described_class.propagate(service_template) }.
          to change { project.reload.has_external_wiki }.to(true)
      end
    end
  end
end