BigW Consortium Gitlab

service_spec.rb 7.33 KB
Newer Older
1 2
require 'spec_helper'

3
describe Service do
4
  describe "Associations" do
5 6
    it { is_expected.to belong_to :project }
    it { is_expected.to have_one :service_hook }
7 8
  end

9
  describe 'Validations' do
10
    it { is_expected.to validate_presence_of(:type) }
11 12
  end

13
  describe "Test Button" do
14 15
    describe '#can_test?' do
      let(:service) { create(:service, project: project) }
16

17 18
      context 'when repository is not empty' do
        let(:project) { create(:project, :repository) }
19

20 21 22
        it 'returns true' do
          expect(service.can_test?).to be true
        end
23 24
      end

25
      context 'when repository is empty' do
26
        let(:project) { create(:project) }
27 28 29 30

        it 'returns true' do
          expect(service.can_test?).to be true
        end
31
      end
32
    end
33

34 35 36 37 38 39
    describe '#test' do
      let(:data) { 'test' }
      let(:service) { create(:service, project: project) }

      context 'when repository is not empty' do
        let(:project) { create(:project, :repository) }
40 41

        it 'test runs execute' do
42
          expect(service).to receive(:execute).with(data)
43

44
          service.test(data)
45 46
        end
      end
47

48
      context 'when repository is empty' do
49
        let(:project) { create(:project) }
50

51 52
        it 'test runs execute' do
          expect(service).to receive(:execute).with(data)
53

54 55
          service.test(data)
        end
56 57 58
      end
    end
  end
59 60 61

  describe "Template" do
    describe "for pushover service" do
62
      let!(:service_template) do
63 64 65 66 67 68 69 70 71
        PushoverService.create(
          template: true,
          properties: {
            device: 'MyDevice',
            sound: 'mic',
            priority: 4,
            api_key: '123456789'
          })
      end
72
      let(:project) { create(:project) }
73

74 75
      describe 'is prefilled for projects pushover service' do
        it "has all fields prefilled" do
76 77
          service = project.find_or_initialize_service('pushover')

78 79 80 81 82 83 84 85 86
          expect(service.template).to eq(false)
          expect(service.device).to eq('MyDevice')
          expect(service.sound).to eq('mic')
          expect(service.priority).to eq(4)
          expect(service.api_key).to eq('123456789')
        end
      end
    end
  end
87

88
  describe "{property}_changed?" do
89 90
    let(:service) do
      BambooService.create(
91
        project: create(:project),
92 93 94 95 96 97 98 99
        properties: {
          bamboo_url: 'http://gitlab.com',
          username: 'mic',
          password: "password"
        }
      )
    end

100
    it "returns false when the property has not been assigned a new value" do
101
      service.username = "key_changed"
102
      expect(service.bamboo_url_changed?).to be_falsy
103 104
    end

105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
    it "returns true when the property has been assigned a different value" do
      service.bamboo_url = "http://example.com"
      expect(service.bamboo_url_changed?).to be_truthy
    end

    it "returns true when the property has been assigned a different value twice" do
      service.bamboo_url = "http://example.com"
      service.bamboo_url = "http://example.com"
      expect(service.bamboo_url_changed?).to be_truthy
    end

    it "returns false when the property has been re-assigned the same value" do
      service.bamboo_url = 'http://gitlab.com'
      expect(service.bamboo_url_changed?).to be_falsy
    end

    it "returns false when the property has been assigned a new value then saved" do
      service.bamboo_url = 'http://example.com'
      service.save
      expect(service.bamboo_url_changed?).to be_falsy
    end
  end

  describe "{property}_touched?" do
    let(:service) do
      BambooService.create(
131
        project: create(:project),
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
        properties: {
          bamboo_url: 'http://gitlab.com',
          username: 'mic',
          password: "password"
        }
      )
    end

    it "returns false when the property has not been assigned a new value" do
      service.username = "key_changed"
      expect(service.bamboo_url_touched?).to be_falsy
    end

    it "returns true when the property has been assigned a different value" do
      service.bamboo_url = "http://example.com"
      expect(service.bamboo_url_touched?).to be_truthy
    end

    it "returns true when the property has been assigned a different value twice" do
      service.bamboo_url = "http://example.com"
      service.bamboo_url = "http://example.com"
      expect(service.bamboo_url_touched?).to be_truthy
    end

    it "returns true when the property has been re-assigned the same value" do
      service.bamboo_url = 'http://gitlab.com'
      expect(service.bamboo_url_touched?).to be_truthy
    end

    it "returns false when the property has been assigned a new value then saved" do
      service.bamboo_url = 'http://example.com'
      service.save
      expect(service.bamboo_url_changed?).to be_falsy
    end
  end

  describe "{property}_was" do
    let(:service) do
      BambooService.create(
171
        project: create(:project),
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
        properties: {
          bamboo_url: 'http://gitlab.com',
          username: 'mic',
          password: "password"
        }
      )
    end

    it "returns nil when the property has not been assigned a new value" do
      service.username = "key_changed"
      expect(service.bamboo_url_was).to be_nil
    end

    it "returns the previous value when the property has been assigned a different value" do
      service.bamboo_url = "http://example.com"
      expect(service.bamboo_url_was).to eq('http://gitlab.com')
    end

    it "returns initial value when the property has been re-assigned the same value" do
      service.bamboo_url = 'http://gitlab.com'
      expect(service.bamboo_url_was).to eq('http://gitlab.com')
    end

    it "returns initial value when the property has been assigned multiple values" do
      service.bamboo_url = "http://example.com"
      service.bamboo_url = "http://example2.com"
      expect(service.bamboo_url_was).to eq('http://gitlab.com')
    end

    it "returns nil when the property has been assigned a new value then saved" do
      service.bamboo_url = 'http://example.com'
      service.save
      expect(service.bamboo_url_was).to be_nil
205 206
    end
  end
207

208 209 210
  describe 'initialize service with no properties' do
    let(:service) do
      GitlabIssueTrackerService.create(
211
        project: create(:project),
212 213 214 215 216 217 218 219 220 221 222 223 224
        title: 'random title'
      )
    end

    it 'does not raise error' do
      expect { service }.not_to raise_error
    end

    it 'creates the properties' do
      expect(service.properties).to eq({ "title" => "random title" })
    end
  end

225
  describe "callbacks" do
226
    let(:project) { create(:project) }
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
    let!(:service) do
      RedmineService.new(
        project: project,
        active: true,
        properties: {
          project_url: 'http://redmine/projects/project_name_in_redmine',
          issues_url: "http://redmine/#{project.id}/project_name_in_redmine/:id",
          new_issue_url: 'http://redmine/projects/project_name_in_redmine/issues/new'
        }
      )
    end

    describe "on create" do
      it "updates the has_external_issue_tracker boolean" do
        expect do
          service.save!
243
        end.to change { service.project.has_external_issue_tracker }.from(false).to(true)
244 245 246 247 248 249 250 251 252 253 254 255 256
      end
    end

    describe "on update" do
      it "updates the has_external_issue_tracker boolean" do
        service.save!

        expect do
          service.update_attributes(active: false)
        end.to change { service.project.has_external_issue_tracker }.from(true).to(false)
      end
    end
  end
257
end