mirror of
https://github.com/inspec/inspec
synced 2024-11-10 23:24:18 +00:00
209948d3fd
Signed-off-by: Nikita Mathur <nikita.mathur@chef.io>
258 lines
7.8 KiB
Ruby
258 lines
7.8 KiB
Ruby
require "functional/helper"
|
|
|
|
# NOTE: Trailing spaces are intentional and *required* in this file.
|
|
|
|
# Strategy: use a fixture CLI plugin that has
|
|
# various commands that exercise the UI
|
|
|
|
# The unit tests are very thorough, so we don't test low-level things here
|
|
|
|
module VisibleSpaces
|
|
def show_spaces(str)
|
|
str
|
|
.tr(" ", "S")
|
|
.tr("\n", "N")
|
|
.b
|
|
end
|
|
end
|
|
|
|
describe "InSpec UI behavior" do
|
|
include PluginFunctionalHelper
|
|
include VisibleSpaces
|
|
|
|
parallelize_me!
|
|
|
|
let(:plugin_path) { File.join(mock_path, "plugins", "inspec-test-ui", "lib", "inspec-test-ui") }
|
|
let(:run_result) { run_inspec_with_plugin("#{pre_opts} testui #{feature} #{post_opts}", plugin_path: plugin_path, json: false) }
|
|
let(:pre_opts) { "" }
|
|
let(:post_opts) { "" }
|
|
|
|
describe "with default options" do
|
|
|
|
describe "headline" do
|
|
let(:feature) { "headline" }
|
|
it "has correct output" do
|
|
expected = <<-EOT
|
|
|
|
───────────────────────────────── \e[1m\e[37mBig News!\e[0m ───────────────────────────────── \n
|
|
EOT
|
|
|
|
_(show_spaces(run_result.stdout)).must_equal show_spaces(expected)
|
|
|
|
assert_exit_code 0, run_result
|
|
end
|
|
end
|
|
|
|
describe "table" do
|
|
let(:feature) { "table" }
|
|
it "has correct output" do
|
|
expected = <<~EOT
|
|
┌──────────────────────┬──────────┬───────────┐
|
|
│\e[1m\e[37m Band \e[0m│\e[1m\e[37m Coolness \e[0m│\e[1m\e[37m Nerd Cred \e[0m│
|
|
├──────────────────────┼──────────┼───────────┤
|
|
│ They Might Be Giants │ Low │ Very High │
|
|
│ Led Zep │ High │ Low │
|
|
│ Talking Heads │ Moderate │ High │
|
|
└──────────────────────┴──────────┴───────────┘
|
|
EOT
|
|
|
|
_(show_spaces(run_result.stdout)).must_equal show_spaces(expected)
|
|
|
|
assert_exit_code 0, run_result
|
|
end
|
|
end
|
|
|
|
describe "warning" do
|
|
let(:feature) { "warning" }
|
|
it "has correct output" do
|
|
expected = <<~EOT
|
|
\e[1m\e[33mWARNING:\e[0m Things will be OK in the end
|
|
EOT
|
|
|
|
_(show_spaces(run_result.stdout)).must_equal show_spaces(expected)
|
|
|
|
assert_exit_code 0, run_result
|
|
end
|
|
end
|
|
|
|
describe "error" do
|
|
let(:feature) { "error" }
|
|
it "has correct output" do
|
|
expected = <<~EOT
|
|
\e[1m\e[38;5;9mERROR:\e[0m Burned down, fell over, and then sank into the swamp.
|
|
EOT
|
|
|
|
_(show_spaces(run_result.stdout)).must_equal show_spaces(expected)
|
|
|
|
assert_exit_code 0, run_result
|
|
end
|
|
end
|
|
|
|
describe "list_item" do
|
|
let(:feature) { "list_item" }
|
|
it "has correct output" do
|
|
expected = <<-EOT
|
|
\e[1m\e[37m•\e[0m TODO: make more lists
|
|
EOT
|
|
|
|
_(show_spaces(run_result.stdout)).must_equal show_spaces(expected)
|
|
|
|
assert_exit_code 0, run_result
|
|
end
|
|
end
|
|
|
|
describe "detect command" do
|
|
let(:result) { inspec("detect") }
|
|
|
|
it "has a colorful output" do
|
|
_(result.stdout).must_include("\e[")
|
|
assert_exit_code 0, result
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "with --no-color option" do
|
|
# Note: the pre_opts position does not work for any class_option
|
|
let(:post_opts) { "--no-color" }
|
|
describe "everything" do
|
|
let(:feature) { "everything" }
|
|
|
|
it "has correct output" do
|
|
# TODO: trailing whitespace required in tests. Hidden via "--- \n"
|
|
expected = <<~EOT
|
|
|
|
--------------------------------- Big News! --------------------------------- \n
|
|
+----------------------+----------+-----------+
|
|
| Band | Coolness | Nerd Cred |
|
|
+----------------------+----------+-----------+
|
|
| They Might Be Giants | Low | Very High |
|
|
| Led Zep | High | Low |
|
|
| Talking Heads | Moderate | High |
|
|
+----------------------+----------+-----------+
|
|
WARNING: Things will be OK in the end
|
|
ERROR: Burned down, fell over, and then sank into the swamp.
|
|
* TODO: make more lists
|
|
EOT
|
|
|
|
_(show_spaces(run_result.stdout)).must_equal show_spaces(expected)
|
|
|
|
assert_exit_code 0, run_result
|
|
end
|
|
end
|
|
|
|
describe "detect command" do
|
|
let(:result) { inspec("detect --no-color") }
|
|
|
|
it "has no color in the output" do
|
|
_(result.stdout).wont_include("\e[")
|
|
assert_exit_code 0, result
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "exit codes" do
|
|
describe "normal exit" do
|
|
let(:feature) { "exitnormal" }
|
|
it "has correct output" do
|
|
_(run_result.stderr).must_equal ""
|
|
_(run_result.stdout).must_equal "test exit normal\n"
|
|
|
|
assert_exit_code 0, run_result
|
|
end
|
|
end
|
|
|
|
describe "usage exit" do
|
|
let(:feature) { "exitusage" }
|
|
it "has correct output" do
|
|
_(run_result.stderr).must_equal "" # ie, we intentionally exit-1'd; not a crash
|
|
_(run_result.stdout).must_equal "test exit usage_error\n"
|
|
|
|
assert_exit_code 1, run_result
|
|
end
|
|
end
|
|
|
|
describe "plugin exit" do
|
|
let(:feature) { "exitplugin" }
|
|
it "has correct output" do
|
|
_(run_result.stderr).must_equal ""
|
|
_(run_result.stdout).must_equal "test exit plugin_error\n"
|
|
|
|
assert_exit_code 2, run_result
|
|
end
|
|
end
|
|
|
|
describe "skipped exit" do
|
|
let(:feature) { "exitskipped" }
|
|
it "has correct output" do
|
|
_(run_result.stderr).must_equal ""
|
|
_(run_result.stdout).must_equal "test exit skipped_tests\n"
|
|
|
|
assert_exit_code 101, run_result
|
|
end
|
|
end
|
|
|
|
describe "failed exit" do
|
|
let(:feature) { "exitfailed" }
|
|
it "has correct output" do
|
|
_(run_result.stderr).must_equal ""
|
|
_(run_result.stdout).must_equal "test exit failed_tests\n"
|
|
|
|
assert_exit_code 100, run_result
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
describe "interactivity" do
|
|
describe "in interactive mode" do
|
|
let(:post_opts) { "--interactive" }
|
|
describe "the interactive flag" do
|
|
let(:feature) { "interactive" }
|
|
it "should report the interactive flag is on" do
|
|
_(run_result.stdout).must_include "true"
|
|
|
|
assert_exit_code 0, run_result
|
|
end
|
|
end
|
|
|
|
# On windows, tty-prompt's prompt() does not support the :timeout option.
|
|
# This appears to be undocumented. If you run the test plugin
|
|
# on windows, you'll see this invocation counts down to 0 then
|
|
# hangs, waiting for an Enter keypress.
|
|
#
|
|
# Since we can't do an (automated) interactive test without
|
|
# a timeout, skip the test on windows.
|
|
unless FunctionalHelper.is_windows?
|
|
describe "prompting" do
|
|
let(:feature) { "prompt" }
|
|
it "should launch apollo" do
|
|
_(run_result.stdout).must_include "Apollo"
|
|
|
|
assert_exit_code 0, run_result
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "in non-interactive mode" do
|
|
let(:post_opts) { "--no-interactive" }
|
|
describe "the interactive flag" do
|
|
let(:feature) { "interactive" }
|
|
it "should report the interactive flag is off" do
|
|
_(run_result.stdout).must_include "false"
|
|
|
|
assert_exit_code 0, run_result
|
|
end
|
|
end
|
|
|
|
describe "prompting" do
|
|
let(:feature) { "prompt" }
|
|
it "should crash with stacktrace" do
|
|
_(run_result.stderr).must_include "Inspec::UserInteractionRequired"
|
|
|
|
assert_exit_code 1, run_result
|
|
end
|
|
end
|
|
end
|
|
end
|