2017-08-31 07:56:14 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
module Inspec::Resources
|
|
|
|
class XmlConfig < JsonConfig
|
|
|
|
name 'xml'
|
2018-02-19 14:26:49 +00:00
|
|
|
supports platform: 'unix'
|
|
|
|
supports platform: 'windows'
|
2017-08-31 07:56:14 +00:00
|
|
|
desc 'Use the xml InSpec resource to test configuration data in an XML file'
|
|
|
|
example "
|
|
|
|
describe xml('default.xml') do
|
|
|
|
its('key/sub_key') { should eq(['value']) }
|
2017-12-12 15:31:50 +00:00
|
|
|
its(['root/name.with.a.period']) { should cmp 'so_many_dots' }
|
2017-08-31 07:56:14 +00:00
|
|
|
end
|
|
|
|
"
|
|
|
|
|
|
|
|
def parse(content)
|
|
|
|
require 'rexml/document'
|
|
|
|
REXML::Document.new(content)
|
2017-11-27 16:13:02 +00:00
|
|
|
rescue => e
|
|
|
|
raise Inspec::Exceptions::ResourceFailed, "Unable to parse XML: #{e.message}"
|
2017-08-31 07:56:14 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def value(key)
|
2018-01-16 22:26:39 +00:00
|
|
|
output = []
|
|
|
|
REXML::XPath.each(@params, key.first.to_s) do |element|
|
|
|
|
if element.is_a?(REXML::Attribute)
|
|
|
|
output.push(element.to_s)
|
|
|
|
elsif element.is_a?(REXML::Element)
|
|
|
|
output.push(element.text)
|
|
|
|
else
|
|
|
|
raise Inspec::Exceptions::ResourceFailed, "Unknown XML object received (#{element.class}): #{element}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
output
|
2017-08-31 07:56:14 +00:00
|
|
|
end
|
|
|
|
|
2017-11-27 16:13:02 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
# used by JsonConfig to build up a full to_s method
|
|
|
|
# based on whether a file path, content, or command was supplied.
|
|
|
|
def resource_base_name
|
|
|
|
'XML'
|
2017-08-31 07:56:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|