Skip to content

Commit ec7f4e2

Browse files
committed
(CONT-773) Rubocop Auto Fixes 6-10
- Lint/SymbolConversion - RSpec/BeNil - RSpec/EmptyLineAfterExample - RSpec/EmptyLineAfterExampleGroup - RSpec/EmptyLineAfterHook
1 parent a460982 commit ec7f4e2

24 files changed

+100
-83
lines changed

.rubocop_todo.yml

-69
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,6 @@ Lint/ConstantDefinitionInBlock:
2121
- 'spec/defines/source_compat_spec.rb'
2222
- 'spec/defines/source_spec.rb'
2323

24-
# Offense count: 6
25-
# This cop supports safe autocorrection (--autocorrect).
26-
# Configuration parameters: EnforcedStyle.
27-
# SupportedStyles: strict, consistent
28-
Lint/SymbolConversion:
29-
Exclude:
30-
- 'spec/classes/apt_update_spec.rb'
31-
3224
# Offense count: 6
3325
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
3426
Metrics/AbcSize:
@@ -68,21 +60,6 @@ RSpec/BeEq:
6860
- 'spec/unit/facter/apt_reboot_required_spec.rb'
6961
- 'spec/unit/puppet/type/apt_key_spec.rb'
7062

71-
# Offense count: 8
72-
# This cop supports safe autocorrection (--autocorrect).
73-
# Configuration parameters: EnforcedStyle.
74-
# SupportedStyles: be, be_nil
75-
RSpec/BeNil:
76-
Exclude:
77-
- 'spec/unit/facter/apt_dist_package_security_updates_spec.rb'
78-
- 'spec/unit/facter/apt_dist_package_updates_spec.rb'
79-
- 'spec/unit/facter/apt_dist_security_updates_spec.rb'
80-
- 'spec/unit/facter/apt_dist_updates_spec.rb'
81-
- 'spec/unit/facter/apt_package_security_updates_spec.rb'
82-
- 'spec/unit/facter/apt_package_updates_spec.rb'
83-
- 'spec/unit/facter/apt_security_updates_spec.rb'
84-
- 'spec/unit/facter/apt_updates_spec.rb'
85-
8663
# Offense count: 6
8764
# Configuration parameters: Prefixes, AllowedPatterns.
8865
# Prefixes: when, with, without
@@ -97,52 +74,6 @@ RSpec/ContextWording:
9774
RSpec/DescribeClass:
9875
Enabled: false
9976

100-
# Offense count: 23
101-
# This cop supports safe autocorrection (--autocorrect).
102-
# Configuration parameters: AllowConsecutiveOneLiners.
103-
RSpec/EmptyLineAfterExample:
104-
Exclude:
105-
- 'spec/acceptance/apt_key_provider_spec.rb'
106-
- 'spec/acceptance/apt_spec.rb'
107-
- 'spec/classes/apt_spec.rb'
108-
- 'spec/defines/key_compat_spec.rb'
109-
- 'spec/defines/key_spec.rb'
110-
- 'spec/defines/pin_spec.rb'
111-
- 'spec/defines/ppa_spec.rb'
112-
- 'spec/defines/source_spec.rb'
113-
114-
# Offense count: 39
115-
# This cop supports safe autocorrection (--autocorrect).
116-
RSpec/EmptyLineAfterExampleGroup:
117-
Exclude:
118-
- 'spec/acceptance/apt_key_provider_spec.rb'
119-
- 'spec/acceptance/init_task_spec.rb'
120-
- 'spec/classes/apt_backports_spec.rb'
121-
- 'spec/classes/apt_spec.rb'
122-
- 'spec/classes/apt_update_spec.rb'
123-
- 'spec/defines/key_compat_spec.rb'
124-
- 'spec/defines/key_spec.rb'
125-
- 'spec/defines/source_spec.rb'
126-
127-
# Offense count: 24
128-
# This cop supports safe autocorrection (--autocorrect).
129-
# Configuration parameters: AllowConsecutiveOneLiners.
130-
RSpec/EmptyLineAfterHook:
131-
Exclude:
132-
- 'spec/acceptance/apt_key_provider_spec.rb'
133-
- 'spec/unit/facter/apt_dist_has_updates_spec.rb'
134-
- 'spec/unit/facter/apt_dist_package_security_updates_spec.rb'
135-
- 'spec/unit/facter/apt_dist_package_updates_spec.rb'
136-
- 'spec/unit/facter/apt_dist_security_updates_spec.rb'
137-
- 'spec/unit/facter/apt_dist_updates_spec.rb'
138-
- 'spec/unit/facter/apt_has_updates_spec.rb'
139-
- 'spec/unit/facter/apt_package_security_updates_spec.rb'
140-
- 'spec/unit/facter/apt_package_updates_spec.rb'
141-
- 'spec/unit/facter/apt_reboot_required_spec.rb'
142-
- 'spec/unit/facter/apt_security_updates_spec.rb'
143-
- 'spec/unit/facter/apt_updates_spec.rb'
144-
- 'spec/unit/puppet/provider/apt_key_spec.rb'
145-
14677
# Offense count: 13
14778
# Configuration parameters: CountAsOne.
14879
RSpec/ExampleLength:

spec/acceptance/apt_key_provider_spec.rb

+4
Original file line numberDiff line numberDiff line change
@@ -669,6 +669,7 @@ def apply_manifest_twice(manifest_pp)
669669
it 'add an apt_key resource' do
670670
apply_manifest_twice(ensure_present_pp)
671671
end
672+
672673
it 'remove the apt_key resource' do
673674
apply_manifest_twice(ensure_absent_pp)
674675
end
@@ -855,6 +856,7 @@ def apply_manifest_twice(manifest_pp)
855856
after(:each) do
856857
run_shell('rm /tmp/fake-key.gpg')
857858
end
859+
858860
it 'fails' do
859861
apply_manifest(path_bogus_content_pp, expect_failures: true) do |r|
860862
expect(r.stderr).to match(%r{no valid OpenPGP data found})
@@ -897,13 +899,15 @@ def apply_manifest_twice(manifest_pp)
897899
apply_manifest(refresh_del_key_pp)
898900
apply_manifest(refresh_pp, catch_failures: true)
899901
end
902+
900903
context 'when refresh => true' do
901904
it 'updates an expired key' do
902905
apply_manifest(refresh_true_pp)
903906
# Check key has been updated to new version
904907
run_shell(PUPPETLABS_EXP_CHECK_COMMAND.to_s)
905908
end
906909
end
910+
907911
context 'when refresh => false' do
908912
it 'does not replace an expired key' do
909913
apply_manifest(refresh_false_pp)

spec/acceptance/apt_spec.rb

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class { 'apt':
4545
apply_manifest(everything_everything_pp, catch_failures: true)
4646
end
4747
end
48+
4849
it 'stills work' do
4950
run_shell('apt-get update')
5051
run_shell('apt-get -y --force-yes upgrade')

spec/acceptance/init_task_spec.rb

+3
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,21 @@
1010
expect(result.stdout).to contain(%r{Reading package lists})
1111
end
1212
end
13+
1314
describe 'upgrade' do
1415
it 'upgrades packages' do
1516
result = run_bolt_task('apt', 'action' => 'upgrade')
1617
expect(result.stdout).to contain(%r{\d+ upgraded, \d+ newly installed, \d+ to remove and \d+ not upgraded})
1718
end
1819
end
20+
1921
describe 'dist-upgrade' do
2022
it 'dist-upgrades packages' do
2123
result = run_bolt_task('apt', 'action' => 'dist-upgrade')
2224
expect(result.stdout).to contain(%r{\d+ upgraded, \d+ newly installed, \d+ to remove and \d+ not upgraded})
2325
end
2426
end
27+
2528
describe 'autoremove' do
2629
it 'autoremoves obsolete packages' do
2730
result = run_bolt_task('apt', 'action' => 'autoremove')

spec/classes/apt_backports_spec.rb

+13
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
pin: { 'priority' => 200, 'release' => 'stretch-backports' })
3232
}
3333
end
34+
3435
context 'with defaults on ubuntu' do
3536
let(:facts) do
3637
{
@@ -57,6 +58,7 @@
5758
pin: { 'priority' => 200, 'release' => 'bionac-backports' })
5859
}
5960
end
61+
6062
context 'with everything set' do
6163
let(:facts) do
6264
{
@@ -92,6 +94,7 @@
9294
pin: { 'priority' => 90, 'release' => 'vivid' })
9395
}
9496
end
97+
9598
context 'when set things with hashes' do
9699
let(:facts) do
97100
{
@@ -126,6 +129,7 @@
126129
}
127130
end
128131
end
132+
129133
describe 'mint tests' do
130134
let(:facts) do
131135
{
@@ -162,6 +166,7 @@
162166
pin: { 'priority' => 200, 'release' => 'trusty-backports' })
163167
}
164168
end
169+
165170
context 'with missing location' do
166171
let(:params) do
167172
{
@@ -175,6 +180,7 @@
175180
is_expected.to raise_error(Puppet::Error, %r{If not on Debian or Ubuntu, you must explicitly pass location, release, repos, and key})
176181
end
177182
end
183+
178184
context 'with missing release' do
179185
let(:params) do
180186
{
@@ -188,6 +194,7 @@
188194
is_expected.to raise_error(Puppet::Error, %r{If not on Debian or Ubuntu, you must explicitly pass location, release, repos, and key})
189195
end
190196
end
197+
191198
context 'with missing repos' do
192199
let(:params) do
193200
{
@@ -201,6 +208,7 @@
201208
is_expected.to raise_error(Puppet::Error, %r{If not on Debian or Ubuntu, you must explicitly pass location, release, repos, and key})
202209
end
203210
end
211+
204212
context 'with missing key' do
205213
let(:params) do
206214
{
@@ -215,6 +223,7 @@
215223
end
216224
end
217225
end
226+
218227
describe 'validation' do
219228
let(:facts) do
220229
{
@@ -244,6 +253,7 @@
244253
is_expected.to raise_error(Puppet::Error, %r{expects a})
245254
end
246255
end
256+
247257
context 'with invalid release' do
248258
let(:params) do
249259
{
@@ -255,6 +265,7 @@
255265
is_expected.to raise_error(Puppet::Error, %r{expects a})
256266
end
257267
end
268+
258269
context 'with invalid repos' do
259270
let(:params) do
260271
{
@@ -266,6 +277,7 @@
266277
is_expected.to raise_error(Puppet::Error, %r{expects a})
267278
end
268279
end
280+
269281
context 'with invalid key' do
270282
let(:params) do
271283
{
@@ -277,6 +289,7 @@
277289
is_expected.to raise_error(Puppet::Error, %r{expects a})
278290
end
279291
end
292+
280293
context 'with invalid pin' do
281294
let(:params) do
282295
{

spec/classes/apt_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@
214214
%r{Acquire::https::proxy "https://localhost:8080/";},
215215
)
216216
}
217+
217218
it {
218219
is_expected.to contain_apt__setting('conf-proxy').with(priority: '01').with_content(
219220
%r{Acquire::http::proxy "http://localhost:8080/";},
@@ -232,6 +233,7 @@
232233
}
233234
end
234235
end
236+
235237
context 'with lots of non-defaults' do
236238
let :params do
237239
{

spec/classes/apt_update_spec.rb

+10-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
id: 'Debian',
2525
},
2626
},
27-
'apt_update_last_success': factval,
27+
apt_update_last_success: factval,
2828
}
2929
end
3030
let(:pre_condition) do
@@ -61,6 +61,7 @@
6161
is_expected.to contain_exec('apt_update').with('refreshonly' => false)
6262
end
6363
end
64+
6465
context 'and Exec[apt_update] refreshonly is overridden to true and has recent run' do
6566
let(:facts) do
6667
{
@@ -76,7 +77,7 @@
7677
id: 'Debian',
7778
},
7879
},
79-
'apt_update_last_success': Time.now.to_i,
80+
apt_update_last_success: Time.now.to_i,
8081
}
8182
end
8283
let(:pre_condition) do
@@ -92,6 +93,7 @@
9293
end
9394
end
9495
end
96+
9597
context "when apt::update['frequency']='reluctantly'" do
9698
{
9799
'a recent run' => Time.now.to_i,
@@ -113,7 +115,7 @@
113115
id: 'Debian',
114116
},
115117
},
116-
'apt_update_last_success': factval,
118+
apt_update_last_success: factval,
117119
}
118120
end
119121
let(:pre_condition) { "class{ '::apt': update => {'frequency' => 'reluctantly' },}" }
@@ -149,6 +151,7 @@
149151
end
150152
end
151153
end
154+
152155
['daily', 'weekly'].each do |update_frequency|
153156
context "when apt::update['frequency'] has the value of #{update_frequency}" do
154157
{ 'we are due for a run' => 1_406_660_561, 'the update-success-stamp file does not exist' => -1 }.each_pair do |desc, factval|
@@ -167,7 +170,7 @@
167170
id: 'Debian',
168171
},
169172
},
170-
'apt_update_last_success': factval,
173+
apt_update_last_success: factval,
171174
}
172175
end
173176
let(:pre_condition) { "class{ '::apt': update => {'frequency' => '#{update_frequency}',} }" }
@@ -193,7 +196,7 @@
193196
id: 'Debian',
194197
},
195198
},
196-
'apt_update_last_success': Time.now.to_i,
199+
apt_update_last_success: Time.now.to_i,
197200
}
198201
end
199202
let(:pre_condition) { "class{ '::apt': update => {'frequency' => '#{update_frequency}',} }" }
@@ -203,6 +206,7 @@
203206
is_expected.to contain_exec('apt_update').with('refreshonly' => true)
204207
end
205208
end
209+
206210
context 'when $apt_update_last_success is nil' do
207211
let(:facts) do
208212
{
@@ -218,7 +222,7 @@
218222
id: 'Debian',
219223
},
220224
},
221-
'apt_update_last_success': nil,
225+
apt_update_last_success: nil,
222226
}
223227
end
224228
let(:pre_condition) { "class{ '::apt': update => {'frequency' => '#{update_frequency}',} }" }

0 commit comments

Comments
 (0)