summaryrefslogtreecommitdiff
path: root/spec/models/concerns/integrations/has_data_fields_spec.rb
blob: 54e0ac9c5a5878c26481b027ae11c4bb5ba8703f (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
101
102
103
104
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
131
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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Integrations::HasDataFields do
  let(:url) { 'http://url.com' }
  let(:username) { 'username_one' }
  let(:properties) do
    { url: url, username: username }
  end

  shared_examples 'data fields' do
    describe '#arg' do
      it 'returns an argument correctly' do
        expect(service.url).to eq(url)
      end
    end

    describe '{arg}_changed?' do
      it 'returns false when the property has not been assigned a new value' do
        service.username = 'new_username'
        service.validate
        expect(service.url_changed?).to be_falsy
      end

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

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

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

    describe '{arg}_touched?' do
      it 'returns false when the property has not been assigned a new value' do
        service.username = 'new_username'
        service.validate
        expect(service.url_changed?).to be_falsy
      end

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

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

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

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

    describe 'data_fields_present?' do
      it 'returns true from the issue tracker service' do
        expect(service.data_fields_present?).to be true
      end
    end
  end

  context 'when data are stored in data_fields' do
    let(:service) do
      create(:jira_service, url: url, username: username)
    end

    it_behaves_like 'data fields'

    describe '{arg}_was?' do
      it 'returns nil' do
        service.url = 'http://example.com'
        service.validate
        expect(service.url_was).to be_nil
      end
    end
  end

  context 'when service and data_fields are not persisted' do
    let(:service) do
      Integrations::Jira.new
    end

    describe 'data_fields_present?' do
      it 'returns true' do
        expect(service.data_fields_present?).to be true
      end
    end
  end

  context 'when data are stored in properties' do
    let(:service) { create(:jira_service, :without_properties_callback, properties: properties) }

    it_behaves_like 'data fields'

    describe '{arg}_was?' do
      it 'returns nil when the property has not been assigned a new value' do
        service.username = 'new_username'
        service.validate
        expect(service.url_was).to be_nil
      end

      it 'returns initial value when the property has been assigned a different value' do
        service.url = 'http://example.com'
        service.validate
        expect(service.url_was).to eq('http://url.com')
      end

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

  context 'when data are stored in both properties and data_fields' do
    let(:service) do
      create(:jira_service, :without_properties_callback, active: false, properties: properties).tap do |integration|
        create(:jira_tracker_data, properties.merge(integration: integration))
      end
    end

    it_behaves_like 'data fields'

    describe '{arg}_was?' do
      it 'returns nil' do
        service.url = 'http://example.com'
        service.validate
        expect(service.url_was).to be_nil
      end
    end
  end
end