mirror of
https://github.com/inspec/inspec
synced 2024-11-10 23:24:18 +00:00
bdf5eae15e
Signed-off-by: Victoria Jeffrey <vjeffrey@chef.io>
68 lines
2.1 KiB
Ruby
68 lines
2.1 KiB
Ruby
# encoding: utf-8
|
|
# author: Dominik Richter
|
|
# author: Christoph Hartmann
|
|
|
|
require 'functional/helper'
|
|
|
|
# basic testing without availability of any server
|
|
describe 'inspec compliance' do
|
|
include FunctionalHelper
|
|
|
|
it 'help' do
|
|
out = inspec('compliance help')
|
|
out.exit_status.must_equal 0
|
|
out.stdout.must_include 'inspec compliance exec PROFILE'
|
|
end
|
|
|
|
# ensure we are logged out
|
|
it 'logout' do
|
|
out = inspec('compliance logout')
|
|
out.exit_status.must_equal 0
|
|
out.stdout.must_include ''
|
|
end
|
|
|
|
it 'login server url missing' do
|
|
out = inspec('compliance login')
|
|
#TODO: we need to convince thor that this is an error
|
|
out.exit_status.must_equal 0
|
|
out.stderr.must_include 'ERROR: "inspec login" was called with no arguments'
|
|
end
|
|
|
|
it 'login server with missing parameters' do
|
|
out = inspec('compliance login http://example.com')
|
|
out.exit_status.must_equal 1
|
|
#TODO: inspec should really use stderr for errors
|
|
out.stdout.must_include 'Please run `inspec compliance login SERVER` with options'
|
|
end
|
|
|
|
it 'automate with missing parameters' do
|
|
out = inspec('compliance login_automate http://example.com')
|
|
out.exit_status.must_equal 1
|
|
#TODO: inspec should really use stderr for errors
|
|
out.stdout.must_include 'Please login to your automate instance using'
|
|
end
|
|
|
|
it 'inspec compliance profiles without authentication' do
|
|
out = inspec('compliance profile')
|
|
out.stdout.must_include 'You need to login first with `inspec compliance login`'
|
|
out.exit_status.must_equal 0
|
|
end
|
|
|
|
it 'try to upload a profile without directory' do
|
|
out = inspec('compliance upload')
|
|
out.stderr.must_include 'ERROR: "inspec upload" was called with no arguments'
|
|
out.exit_status.must_equal 0
|
|
end
|
|
|
|
it 'try to upload a profile a non-existing path' do
|
|
out = inspec('compliance upload /path/to/dir')
|
|
out.stdout.must_include 'You need to login first with `inspec compliance login`'
|
|
out.exit_status.must_equal 0
|
|
end
|
|
|
|
it 'logout' do
|
|
out = inspec('compliance logout')
|
|
out.exit_status.must_equal 0
|
|
out.stdout.must_include ''
|
|
end
|
|
end
|