2019-06-11 22:24:35 +00:00
|
|
|
require "functional/helper"
|
|
|
|
require "json-schema"
|
2016-06-14 12:41:45 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "inspec exec" do
|
2016-06-14 12:41:45 +00:00
|
|
|
include FunctionalHelper
|
|
|
|
|
2019-09-17 00:40:51 +00:00
|
|
|
parallelize_me!
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "can execute a profile with the mini json formatter and validate its schema" do
|
|
|
|
out = inspec("exec " + example_profile + " --reporter json-min --no-create-lockfile")
|
2017-03-14 15:50:10 +00:00
|
|
|
data = JSON.parse(out.stdout)
|
2019-06-11 22:24:35 +00:00
|
|
|
sout = inspec("schema exec-jsonmin")
|
2017-03-14 15:50:10 +00:00
|
|
|
schema = JSON.parse(sout.stdout)
|
2019-09-30 22:31:55 +00:00
|
|
|
_(JSON::Validator.validate(schema, data)).wont_equal false
|
2019-07-23 01:44:43 +00:00
|
|
|
|
2019-09-30 22:31:55 +00:00
|
|
|
_(out.stderr).must_equal ""
|
2019-07-23 01:44:43 +00:00
|
|
|
|
|
|
|
assert_exit_code 101, out
|
2016-06-14 12:41:45 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "can execute a simple file with the mini json formatter and validate its schema" do
|
|
|
|
out = inspec("exec " + example_control + " --reporter json-min --no-create-lockfile")
|
2017-03-14 15:50:10 +00:00
|
|
|
data = JSON.parse(out.stdout)
|
2019-06-11 22:24:35 +00:00
|
|
|
sout = inspec("schema exec-jsonmin")
|
2017-03-14 15:50:10 +00:00
|
|
|
schema = JSON.parse(sout.stdout)
|
2019-09-30 22:31:55 +00:00
|
|
|
_(JSON::Validator.validate(schema, data)).wont_equal false
|
2019-07-23 01:44:43 +00:00
|
|
|
|
2019-09-30 22:31:55 +00:00
|
|
|
_(out.stderr).must_equal ""
|
2019-07-23 01:44:43 +00:00
|
|
|
|
2019-07-25 01:59:01 +00:00
|
|
|
skip_windows!
|
2019-07-23 01:44:43 +00:00
|
|
|
assert_exit_code 0, out
|
2016-06-14 12:41:45 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "does not contain any dupilcate results with describe.one" do
|
2018-02-08 09:06:58 +00:00
|
|
|
out = inspec("shell -c 'describe.one do describe 1 do it { should cmp 2 } end end' --reporter=json-min")
|
2017-06-06 20:39:10 +00:00
|
|
|
data = JSON.parse(out.stdout)
|
2019-09-30 22:31:55 +00:00
|
|
|
_(data["controls"].length).must_equal 1
|
|
|
|
_(data["controls"][0]["message"]).must_equal "\nexpected: 2\n got: 1\n\n(compared using `cmp` matcher)\n"
|
2019-07-23 01:44:43 +00:00
|
|
|
|
2019-09-30 22:31:55 +00:00
|
|
|
_(out.stderr).must_equal ""
|
2019-07-23 01:44:43 +00:00
|
|
|
|
|
|
|
assert_exit_code 100, out
|
2017-06-06 20:39:10 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "execute a profile with mini json formatting" do
|
|
|
|
let(:controls) { json["controls"] }
|
|
|
|
let(:ex1) { controls.find { |x| x["id"] == "tmp-1.0" } }
|
|
|
|
let(:ex2) { controls.find { |x| x["id"] =~ /generated/ } }
|
2019-10-09 07:08:28 +00:00
|
|
|
let(:ex3) { controls.find { |x| x["id"] == "example-1.0" } }
|
2016-06-14 12:41:45 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "must have 5 examples" do
|
2019-09-30 22:31:55 +00:00
|
|
|
_(json["controls"].length).must_equal 5
|
2016-06-14 12:41:45 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "has an id" do
|
2019-09-30 22:31:55 +00:00
|
|
|
_(controls.find { |ex| !ex.key? "id" }).must_be :nil?
|
2016-06-14 12:41:45 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "has a profile_id" do
|
2019-09-30 22:31:55 +00:00
|
|
|
_(controls.find { |ex| !ex.key? "profile_id" }).must_be :nil?
|
2016-06-14 12:41:45 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "has a code_desc" do
|
2019-11-06 22:40:00 +00:00
|
|
|
_(ex1["code_desc"]).must_equal "File / should be directory"
|
2019-09-30 22:31:55 +00:00
|
|
|
_(controls.find { |ex| !ex.key? "code_desc" }).must_be :nil?
|
2016-06-14 12:41:45 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "has a status" do
|
2019-07-25 01:59:01 +00:00
|
|
|
skip_windows!
|
2019-09-30 22:31:55 +00:00
|
|
|
_(ex1["status"]).must_equal "passed"
|
|
|
|
_(ex3["status"]).must_equal "skipped"
|
2016-06-14 12:41:45 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "has a skip_message" do
|
2019-09-30 22:31:55 +00:00
|
|
|
_(ex1["skip_message"]).must_be :nil?
|
2019-10-09 07:08:28 +00:00
|
|
|
_(ex3["skip_message"]).must_equal "Can't find file `/tmp/example/config.yaml`"
|
2016-06-14 12:41:45 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|