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