mirror of
https://github.com/inspec/inspec
synced 2024-11-14 00:47:10 +00:00
15433e8661
* Not applicable if logic addition Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Changes from not applicable if to only applicable if Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Fix to enable placing only_applicable_if at any position in control and for keeping impact zero intact Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Doc change added for only_applicable_if Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Doc Review Signed-off-by: Deepa Kumaraswamy <dkumaras@progress.com> * Added generic examples that supports cross platform for testing Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Yet another build fix due to changes in test Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> Signed-off-by: Deepa Kumaraswamy <dkumaras@progress.com> Co-authored-by: Deepa Kumaraswamy <dkumaras@progress.com>
96 lines
3.8 KiB
Ruby
96 lines
3.8 KiB
Ruby
require "functional/helper"
|
|
|
|
describe "inspec exec with streaming progress bar reporter" do
|
|
include FunctionalHelper
|
|
|
|
parallelize_me!
|
|
|
|
it "can execute a simple file and validate the streaming progress bar schema" do
|
|
skip_windows!
|
|
|
|
out = inspec("exec " + example_control + " --reporter progress-bar --no-create-lockfile")
|
|
_(out.stderr).must_include "[100.00%]"
|
|
_(out.stderr).must_include "[38;5;41m"
|
|
_(out.stderr).wont_include "[38;5;9m"
|
|
assert_exit_code 0, out
|
|
end
|
|
|
|
it "can execute a simple file while using end of options after reporter streaming progress bar option" do
|
|
skip_windows!
|
|
|
|
out = inspec("exec --no-create-lockfile --reporter progress-bar -- " + example_control)
|
|
_(out.stderr).must_include "[100.00%]"
|
|
_(out.stderr).must_include "[38;5;41m"
|
|
_(out.stderr).wont_include "[38;5;9m"
|
|
assert_exit_code 0, out
|
|
end
|
|
|
|
it "can execute a profile with dependent profiles" do
|
|
profile = File.join(profile_path, "dependencies", "inheritance")
|
|
out = inspec("exec " + profile + " --reporter progress-bar --no-create-lockfile")
|
|
assert_exit_code 0, out
|
|
end
|
|
|
|
it "can execute a profile with --tags filters" do
|
|
profile = File.join(profile_path, "control-tags")
|
|
out = inspec("exec " + profile + " --tags tag1 --reporter progress-bar --no-create-lockfile")
|
|
_(out.stderr).must_include "[100.00%]"
|
|
_(out.stderr).must_include "[1/1]"
|
|
assert_exit_code 0, out
|
|
end
|
|
|
|
it "can execute a profile with --controls filters" do
|
|
out = inspec("exec " + File.join(profile_path, "controls-option-test") + " --no-create-lockfile --controls foo --reporter progress-bar")
|
|
_(out.stderr).must_include "[100.00%]"
|
|
_(out.stderr).must_include "[1/1]"
|
|
assert_exit_code 0, out
|
|
end
|
|
|
|
it "can execute multiple profiles" do
|
|
out = inspec("exec " + File.join(profile_path, "control-tags") + " " + File.join(profile_path, "controls-option-test") + " --no-create-lockfile --reporter progress-bar")
|
|
_(out.stderr).must_include "[100.00%]"
|
|
_(out.stderr).must_include "[10/10]"
|
|
assert_exit_code 100, out
|
|
end
|
|
|
|
it "can execute and print proper output when tests are failed" do
|
|
skip_windows!
|
|
|
|
out = inspec("exec " + File.join(profile_path, "control-tags") + " --tags tag18 --no-create-lockfile --reporter progress-bar")
|
|
_(out.stderr).must_include "[100.00%]"
|
|
_(out.stderr).must_include "[38;5;9m"
|
|
_(out.stderr).wont_include "[38;5;247m"
|
|
_(out.stderr).wont_include "[38;5;41m"
|
|
assert_exit_code 100, out
|
|
end
|
|
|
|
it "can execute and print proper output when tests are skipped" do
|
|
skip_windows!
|
|
|
|
out = inspec("exec " + File.join(profile_path, "skippy-controls") + " --no-create-lockfile --reporter progress-bar")
|
|
_(out.stderr).must_include "[100.00%]"
|
|
_(out.stderr).must_include "[38;5;247m"
|
|
_(out.stderr).wont_include "[38;5;41m"
|
|
_(out.stderr).wont_include "[38;5;9m"
|
|
assert_exit_code 101, out
|
|
end
|
|
|
|
it "shows enhanced_outcomes with enhanced_outcomes flag" do
|
|
skip_windows!
|
|
|
|
out = inspec("exec " + File.join(profile_path, "enhanced-outcomes-test") + " --no-create-lockfile --reporter progress-bar --enhanced-outcomes")
|
|
_(out.stderr).must_include "[ERROR] tmp-1.0.1"
|
|
_(out.stderr).must_include "[ERROR] tmp-1.0.2"
|
|
_(out.stderr).must_include "[N/A] tmp-2.0.1"
|
|
_(out.stderr).must_include "[N/A] tmp-2.0.2"
|
|
_(out.stderr).must_include "[N/R] tmp-3.0.1"
|
|
_(out.stderr).must_include "[N/R] tmp-3.0.2"
|
|
_(out.stderr).must_include "[N/R] tmp-3.0.2"
|
|
_(out.stderr).must_include "[FAILED] tmp-4.0"
|
|
_(out.stderr).must_include "[PASSED] tmp-5.0"
|
|
_(out.stderr).must_include "[N/A] tmp-7.0.1 No-op N/A control due to only_applicable_if condition: Some reason for N/A"
|
|
_(out.stderr).must_include "[PASSED] tmp-7.0.2"
|
|
assert_exit_code 100, out
|
|
end
|
|
|
|
end
|