mirror of
https://github.com/inspec/inspec
synced 2024-12-19 17:43:44 +00:00
476c6878b3
+ Turn off verbosity in Rakefile by default. Use `rake V=1` to turn back on. + MiniTest -> Minitest everywhere. + MiniTest::Unit::TestCase -> Minitest::Test everywhere. + Updated minitest doco urls to official and up-to-date site. + Normalize requires. Only needs "minitest/autorun" and "minitest/pride". Signed-off-by: Ryan Davis <zenspider@chef.io>
43 lines
1.4 KiB
Ruby
43 lines
1.4 KiB
Ruby
# encoding: utf-8
|
|
|
|
require_relative '../../../shared/core_plugin_test_helper.rb'
|
|
|
|
class ComplianceCli < Minitest::Test
|
|
include CorePluginFunctionalHelper
|
|
|
|
def test_help_output
|
|
out = run_inspec_process('compliance help')
|
|
assert_equal out.exit_status, 0
|
|
assert_includes out.stdout, 'inspec compliance exec PROFILE'
|
|
end
|
|
|
|
def test_logout_command
|
|
out = run_inspec_process('compliance logout')
|
|
assert_equal out.exit_status, 0
|
|
assert_includes out.stdout, ''
|
|
end
|
|
|
|
def test_error_login_with_invalid_url
|
|
out = run_inspec_process('compliance login')
|
|
assert_equal out.exit_status, 1
|
|
assert_includes out.stderr, 'ERROR: "inspec compliance login" was called with no arguments'
|
|
end
|
|
|
|
def test_profile_list_without_auth
|
|
out = run_inspec_process('compliance profiles')
|
|
assert_equal out.exit_status, 0 # TODO: make this error
|
|
assert_includes out.stdout, 'You need to login first with `inspec compliance login`'
|
|
end
|
|
|
|
def test_error_upload_without_args
|
|
out = run_inspec_process('compliance upload')
|
|
assert_equal out.exit_status, 1
|
|
assert_includes out.stderr, 'ERROR: "inspec compliance upload" was called with no arguments'
|
|
end
|
|
|
|
def test_error_upload_with_fake_path
|
|
out = run_inspec_process('compliance upload /path/to/dir')
|
|
assert_equal out.exit_status, 0 # TODO: make this error
|
|
assert_includes out.stdout, 'You need to login first with `inspec compliance login`'
|
|
end
|
|
end
|