Skip to content

Commit 1dd675a

Browse files
committed
Add the FrozenStrings magic comment
1 parent 3db62b7 commit 1dd675a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+144
-29
lines changed

lib/facter/mysql_server_id.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
def mysql_id_get
24
# Convert the existing mac to an integer
35
macval = Facter.value(:macaddress).delete(':').to_i(16)

lib/facter/mysql_version.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
Facter.add('mysql_version') do
24
confine { Facter::Core::Execution.which('mysql') }
35
setcode do

lib/facter/mysqld_version.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
Facter.add('mysqld_version') do
24
confine { Facter::Core::Execution.which('mysqld') }
35
setcode do

lib/puppet/functions/mysql/normalise_and_deepmerge.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
# @summary Recursively merges two or more hashes together, normalises keys with differing use of dashesh and underscores,
24
# then returns the resulting hash.
35
#

lib/puppet/functions/mysql/password.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'digest/sha1'
24
# @summary
35
# Hash a string as mysql's "PASSWORD()" function would do it

lib/puppet/functions/mysql/strip_hash.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
# @summary
24
# When given a hash this function strips out all blank entries.
35
#

lib/puppet/functions/mysql_password.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
# @summary DEPRECATED. Use the namespaced function [`mysql::password`](#mysqlpassword) instead.
24
Puppet::Functions.create_function(:mysql_password) do
35
# @param password

lib/puppet/provider/mysql.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
# Puppet provider for mysql
24
class Puppet::Provider::Mysql < Puppet::Provider
35
# Without initvars commands won't work.

lib/puppet/provider/mysql_database/mysql.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'mysql'))
24
Puppet::Type.type(:mysql_database).provide(:mysql, parent: Puppet::Provider::Mysql) do
35
desc 'Manages MySQL databases.'

lib/puppet/provider/mysql_datadir/mysql.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'mysql'))
24
Puppet::Type.type(:mysql_datadir).provide(:mysql, parent: Puppet::Provider::Mysql) do
35
desc 'manage data directories for mysql instances'

lib/puppet/provider/mysql_grant/mysql.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'mysql'))
24
Puppet::Type.type(:mysql_grant).provide(:mysql, parent: Puppet::Provider::Mysql) do
35
desc 'Set grants for users in MySQL.'

lib/puppet/provider/mysql_login_path/inifile.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# encoding: UTF-8
2+
# frozen_string_literal: true
23

34
# See: https://github.com/puppetlabs/puppet/blob/main/lib/puppet/util/inifile.rb
45
# This class represents the INI file and can be used to parse, modify,

lib/puppet/provider/mysql_login_path/sensitive.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
# A Puppet Language type that makes the Sensitive Type comparable
24
#
35
class Puppet::Provider::MysqlLoginPath::Sensitive < Puppet::Pops::Types::PSensitiveType::Sensitive

lib/puppet/provider/mysql_plugin/mysql.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'mysql'))
24
Puppet::Type.type(:mysql_plugin).provide(:mysql, parent: Puppet::Provider::Mysql) do
35
desc 'Manages MySQL plugins.'

lib/puppet/provider/mysql_user/mysql.rb

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'mysql'))
24
Puppet::Type.type(:mysql_user).provide(:mysql, parent: Puppet::Provider::Mysql) do
35
desc 'manage users for a mysql database.'
@@ -12,7 +14,7 @@ def self.instances
1214
users.map do |name|
1315
if mysqld_version.nil?
1416
## Default ...
15-
# rubocop:disable Metrics/LineLength
17+
# rubocop:disable Layout/LineLength
1618
query = "SELECT MAX_USER_CONNECTIONS, MAX_CONNECTIONS, MAX_QUESTIONS, MAX_UPDATES, SSL_TYPE, SSL_CIPHER, X509_ISSUER, X509_SUBJECT, PASSWORD /*!50508 , PLUGIN */ FROM mysql.user WHERE CONCAT(user, '@', host) = '#{name}'"
1719
elsif newer_than('mysql' => '5.7.6', 'percona' => '5.7.6')
1820
query = "SELECT MAX_USER_CONNECTIONS, MAX_CONNECTIONS, MAX_QUESTIONS, MAX_UPDATES, SSL_TYPE, SSL_CIPHER, X509_ISSUER, X509_SUBJECT, AUTHENTICATION_STRING, PLUGIN FROM mysql.user WHERE CONCAT(user, '@', host) = '#{name}'"
@@ -35,7 +37,7 @@ def self.instances
3537
# https://jira.mariadb.org/browse/MDEV-16238 https://jira.mariadb.org/browse/MDEV-16774
3638
@password = @authentication_string
3739
end
38-
# rubocop:enable Metrics/LineLength
40+
# rubocop:enable Layout/LineLength
3941
new(name: name,
4042
ensure: :present,
4143
password_hash: @password,
@@ -91,13 +93,13 @@ def create
9193
@property_hash[:ensure] = :present
9294
@property_hash[:password_hash] = password_hash
9395
end
94-
# rubocop:disable Metrics/LineLength
96+
# rubocop:disable Layout/LineLength
9597
if newer_than('mysql' => '5.7.6', 'percona' => '5.7.6')
9698
self.class.mysql_caller("ALTER USER IF EXISTS '#{merged_name}' WITH MAX_USER_CONNECTIONS #{max_user_connections} MAX_CONNECTIONS_PER_HOUR #{max_connections_per_hour} MAX_QUERIES_PER_HOUR #{max_queries_per_hour} MAX_UPDATES_PER_HOUR #{max_updates_per_hour}", 'system')
9799
else
98100
self.class.mysql_caller("GRANT USAGE ON *.* TO '#{merged_name}' WITH MAX_USER_CONNECTIONS #{max_user_connections} MAX_CONNECTIONS_PER_HOUR #{max_connections_per_hour} MAX_QUERIES_PER_HOUR #{max_queries_per_hour} MAX_UPDATES_PER_HOUR #{max_updates_per_hour}", 'system')
99101
end
100-
# rubocop:enable Metrics/LineLength
102+
# rubocop:enable Layout/LineLength
101103
@property_hash[:max_user_connections] = max_user_connections
102104
@property_hash[:max_connections_per_hour] = max_connections_per_hour
103105
@property_hash[:max_queries_per_hour] = max_queries_per_hour

lib/puppet/type/mysql_database.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
Puppet::Type.newtype(:mysql_database) do
24
@doc = <<-PUPPET
35
@summary

lib/puppet/type/mysql_datadir.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
Puppet::Type.newtype(:mysql_datadir) do
24
@doc = <<-PUPPET
35
@summary

lib/puppet/type/mysql_grant.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
Puppet::Type.newtype(:mysql_grant) do
24
@doc = <<-PUPPET
35
@summary

lib/puppet/type/mysql_plugin.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
Puppet::Type.newtype(:mysql_plugin) do
24
@doc = <<-PUPPET
35
@summary

lib/puppet/type/mysql_user.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
# This has to be a separate type to enable collecting
24
Puppet::Type.newtype(:mysql_user) do
35
@doc = <<-PUPPET

spec/acceptance/mysql_backup_spec.rb

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper_acceptance'
24

35
describe 'mysql::server::backup class' do
@@ -136,7 +138,7 @@ class { 'mysql::server::backup':
136138
end
137139

138140
context 'with xtrabackup enabled' do
139-
context 'should work with no errors', if: ((os[:family] == 'debian' && os[:release].to_i >= 8) || (os[:family] == 'ubuntu' && os[:release] =~ %r{^16\.04|^18\.04}) || (os[:family] == 'redhat' && os[:release].to_i > 6)) do # rubocop:disable Metrics/LineLength
141+
context 'should work with no errors', if: ((os[:family] == 'debian' && os[:release].to_i >= 8) || (os[:family] == 'ubuntu' && os[:release] =~ %r{^16\.04|^18\.04}) || (os[:family] == 'redhat' && os[:release].to_i > 6)) do # rubocop:disable Layout/LineLength
140142
pp = <<-MANIFEST
141143
class { 'mysql::server': root_password => 'password' }
142144
mysql::db { [
@@ -215,7 +217,7 @@ class { 'mysql::server::backup':
215217
end
216218
end
217219

218-
describe 'xtrabackup.sh', if: Gem::Version.new(mysql_version) < Gem::Version.new('5.7.0') && ((os[:family] == 'debian' && os[:release].to_i >= 8) || (os[:family] == 'ubuntu' && os[:release] =~ %r{^16\.04|^18\.04}) || (os[:family] == 'redhat' && os[:release].to_i > 6)) do # rubocop:disable Metrics/LineLength
220+
describe 'xtrabackup.sh', if: Gem::Version.new(mysql_version) < Gem::Version.new('5.7.0') && ((os[:family] == 'debian' && os[:release].to_i >= 8) || (os[:family] == 'ubuntu' && os[:release] =~ %r{^16\.04|^18\.04}) || (os[:family] == 'redhat' && os[:release].to_i > 6)) do # rubocop:disable Layout/LineLength
219221
before(:all) do
220222
pre_run
221223
end
@@ -242,7 +244,7 @@ class { 'mysql::server::backup':
242244

243245
it 'runs xtrabackup.sh incremental backup with no errors' do
244246
run_shell('sleep 1')
245-
run_shell('/usr/local/sbin/xtrabackup.sh --incremental-basedir=/tmp/xtrabackups/$(date +%F)_full --target-dir=/tmp/xtrabackups/$(date +%F_%H-%M-%S) --backup 2>&1 | tee /tmp/xtrabackup_inc.log') do |r| # rubocop:disable Metrics/LineLength
247+
run_shell('/usr/local/sbin/xtrabackup.sh --incremental-basedir=/tmp/xtrabackups/$(date +%F)_full --target-dir=/tmp/xtrabackups/$(date +%F_%H-%M-%S) --backup 2>&1 | tee /tmp/xtrabackup_inc.log') do |r| # rubocop:disable Layout/LineLength
246248
expect(r.exit_code).to be_zero
247249
end
248250
end
@@ -265,7 +267,7 @@ class { 'mysql::server::backup':
265267
end
266268

267269
context 'with xtrabackup enabled and incremental backups disabled' do
268-
context 'should work with no errors', if: ((os[:family] == 'debian' && os[:release].to_i >= 8) || (os[:family] == 'ubuntu' && os[:release] =~ %r{^16\.04|^18\.04}) || (os[:family] == 'redhat' && os[:release].to_i > 6)) do # rubocop:disable Metrics/LineLength
270+
context 'should work with no errors', if: ((os[:family] == 'debian' && os[:release].to_i >= 8) || (os[:family] == 'ubuntu' && os[:release] =~ %r{^16\.04|^18\.04}) || (os[:family] == 'redhat' && os[:release].to_i > 6)) do # rubocop:disable Layout/LineLength
269271
pp = <<-MANIFEST
270272
class { 'mysql::server': root_password => 'password' }
271273
mysql::db { [
@@ -344,7 +346,7 @@ class { 'mysql::server::backup':
344346
end
345347
end
346348

347-
describe 'xtrabackup.sh', if: Gem::Version.new(mysql_version) < Gem::Version.new('5.7.0') && ((os[:family] == 'debian' && os[:release].to_i >= 8) || (os[:family] == 'ubuntu' && os[:release] =~ %r{^16\.04|^18\.04}) || (os[:family] == 'redhat' && os[:release].to_i > 6)) do # rubocop:disable Metrics/LineLength
349+
describe 'xtrabackup.sh', if: Gem::Version.new(mysql_version) < Gem::Version.new('5.7.0') && ((os[:family] == 'debian' && os[:release].to_i >= 8) || (os[:family] == 'ubuntu' && os[:release] =~ %r{^16\.04|^18\.04}) || (os[:family] == 'redhat' && os[:release].to_i > 6)) do # rubocop:disable Layout/LineLength
348350
before(:all) do
349351
pre_run
350352
end

spec/acceptance/mysql_db_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper_acceptance'
24

35
describe 'mysql::db define' do

spec/acceptance/mysql_mariadb_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper_acceptance'
24

35
describe 'mysql server class', if: ((os[:family] == 'debian' && os[:release].to_i > 8) || (os[:family] == 'redhat' && os[:release].to_i > 6)) do

spec/acceptance/mysql_server_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper_acceptance'
24

35
describe 'mysql class' do

spec/acceptance/mysql_task_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
# run a test task
24
require 'spec_helper_acceptance'
35

spec/acceptance/types/mysql_database_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper_acceptance'
24

35
describe 'mysql_database' do

spec/acceptance/types/mysql_grant_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper_acceptance'
24

35
describe 'mysql_grant' do

spec/acceptance/types/mysql_login_path_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper_acceptance'
24

35
mysql_version = '5.6'

spec/acceptance/types/mysql_plugin_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper_acceptance'
24

35
# Different operating systems (and therefore different versions/forks

spec/acceptance/types/mysql_user_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper_acceptance'
24

35
describe 'mysql_user' do

spec/classes/graceful_failures_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'mysql::server' do

spec/classes/mycnf_template_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'mysql::server' do

spec/classes/mysql_backup_mysqldump_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'mysql::backup::mysqldump' do

spec/classes/mysql_backup_xtrabackup_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'mysql::backup::xtrabackup' do

spec/classes/mysql_bindings_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'mysql::bindings' do

spec/classes/mysql_client_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'mysql::client' do

spec/classes/mysql_server_account_security_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'mysql::server::account_security' do

spec/classes/mysql_server_backup_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'mysql::server::backup' do

spec/classes/mysql_server_monitor_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24
describe 'mysql::server::monitor' do
35
on_supported_os.each do |os, facts|

spec/classes/mysql_server_mysqltuner_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'mysql::server::mysqltuner' do

spec/classes/mysql_server_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'mysql::server' do

spec/defines/mysql_db_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'mysql::db', type: :define do

spec/functions/mysql_normalise_and_deepmerge_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'mysql::normalise_and_deepmerge' do

spec/functions/mysql_password_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
shared_examples 'mysql::password function' do

spec/functions/mysql_strip_hash_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'mysql::strip_hash' do

spec/spec_helper_local.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'rspec-puppet-facts'
24
include RspecPuppetFacts
35

spec/unit/facter/mysql_server_id_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe Facter::Util::Fact.to_s do

spec/unit/facter/mysql_version_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe Facter::Util::Fact.to_s do

spec/unit/facter/mysqld_version_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe Facter::Util::Fact.to_s do

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe Puppet::Type.type(:mysql_database).provider(:mysql) do
@@ -28,14 +30,14 @@
2830
Puppet::Util.stubs(:which).with('mysql').returns('/usr/bin/mysql')
2931
File.stubs(:file?).with('/root/.my.cnf').returns(true)
3032
provider.class.stubs(:mysql_caller).with('show databases', 'regular').returns('new_database')
31-
provider.class.stubs(:mysql_caller).with(["show variables like '%_database'", 'new_database'], 'regular').returns("character_set_database latin1\ncollation_database latin1_swedish_ci\nskip_show_database OFF") # rubocop:disable Metrics/LineLength
33+
provider.class.stubs(:mysql_caller).with(["show variables like '%_database'", 'new_database'], 'regular').returns("character_set_database latin1\ncollation_database latin1_swedish_ci\nskip_show_database OFF") # rubocop:disable Layout/LineLength
3234
end
3335

3436
describe 'self.instances' do
3537
it 'returns an array of databases' do
3638
provider.class.stubs(:mysql_caller).with('show databases', 'regular').returns(raw_databases)
3739
raw_databases.each_line do |db|
38-
provider.class.stubs(:mysql_caller).with(["show variables like '%_database'", db.chomp], 'regular').returns("character_set_database latin1\ncollation_database latin1_swedish_ci\nskip_show_database OFF") # rubocop:disable Metrics/LineLength
40+
provider.class.stubs(:mysql_caller).with(["show variables like '%_database'", db.chomp], 'regular').returns("character_set_database latin1\ncollation_database latin1_swedish_ci\nskip_show_database OFF") # rubocop:disable Layout/LineLength
3941
end
4042
databases = provider.class.instances.map { |x| x.name }
4143
expect(parsed_databases).to match_array(databases)

0 commit comments

Comments
 (0)