Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Mariadb 11.x #1645

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions lib/facter/mysql_version.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# frozen_string_literal: true

Facter.add('mysql_version') do
confine { Facter::Core::Execution.which('mysql') }
setcode do
mysql_ver = Facter::Core::Execution.execute('mysql --version')
mysql_ver = if Facter::Core::Execution.which('mysql')
Facter::Core::Execution.execute('mysql --version')
elsif Facter::Core::Execution.which('mariadb')
Facter::Core::Execution.execute('mariadb --version')
end
mysql_ver.match(%r{\d+\.\d+\.\d+})[0] if mysql_ver
end
end
8 changes: 5 additions & 3 deletions lib/facter/mysqld_version.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# frozen_string_literal: true

Facter.add('mysqld_version') do
confine { Facter::Core::Execution.which('mysqld') || Facter::Core::Execution.which('/usr/libexec/mysqld') }
setcode do
# Add /usr/libexec to PATH to find mysqld command
Facter::Core::Execution.execute('env PATH=$PATH:/usr/libexec mysqld --no-defaults -V 2>/dev/null')
if Facter::Core::Execution.which('mysqld') || Facter::Core::Execution.which('/usr/libexec/mysqld')
Facter::Core::Execution.execute('env PATH=$PATH:/usr/libexec mysqld --no-defaults -V 2>/dev/null')
elsif Facter::Core::Execution.which('mariadbd')
Facter::Core::Execution.execute('mariadbd --no-defaults -V 2>/dev/null')
end
end
end
34 changes: 29 additions & 5 deletions lib/puppet/provider/mysql.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,35 @@ class Puppet::Provider::Mysql < Puppet::Provider
].join(':')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm looking at this horrible hack above and wonder if it should use the proper API. Something like this probably works:

has_command(:mysql_client, 'mysql') do
  environment PATH: path, LD_LIBRARY_PATH: ld_library_path
end

You can also use is_optional according to https://github.com/puppetlabs/puppet/blob/e227c27540975c25aa22d533a52424a9d2fc886a/lib/puppet/provider.rb#L177-L214.


# rubocop:disable Style/HashSyntax
commands :mysql_raw => 'mysql'
commands :mysqld => 'mysqld'
commands :mysqladmin => 'mysqladmin'
commands :mysql_client => 'mysql'
commands :mariadb_client => 'mariadb'
Comment on lines +41 to +42
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should probably use optional_commands to be explicit that they're not expected to be present (or the has_command definition together with is_optional).

commands :mysqld_service => 'mysqld'
commands :mariadbd_service => 'mariadbd'
commands :mysql_admin => 'mysqladmin'
commands :mariadb_admin => 'mariadb-admin'
# rubocop:enable Style/HashSyntax

def self.mysql_raw(*args)
if newer_than('mariadb' => '11.0.0') && mysqld_version_string.scan(%r{mariadb}i)
return mariadb_client(*args)
end
mysql_client(*args)
Comment on lines +49 to +53
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, I think we can assume Ruby 2.7 and use argument forwarding.

Once you've defined them as optional, I wonder if this works:

Suggested change
def self.mysql_raw(*args)
if newer_than('mariadb' => '11.0.0') && mysqld_version_string.scan(%r{mariadb}i)
return mariadb_client(*args)
end
mysql_client(*args)
def self.mysql_raw(...)
command(:mariadb_client) ? mariadb_client(...) : mysql_client(...)

end

def self.mysqld(*args)
if newer_than('mariadb' => '11.0.0') && mysqld_version_string.scan(%r{mariadb}i)
return mariadb_client(*args)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this really correct? With mysqld I'd have expected some server command

end
mysqld_service(*args)
end

def self.mysqladmin(*args)
if newer_than('mariadb' => '11.0.0') && mysqld_version_string.scan(%r{mariadb}i)
return mariadb_client(*args)
end
mysql_admin(*args)
end

# Optional defaults file
def self.defaults_file
"--defaults-extra-file=#{Facter.value(:root_home)}/.my.cnf" if File.file?("#{Facter.value(:root_home)}/.my.cnf")
Expand All @@ -62,8 +86,8 @@ def mysqld_type
def self.mysqld_version_string
# As the possibility of the mysqld being remote we need to allow the version string to be overridden,
# this can be done by facter.value as seen below. In the case that it has not been set and the facter
# value is nil we use the mysql -v command to ensure we report the correct version of mysql for later use cases.
@mysqld_version_string ||= Facter.value(:mysqld_version) || mysqld('-V')
# value is nil we use an empty string so that default client/service are used.
@mysqld_version_string ||= Facter.value(:mysqld_version) || ''
end

def mysqld_version_string
Expand Down
17 changes: 15 additions & 2 deletions spec/unit/facter/mysql_version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,28 @@
end

describe 'mysql_version' do
context 'with value' do
context 'with mysql' do
before :each do
allow(Facter::Core::Execution).to receive(:which).and_return('fake_mysql_path')
allow(Facter::Core::Execution).to receive(:which).with('mysql').and_return('fake_mysql_path')
allow(Facter::Core::Execution).to receive(:which).with('mariadb').and_return(false)
allow(Facter::Core::Execution).to receive(:execute).with('mysql --version').and_return('mysql Ver 14.12 Distrib 5.0.95, for redhat-linux-gnu (x86_64) using readline 5.1')
end

it {
expect(Facter.fact(:mysql_version).value).to eq('5.0.95')
}
end

context 'with mariadb' do
before :each do
allow(Facter::Core::Execution).to receive(:which).with('mysql').and_return(false)
allow(Facter::Core::Execution).to receive(:which).with('mariadb').and_return('/usr/bin/mariadb')
allow(Facter::Core::Execution).to receive(:execute).with('mariadb --version').and_return('mariadb from 11.4.2-MariaDB, client 15.2 for debian-linux-gnu (x86_64) using EditLine wrapper')
end

it {
expect(Facter.fact(:mysql_version).value).to eq('11.4.2')
}
end
end
end
17 changes: 16 additions & 1 deletion spec/unit/facter/mysqld_version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
end

describe 'mysqld_version' do
context 'with value' do
context 'with mysqld' do
before :each do
allow(Facter::Core::Execution).to receive(:which).with('mysqld').and_return('/usr/sbin/mysqld')
allow(Facter::Core::Execution).to receive(:which).with('mariadbd').and_return(false)
allow(Facter::Core::Execution).to receive(:execute).with('env PATH=$PATH:/usr/libexec mysqld --no-defaults -V 2>/dev/null')
.and_return('mysqld Ver 5.5.49-37.9 for Linux on x86_64 (Percona Server (GPL), Release 37.9, Revision efa0073)')
end
Expand All @@ -19,5 +20,19 @@
expect(Facter.fact(:mysqld_version).value).to eq('mysqld Ver 5.5.49-37.9 for Linux on x86_64 (Percona Server (GPL), Release 37.9, Revision efa0073)')
}
end

context 'with mariadb' do
before :each do
allow(Facter::Core::Execution).to receive(:which).with('mysqld').and_return(false)
allow(Facter::Core::Execution).to receive(:which).with('/usr/libexec/mysqld').and_return(false)
allow(Facter::Core::Execution).to receive(:which).with('mariadbd').and_return('/usr/sbin/mariadbd')
allow(Facter::Core::Execution).to receive(:execute).with('mariadbd --no-defaults -V 2>/dev/null')
.and_return('mariadbd Ver 11.4.2-MariaDB-ubu2404 for debian-linux-gnu on x86_64 (mariadb.org binary distribution)')
end

it {
expect(Facter.fact(:mysqld_version).value).to eq('mariadbd Ver 11.4.2-MariaDB-ubu2404 for debian-linux-gnu on x86_64 (mariadb.org binary distribution)')
}
end
end
end
Loading