2015-09-10 09:20:06 +00:00
|
|
|
# encoding: utf-8
|
2015-10-06 16:55:44 +00:00
|
|
|
# author: Christoph Hartmann
|
|
|
|
# author: Dominik Richter
|
|
|
|
|
2015-09-10 09:20:06 +00:00
|
|
|
require 'helper'
|
|
|
|
|
2015-10-26 03:04:18 +00:00
|
|
|
describe 'Inspec::Resources::MysqlConf' do
|
2015-09-22 16:33:05 +00:00
|
|
|
it 'verify mysql.conf config parsing' do
|
2015-10-12 11:21:50 +00:00
|
|
|
resource = load_resource('mysql_conf', '/etc/mysql/my.cnf')
|
2015-09-22 16:33:05 +00:00
|
|
|
_(resource.client['port']).must_equal '3306'
|
|
|
|
_(resource.mysqld['user']).must_equal 'mysql'
|
|
|
|
_(resource.mysqld['key_buffer_size']).must_equal '16M'
|
2015-09-10 09:20:06 +00:00
|
|
|
end
|
|
|
|
end
|