2019-06-11 22:24:35 +00:00
|
|
|
require "functional/helper"
|
2018-02-17 15:49:52 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "inspec supermarket" do
|
2018-02-17 15:49:52 +00:00
|
|
|
include FunctionalHelper
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "help" do
|
|
|
|
out = inspec("supermarket help")
|
2019-07-23 01:44:43 +00:00
|
|
|
|
2019-09-30 22:31:55 +00:00
|
|
|
_(out.stdout).must_include "inspec supermarket exec PROFILE"
|
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 0, out
|
2018-02-17 15:49:52 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "info" do
|
|
|
|
out = inspec("supermarket info dev-sec/ssh-baseline")
|
2019-07-23 01:44:43 +00:00
|
|
|
|
2019-09-30 22:31:55 +00:00
|
|
|
_(out.stdout).must_include "name: \e[0m ssh-baseline"
|
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 0, out
|
2018-02-17 15:49:52 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "supermarket exec" do
|
2018-11-08 17:00:14 +00:00
|
|
|
if is_windows?
|
2019-06-11 22:24:35 +00:00
|
|
|
out = inspec("supermarket exec dev-sec/windows-patch-baseline")
|
2018-11-08 17:00:14 +00:00
|
|
|
else
|
2019-06-11 22:24:35 +00:00
|
|
|
out = inspec("supermarket exec dev-sec/ssh-baseline")
|
2018-11-08 17:00:14 +00:00
|
|
|
end
|
2019-07-23 01:44:43 +00:00
|
|
|
|
2019-09-30 22:31:55 +00:00
|
|
|
_(out.stdout).must_include "Profile Summary"
|
|
|
|
_(out.stdout).must_include "Test Summary"
|
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 100, out
|
2018-02-17 15:49:52 +00:00
|
|
|
end
|
|
|
|
end
|