blob: 7583d4ee41251342e3cae219d68df5f4cae14a63 (
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
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
|
require "spec_helper"
describe License do
let(:gl_license) { build(:gitlab_license) }
let(:license) { build(:license, data: gl_license.export) }
describe "Validation" do
describe "Valid license" do
context "when the license is provided" do
it "is valid" do
expect(license).to be_valid
end
end
context "when no license is provided" do
before do
license.data = nil
end
it "is invalid" do
expect(license).not_to be_valid
end
end
end
describe "Historical active user count" do
let(:active_user_count) { User.active.count + 10 }
let(:date) { License.current.starts_at }
let!(:historical_data) { HistoricalData.create!(date: date, active_user_count: active_user_count) }
context "when there is no active user count restriction" do
it "is valid" do
expect(license).to be_valid
end
end
context "when the active user count restriction is exceeded" do
before do
gl_license.restrictions = { active_user_count: active_user_count - 1 }
end
context "when the license started" do
it "is invalid" do
expect(license).not_to be_valid
end
end
context "after the license started" do
let(:date) { Date.today }
it "is valid" do
expect(license).to be_valid
end
end
context "in the year before the license started" do
let(:date) { License.current.starts_at - 6.months }
it "is invalid" do
expect(license).not_to be_valid
end
end
context "earlier than a year before the license started" do
let(:date) { License.current.starts_at - 2.years }
it "is valid" do
expect(license).to be_valid
end
end
end
context "when the active user count restriction is not exceeded" do
before do
gl_license.restrictions = { active_user_count: active_user_count + 1 }
end
it "is valid" do
expect(license).to be_valid
end
end
end
describe "Not expired" do
context "when the license doesn't expire" do
it "is valid" do
expect(license).to be_valid
end
end
context "when the license has expired" do
before do
gl_license.expires_at = Date.yesterday
end
it "is valid" do
expect(license).not_to be_valid
end
end
context "when the license has yet to expire" do
before do
gl_license.expires_at = Date.tomorrow
end
it "is valid" do
expect(license).to be_valid
end
end
end
end
describe "Class methods" do
let!(:license) { License.last }
before do
License.reset_current
allow(License).to receive(:last).and_return(license)
end
describe ".current" do
context "when there is no license" do
let!(:license) { nil }
it "returns nil" do
expect(License.current).to be_nil
end
end
context "when the license is invalid" do
before do
allow(license).to receive(:valid?).and_return(false)
end
it "returns nil" do
expect(License.current).to be_nil
end
end
context "when the license is valid" do
it "returns the license" do
expect(License.current)
end
end
end
describe ".block_changes?" do
context "when there is no current license" do
before do
allow(License).to receive(:current).and_return(nil)
end
it "returns true" do
expect(License.block_changes?).to be_truthy
end
end
context "when the current license is set to block changes" do
before do
allow(license).to receive(:block_changes?).and_return(true)
end
it "returns true" do
expect(License.block_changes?).to be_truthy
end
end
context "when the current license doesn't block changes" do
it "returns false" do
expect(License.block_changes?).to be_falsey
end
end
end
end
describe "#license" do
context "when no data is provided" do
before do
license.data = nil
end
it "returns nil" do
expect(license.license).to be_nil
end
end
context "when corrupt license data is provided" do
before do
license.data = "whatever"
end
it "returns nil" do
expect(license.license).to be_nil
end
end
context "when valid license data is provided" do
it "returns the license" do
expect(license.license).not_to be_nil
end
end
end
end
|