Skip to content

Commit 7e7e15d

Browse files
committed
Add all safe auto corrects
1 parent 1dd675a commit 7e7e15d

File tree

10 files changed

+18
-19
lines changed

10 files changed

+18
-19
lines changed

lib/puppet/functions/mysql/normalise_and_deepmerge.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def normalise_and_deepmerge(*args)
4141

4242
def normalized?(hash, key)
4343
return true if hash.key?(key)
44-
return false unless key =~ %r{-|_}
44+
return false unless %r{-|_}.match?(key)
4545
other_key = key.include?('-') ? key.tr('-', '_') : key.tr('_', '-')
4646
return false unless hash.key?(other_key)
4747
hash[key] = hash.delete(other_key)

lib/puppet/functions/mysql/password.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
def password(password)
2020
return '' if password.empty?
21-
return password if password =~ %r{\*[A-F0-9]{40}$}
21+
return password if %r{\*[A-F0-9]{40}$}.match?(password)
2222
'*' + Digest::SHA1.hexdigest(Digest::SHA1.digest(password)).upcase
2323
end
2424
end

lib/puppet/provider/mysql.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def mysqld_version_string
7171
end
7272

7373
def self.mysqld_version
74-
# note: be prepared for '5.7.6-rc-log' etc results
74+
# NOTE: be prepared for '5.7.6-rc-log' etc results
7575
# versioncmp detects 5.7.6-log to be newer then 5.7.6
7676
# this is why we need the trimming.
7777
mysqld_version_string.scan(%r{\d+\.\d+\.\d+}).first unless mysqld_version_string.nil?

lib/puppet/provider/mysql_grant/mysql.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def self.instances
1919
# Default root user created by mysql_install_db on a host with fqdn
2020
# of myhost.mydomain.my: [email protected], when MySQL is started
2121
# with --skip-name-resolve.
22-
next if e.inspect =~ %r{There is no such grant defined for user}
22+
next if %r{There is no such grant defined for user}.match?(e.inspect)
2323
raise Puppet::Error, _('#mysql had an error -> %{inspect}') % { inspect: e.inspect }
2424
end
2525
# Once we have the list of grants generate entries for each.
@@ -46,7 +46,7 @@ def self.instances
4646
end
4747
end
4848
# Same here, but to remove OPTION leaving just GRANT.
49-
options = if rest =~ %r{WITH\sGRANT\sOPTION}
49+
options = if %r{WITH\sGRANT\sOPTION}.match?(rest)
5050
['GRANT']
5151
else
5252
['NONE']

lib/puppet/provider/mysql_login_path/inifile.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -600,8 +600,8 @@ def typecast(value)
600600
begin
601601
begin
602602
Integer(value)
603-
rescue
604-
Float(value)
603+
rescue
604+
Float(value)
605605
end
606606
rescue
607607
unescape_value(value)

lib/puppet/provider/mysql_login_path/mysql_login_path.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def get_password(context, uid, name)
7979
result = ''
8080
output = my_print_defaults_cmd(context, uid, '-s', name)
8181
output.split("\n").each do |line|
82-
if line =~ %r{\-\-password}
82+
if %r{\-\-password}.match?(line)
8383
result = line.sub(%r{\-\-password=}, '')
8484
end
8585
end

lib/puppet/provider/mysql_user/mysql.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def password_hash=(string)
164164
end
165165
self.class.mysql_caller(sql, 'system')
166166
elsif newer_than('mysql' => '5.7.6', 'percona' => '5.7.6', 'mariadb' => '10.2.0')
167-
raise ArgumentError, _('Only mysql_native_password (*ABCD...XXX) hashes are supported.') unless string =~ %r{^\*|^$}
167+
raise ArgumentError, _('Only mysql_native_password (*ABCD...XXX) hashes are supported.') unless %r{^\*|^$}.match?(string)
168168
self.class.mysql_caller("ALTER USER #{merged_name} IDENTIFIED WITH mysql_native_password AS '#{string}'", 'system')
169169
else
170170
self.class.mysql_caller("SET PASSWORD FOR #{merged_name} = '#{string}'", 'system')

lib/puppet/type/mysql_grant.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def initialize(*args)
1616
# 'ALL'. This can't be done in the munge in the property as that iterates
1717
# over the array and there's no way to replace the entire array before it's
1818
# returned to the provider.
19-
if self[:ensure] == :present && Array(self[:privileges]).count > 1 && self[:privileges].to_s.include?('ALL')
19+
if self[:ensure] == :present && Array(self[:privileges]).size > 1 && self[:privileges].to_s.include?('ALL')
2020
self[:privileges] = 'ALL'
2121
end
2222
# Sort the privileges array in order to ensure the comparision in the provider
@@ -31,12 +31,12 @@ def initialize(*args)
3131
else
3232
priv.strip.upcase
3333
end
34-
}.uniq.reject { |k| k == 'GRANT' || k == 'GRANT OPTION' }.sort!
34+
}.uniq.reject { |k| ['GRANT', 'GRANT OPTION'].include?(k) }.sort!
3535
end
3636
# rubocop:enable Style/MultilineBlockChain
3737
validate do
3838
raise(_('mysql_grant: `privileges` `parameter` is required.')) if self[:ensure] == :present && self[:privileges].nil?
39-
raise(_('mysql_grant: `privileges` `parameter`: PROXY can only be specified by itself.')) if Array(self[:privileges]).count > 1 && Array(self[:privileges]).include?('PROXY')
39+
raise(_('mysql_grant: `privileges` `parameter`: PROXY can only be specified by itself.')) if Array(self[:privileges]).size > 1 && Array(self[:privileges]).include?('PROXY')
4040
raise(_('mysql_grant: `table` `parameter` is required.')) if self[:ensure] == :present && self[:table].nil?
4141
raise(_('mysql_grant: `user` `parameter` is required.')) if self[:ensure] == :present && self[:user].nil?
4242
if self[:user] && self[:table]

spec/acceptance/types/mysql_plugin_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
end
1919
elsif os[:family] == 'debian'
2020
if os[:family] == 'ubuntu'
21-
if os[:release] =~ %r{^16\.04|^18\.04}
21+
if %r{^16\.04|^18\.04}.match?(os[:release])
2222
# On Xenial running 5.7.12, the example plugin does not appear to be available.
2323
plugin = 'validate_password'
2424
plugin_lib = 'validate_password.so'

spec/unit/puppet/provider/mysql_user/mysql_spec.rb

+5-6
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,7 @@
199199
it 'creates a user using IF NOT EXISTS' do
200200
provider.class.instance_variable_set(:@mysqld_version_string, '5.7.6')
201201

202-
provider.class.expects(:mysql_caller).with("CREATE USER IF NOT EXISTS 'joe'@'localhost' IDENTIFIED WITH 'mysql_native_password' AS '*6C8989366EAF75BB670AD8EA7A7FC1176A95CEF4'", 'system') # rubocop:disable Layout/LineLength
203-
provider.class.expects(:mysql_caller).with("ALTER USER IF EXISTS 'joe'@'localhost' WITH MAX_USER_CONNECTIONS 10 MAX_CONNECTIONS_PER_HOUR 10 MAX_QUERIES_PER_HOUR 10 MAX_UPDATES_PER_HOUR 10", 'system') # rubocop:disable Layout/LineLength
202+
provider.class.expects(:mysql_caller).with("CREATE USER IF NOT EXISTS 'joe'@'localhost' IDENTIFIED WITH 'mysql_native_password' AS '*6C8989366EAF75BB670AD8EA7A7FC1176A95CEF4'", 'system') provider.class.expects(:mysql_caller).with("ALTER USER IF EXISTS 'joe'@'localhost' WITH MAX_USER_CONNECTIONS 10 MAX_CONNECTIONS_PER_HOUR 10 MAX_QUERIES_PER_HOUR 10 MAX_UPDATES_PER_HOUR 10", 'system') # rubocop:disable Layout/LineLength
204203
provider.class.expects(:mysql_caller).with("ALTER USER 'joe'@'localhost' REQUIRE NONE", 'system')
205204
provider.expects(:exists?).returns(true)
206205
expect(provider.create).to be_truthy
@@ -292,7 +291,7 @@
292291
end
293292
it 'changes the hash MySQL >= 5.7.6' do
294293
provider.class.instance_variable_set(:@mysqld_version_string, mysql_version_string_hash['mysql-5.7.6'][:string])
295-
provider.class.expects(:mysql_caller).with("ALTER USER 'joe'@'localhost' IDENTIFIED WITH mysql_native_password AS '*6C8989366EAF75BB670AD8EA7A7FC1176A95CEF5'", 'system').returns('0') # rubocop:disable Layout/LineLength
294+
provider.class.expects(:mysql_caller).with("ALTER USER 'joe'@'localhost' IDENTIFIED WITH mysql_native_password AS '*6C8989366EAF75BB670AD8EA7A7FC1176A95CEF5'", 'system').returns('0')
296295

297296
provider.expects(:password_hash).returns('*6C8989366EAF75BB670AD8EA7A7FC1176A95CEF5')
298297
provider.password_hash = '*6C8989366EAF75BB670AD8EA7A7FC1176A95CEF5'
@@ -314,7 +313,7 @@
314313
it 'changes the hash to an ed25519 hash mariadb >= 10.2.0' do
315314
provider.class.instance_variable_set(:@mysqld_version_string, mysql_version_string_hash['mariadb-10.3.22'][:string])
316315
resource.stubs(:value).with(:plugin).returns('ed25519')
317-
provider.class.expects(:mysql_caller).with("ALTER USER 'joe'@'localhost' IDENTIFIED WITH ed25519 AS 'z0pjExBYbzbupUByZRrQvC6kRCcE8n/tC7kUdUD11fU'", 'system').returns('0') # rubocop:disable Layout/LineLength
316+
provider.class.expects(:mysql_caller).with("ALTER USER 'joe'@'localhost' IDENTIFIED WITH ed25519 AS 'z0pjExBYbzbupUByZRrQvC6kRCcE8n/tC7kUdUD11fU'", 'system').returns('0')
318317
provider.expects(:password_hash).returns('z0pjExBYbzbupUByZRrQvC6kRCcE8n/tC7kUdUD11fU')
319318
provider.password_hash = 'z0pjExBYbzbupUByZRrQvC6kRCcE8n/tC7kUdUD11fU'
320319
end
@@ -369,7 +368,7 @@
369368
context 'MySQL >= 5.7.6' do
370369
it 'changes the authentication plugin' do
371370
provider.class.instance_variable_set(:@mysqld_version_string, mysql_version_string_hash['mysql-5.7.6'][:string])
372-
provider.class.expects(:mysql_caller).with("ALTER USER 'joe'@'localhost' IDENTIFIED WITH 'mysql_native_password' AS '*6C8989366EAF75BB670AD8EA7A7FC1176A95CEF4'", 'system').returns('0') # rubocop:disable Layout/LineLength
371+
provider.class.expects(:mysql_caller).with("ALTER USER 'joe'@'localhost' IDENTIFIED WITH 'mysql_native_password' AS '*6C8989366EAF75BB670AD8EA7A7FC1176A95CEF4'", 'system').returns('0')
373372

374373
provider.expects(:plugin).returns('mysql_native_password')
375374
provider.plugin = 'mysql_native_password'
@@ -394,7 +393,7 @@
394393
provider.class.instance_variable_set(:@mysqld_version_string, mysql_version_string_hash['mariadb-10.3.22'][:string])
395394
resource.stubs('[]').with(:name).returns('joe@localhost')
396395
resource.stubs('[]').with(:password_hash).returns('z0pjExBYbzbupUByZRrQvC6kRCcE8n/tC7kUdUD11fU')
397-
provider.class.expects(:mysql_caller).with("ALTER USER 'joe'@'localhost' IDENTIFIED WITH 'ed25519' AS 'z0pjExBYbzbupUByZRrQvC6kRCcE8n/tC7kUdUD11fU'", 'system').returns('0') # rubocop:disable Layout/LineLength
396+
provider.class.expects(:mysql_caller).with("ALTER USER 'joe'@'localhost' IDENTIFIED WITH 'ed25519' AS 'z0pjExBYbzbupUByZRrQvC6kRCcE8n/tC7kUdUD11fU'", 'system').returns('0')
398397
provider.expects(:plugin).returns('ed25519')
399398
provider.plugin = 'ed25519'
400399
end

0 commit comments

Comments
 (0)