Fix acceptance tests from #641

This commit is contained in:
Colleen Murphy 2015-01-27 13:42:24 -08:00
parent 8dbe7c030d
commit 80236d1f3a

View file

@ -1,6 +1,38 @@
require 'spec_helper_acceptance'
# Different operating systems (and therefore different versions/forks
# of mysql) have varying levels of support for plugins and have
# different plugins available. Choose a plugin that works or don't try
# to test plugins if not available.
if fact('osfamily') =~ /RedHat/
if fact('operatingsystemrelease') =~ /^5\./
plugin = nil # Plugins not supported on mysql on RHEL 5
elsif fact('operatingsystemrelease') =~ /^6\./
plugin = 'example'
plugin_lib = 'ha_example.so'
elsif fact('operatingsystemrelease') =~ /^7\./
plugin = 'pam'
plugin_lib = 'auth_pam.so'
end
elsif fact('osfamily') =~ /Debian/
if fact('operatingsystem') =~ /Debian/
if fact('operatingsystemrelease') =~ /^6\./
# Only available plugin is innodb which is already loaded and not unload- or reload-able
plugin = nil
elsif fact('operatingsystemrelease') =~ /^7\./
plugin = 'example'
plugin_lib = 'ha_example.so'
end
elsif fact('operatingsystem') =~ /Ubuntu/
plugin = 'example'
plugin_lib = 'ha_example.so'
end
elsif fact('osfamily') =~ /Suse/
plugin = nil # Plugin library path is broken on Suse http://lists.opensuse.org/opensuse-bugs/2013-08/msg01123.html
end
describe 'mysql_plugin' do
if plugin # if plugins are supported
describe 'setup' do
it 'should work with no errors' do
pp = <<-EOS
@ -14,9 +46,9 @@ describe 'mysql_plugin' do
describe 'load plugin' do
it 'should work without errors' do
pp = <<-EOS
mysql_plugin { 'auth_socket':
mysql_plugin { #{plugin}:
ensure => present,
soname => 'auth_socket.so',
soname => '#{plugin_lib}',
}
EOS
@ -24,11 +56,12 @@ describe 'mysql_plugin' do
end
it 'should find the plugin' do
shell("mysql -NBe \"select plugin_name from information_schema.plugins where plugin_name='auth_socket'\"") do |r|
expect(r.stdout).to match(/^auth_socket$/)
shell("mysql -NBe \"select plugin_name from information_schema.plugins where plugin_name='#{plugin}'\"") do |r|
expect(r.stdout).to match(/^#{plugin}$/i)
expect(r.stderr).to be_empty
end
end
end
end
end