2015-07-15 14:33:39 +00:00
# encoding: utf-8
# copyright: 2015, Vulcano Security GmbH
2015-07-26 20:45:18 +00:00
# Usage example:
#
# audit = command('/sbin/auditctl -l').stdout
# options = {
2017-04-26 21:18:14 +00:00
# assignment_regex: /^\s*([^:]*?)\s*:\s*(.*?)\s*$/,
2015-07-26 20:45:18 +00:00
# multiple_values: true
# }
# describe parse_config(audit, options ) do
2018-03-22 12:25:45 +00:00
require 'utils/file_reader'
2016-03-08 18:06:55 +00:00
module Inspec::Resources
class PConfig < Inspec . resource ( 1 )
name 'parse_config'
2018-02-19 14:26:49 +00:00
supports platform : 'unix'
supports platform : 'windows'
2016-03-08 18:06:55 +00:00
desc 'Use the parse_config InSpec audit resource to test arbitrary configuration files.'
example "
output = command ( 'some-command' ) . stdout
describe parse_config ( output , { data_config_option : value } ) do
its ( 'setting' ) { should eq 1 }
end
2016-09-25 12:02:40 +00:00
output2 = command ( 'curl http://127.0.0.1/php_status' ) . stdout
# php status is in format 'key : value', and we do not allow for multiple values
options2 = {
2017-04-26 21:18:14 +00:00
assignment_regex : / ^ \ s*([^:]*?) \ s*: \ s*(.*?) \ s*$ / ,
2016-09-25 12:02:40 +00:00
multiple_values : false
}
describe parse_config ( output2 , options2 ) do
its ( 'pool' ) { should eq 'www' }
its ( 'process manager' ) { should eq process_manager }
end
# getting specific key from the output above, convert it to integer and then compare
# make sure 'listen queue' is below 100
describe parse_config ( output2 , options2 ) . params [ 'listen queue' ] . to_i do
it { should be < 100 }
end
2016-03-08 18:06:55 +00:00
"
2015-07-15 14:33:39 +00:00
2018-03-22 12:25:45 +00:00
include FileReader
2016-08-05 10:07:14 +00:00
attr_reader :content
2016-03-08 18:06:55 +00:00
def initialize ( content = nil , useropts = nil )
@opts = { }
@opts = useropts . dup unless useropts . nil?
@files_contents = { }
2015-07-26 20:45:18 +00:00
2016-03-08 18:06:55 +00:00
@content = content
2016-08-05 10:07:14 +00:00
read_params unless @content . nil?
2016-03-08 18:06:55 +00:00
end
2015-07-26 20:45:18 +00:00
2016-03-08 18:06:55 +00:00
def method_missing ( name )
2016-08-05 10:07:14 +00:00
read_params [ name . to_s ]
2016-03-08 18:06:55 +00:00
end
2015-07-15 14:33:39 +00:00
2016-08-05 10:07:14 +00:00
def params ( * opts )
opts . inject ( read_params ) do | res , nxt |
res . respond_to? ( :key ) ? res [ nxt ] : nil
end
end
def to_s
" Parse Config #{ @conf_path } "
end
private
2016-03-08 18:06:55 +00:00
def parse_file ( conf_path )
@conf_path = conf_path
2016-03-22 17:42:50 +00:00
@content = read_file ( conf_path ) . to_s
2016-03-08 18:06:55 +00:00
2016-08-05 10:07:14 +00:00
read_params
2015-07-26 20:45:18 +00:00
end
2016-03-08 18:06:55 +00:00
def read_file ( path )
2018-03-22 12:25:45 +00:00
@files_contents [ path ] || = read_file_content ( path )
2016-03-08 18:06:55 +00:00
end
2015-07-26 20:45:18 +00:00
2016-08-05 10:07:14 +00:00
def read_params
2016-08-05 10:29:34 +00:00
@params || = if content . nil?
{ }
else
SimpleConfig . new ( content , @opts ) . params
end
2016-03-08 18:06:55 +00:00
end
2015-07-15 14:33:39 +00:00
end
2015-10-12 11:01:58 +00:00
2016-03-08 18:06:55 +00:00
class PConfigFile < PConfig
name 'parse_config_file'
2018-02-23 21:57:59 +00:00
desc 'Use the parse_config_file InSpec resource to test arbitrary configuration files. It works identically to parse_config. Instead of using a command output, this resource works with files.'
2016-03-08 18:06:55 +00:00
example "
describe parse_config_file ( '/path/to/file' ) do
its ( 'setting' ) { should eq 1 }
end
"
2015-08-03 00:25:27 +00:00
2016-03-08 18:06:55 +00:00
def initialize ( path , opts = nil )
super ( nil , opts )
parse_file ( path )
2015-11-27 13:02:38 +00:00
end
2015-10-12 11:01:58 +00:00
2016-03-08 18:06:55 +00:00
def to_s
" Parse Config File #{ @conf_path } "
end
2015-10-12 11:01:58 +00:00
end
2015-08-03 00:25:27 +00:00
end