inspec/lib/resources/json.rb

90 lines
2.3 KiB
Ruby
Raw Normal View History

2015-09-21 07:51:00 +00:00
# encoding: utf-8
2015-10-06 16:55:44 +00:00
# author: Christoph Hartmann
# author: Dominik Richter
2015-09-21 07:51:00 +00:00
require 'utils/object_traversal'
module Inspec::Resources
class JsonConfig < Inspec.resource(1)
name 'json'
desc 'Use the json InSpec audit resource to test data in a JSON file.'
example "
describe json('policyfile.lock.json') do
2016-04-16 11:47:41 +00:00
its(['cookbook_locks','omnibus','version']) { should eq('2.2.0') }
end
describe json({ command: 'retrieve_data.py --json' }) do
its('state') { should eq('open') }
end
describe json({ content: '{\"item1\": { \"status\": \"available\" } }' }) do
its(['item1', 'status']) { should cmp 'available' }
end
"
2015-09-21 07:51:00 +00:00
include ObjectTraverser
# make params readable
attr_reader :params
2015-09-21 07:51:00 +00:00
def initialize(path)
@path = path
if path.is_a?(Hash)
if path.key?(:content)
@file_content = path[:content]
elsif path.key?(:command)
@command = inspec.command(path[:command])
@file_content = @command.stdout
end
else
@file = inspec.file(@path)
@file_content = @file.content
# check if file is available
if !@file.file?
skip_resource "Can't find file \"#{@conf_path}\""
return @params = {}
end
# check if file is readable
if @file_content.empty? && @file.size > 0
skip_resource "Can't read file \"#{@conf_path}\""
return @params = {}
end
end
@params = parse(@file_content)
end
def parse(content)
require 'json'
JSON.parse(content)
end
2015-09-21 07:51:00 +00:00
def value(key)
extract_value(key, @params)
end
2015-09-21 07:51:00 +00:00
# Shorthand to retrieve a parameter name via `#its`.
# Example: describe json('file') { its('paramX') { should eq 'Y' } }
#
# @param [String] name name of the field to retrieve
# @return [Object] the value stored at this position
def method_missing(*keys)
# catch bahavior of rspec its implementation
# @see https://github.com/rspec/rspec-its/blob/master/lib/rspec/its.rb#L110
keys.shift if keys.is_a?(Array) && keys[0] == :[]
value(keys)
end
2015-11-24 12:02:50 +00:00
def to_s
if @path.is_a?(Hash) && @path.key?(:content)
'Json content'
else
"Json #{@path}"
end
end
2015-09-21 07:51:00 +00:00
end
end