2018-12-26 18:43:09 +00:00
# Logging and deprecation facilities functional tests
2019-06-11 22:24:35 +00:00
require " functional/helper "
2018-12-26 18:43:09 +00:00
2019-06-11 22:24:35 +00:00
describe " Deprecation Facility Behavior " do
2018-12-26 18:43:09 +00:00
include FunctionalHelper
2019-06-11 22:24:35 +00:00
let ( :profile ) { File . join ( profile_path , " deprecation " , profile_name ) }
2018-12-26 18:43:09 +00:00
let ( :invocation ) { " exec #{ profile } #{ control_flag } " }
2019-05-18 00:43:58 +00:00
# Running in JSON mode has the side-effect of sending log messages to $stderr
2019-01-14 18:56:01 +00:00
let ( :run_result ) { run_inspec_process ( invocation , json : true ) }
2018-12-26 18:43:09 +00:00
# Expect one control, 3 results
2019-10-21 23:13:03 +00:00
let ( :json_result ) { run_result ; @json [ " profiles " ] [ 0 ] [ " controls " ] [ 0 ] [ " results " ] }
2018-12-26 18:43:09 +00:00
2019-06-11 22:24:35 +00:00
describe " when the deprecation is in a custom resource and the deprecate DSL method is used " do
describe " when the action is to fail the control " do
describe " when the resource is called in a control " do
let ( :profile_name ) { " typical " }
let ( :control_flag ) { " --controls deprecate_fail_mode " }
2018-12-26 18:43:09 +00:00
2019-06-11 22:24:35 +00:00
it " should result in a failed control " do
2019-09-30 22:31:55 +00:00
_ ( json_result . count ) . must_equal 3
_ ( json_result [ 0 ] [ " status " ] ) . must_equal " passed "
_ ( json_result [ 2 ] [ " status " ] ) . must_equal " passed "
_ ( json_result [ 1 ] [ " status " ] ) . must_equal " failed "
_ ( json_result [ 1 ] [ " message " ] ) . must_include " DEPRECATION "
_ ( json_result [ 1 ] [ " message " ] ) . must_include " This should fail "
_ ( json_result [ 1 ] [ " message " ] ) . must_include " (used at "
2019-11-09 03:08:20 +00:00
_ ( json_result [ 1 ] [ " message " ] ) . must_include " test/fixtures/profiles/deprecation/typical/controls/typical.rb "
2019-05-31 21:59:06 +00:00
# TODO: Brittle Test
2019-09-30 22:31:55 +00:00
_ ( json_result [ 1 ] [ " message " ] ) . must_include " typical.rb:10 " # Line number check
2019-07-23 01:44:43 +00:00
2019-09-30 22:31:55 +00:00
_ ( run_result . stderr ) . must_be_empty
2019-07-23 01:44:43 +00:00
assert_exit_code 100 , run_result
2018-12-26 18:43:09 +00:00
end
end
2019-06-11 22:24:35 +00:00
describe " when the resource is called outside a control " do
let ( :profile_name ) { " bare " }
let ( :control_flag ) { " " }
2018-12-26 18:43:09 +00:00
2019-06-11 22:24:35 +00:00
it " should result in a warning, not a stacktrace or abort " do
2019-09-30 22:31:55 +00:00
_ ( json_result . count ) . must_equal 1
_ ( json_result [ 0 ] [ " status " ] ) . must_equal " passed "
2018-12-26 18:43:09 +00:00
stderr_lines = run_result . stderr . split ( " \n " )
2019-09-30 22:31:55 +00:00
_ ( stderr_lines . count ) . must_equal 1
2018-12-26 18:43:09 +00:00
deprecation_line = stderr_lines . first
2019-09-30 22:31:55 +00:00
_ ( deprecation_line ) . must_include " DEPRECATION "
_ ( deprecation_line ) . must_include " WARN "
_ ( deprecation_line ) . must_include " This should fail "
_ ( deprecation_line ) . must_include " (used at "
2019-11-09 03:08:20 +00:00
_ ( deprecation_line ) . must_include " test/fixtures/profiles/deprecation/bare/controls/bare.rb "
2019-05-31 21:59:06 +00:00
# TODO: Brittle Test
2019-09-30 22:31:55 +00:00
_ ( deprecation_line ) . must_include " bare.rb:2 "
2019-07-23 01:44:43 +00:00
assert_exit_code 0 , run_result
2018-12-26 18:43:09 +00:00
end
end
end
2019-06-11 22:24:35 +00:00
describe " when the action is exit and no code is specified " do
let ( :profile_name ) { " typical " }
let ( :control_flag ) { " --controls deprecate_exit_mode_implicit " }
2018-12-26 18:43:09 +00:00
2019-06-11 22:24:35 +00:00
it " should result in an exit with a special code " do
2018-12-26 18:43:09 +00:00
# Exactly one error should be output
stderr_lines = run_result . stderr . split ( " \n " )
2019-09-30 22:31:55 +00:00
_ ( stderr_lines . count ) . must_equal 1
2018-12-26 18:43:09 +00:00
# Contents of the deprecation
deprecation_line = stderr_lines . first
2019-09-30 22:31:55 +00:00
_ ( deprecation_line ) . must_include " DEPRECATION "
_ ( deprecation_line ) . must_include " ERROR "
_ ( deprecation_line ) . must_include " This should exit "
_ ( deprecation_line ) . must_include " (used at " # Beginning of a single-frame stack locator
2019-11-09 03:08:20 +00:00
_ ( deprecation_line ) . must_include " test/fixtures/profiles/deprecation/typical/controls/typical.rb " # Frame should have been identified as coming from the test profile
2019-05-31 21:59:06 +00:00
# TODO: Brittle Test
2019-09-30 22:31:55 +00:00
_ ( deprecation_line ) . must_include " typical.rb:27 " # Line number check
2018-12-26 18:43:09 +00:00
# The reporter should not fire
2019-09-30 22:31:55 +00:00
_ ( run_result . stdout ) . must_be_empty
2019-07-23 01:44:43 +00:00
# 3 is the FATAL_DEPRECATION value from Inspec::UI
assert_exit_code 3 , run_result
2018-12-26 18:43:09 +00:00
end
end
2019-06-11 22:24:35 +00:00
describe " when the action is exit and a specific code is specified " do
let ( :profile_name ) { " typical " }
let ( :control_flag ) { " --controls deprecate_exit_mode_explicit " }
2018-12-26 18:43:09 +00:00
2019-06-11 22:24:35 +00:00
it " should result in an exit with a special code " do
2018-12-26 18:43:09 +00:00
# Exactly one error should be output
stderr_lines = run_result . stderr . split ( " \n " )
2019-09-30 22:31:55 +00:00
_ ( stderr_lines . count ) . must_equal 1
2018-12-26 18:43:09 +00:00
# Contents of the deprecation
deprecation_line = stderr_lines . first
2019-09-30 22:31:55 +00:00
_ ( deprecation_line ) . must_include " DEPRECATION " # Flagged as deprecation
_ ( deprecation_line ) . must_include " ERROR " # Flagged as an error
_ ( deprecation_line ) . must_include " This should exit " # Specific deprecation message
_ ( deprecation_line ) . must_include " (used at " # Beginning of a single-frame stack locator
2019-11-09 03:08:20 +00:00
_ ( deprecation_line ) . must_include " test/fixtures/profiles/deprecation/typical/controls/typical.rb " # Frame should have been identified as coming from the test profile
2019-05-31 21:59:06 +00:00
# TODO: Brittle Test
2019-09-30 22:31:55 +00:00
_ ( deprecation_line ) . must_include " typical.rb:44 " # Line number check
2018-12-26 18:43:09 +00:00
# The reporter should not fire
2019-09-30 22:31:55 +00:00
_ ( run_result . stdout ) . must_be_empty
2019-07-23 01:44:43 +00:00
# 8 is a custom value
assert_exit_code 8 , run_result
2018-12-26 18:43:09 +00:00
end
end
2019-06-11 22:24:35 +00:00
describe " when the action is warn " do
let ( :profile_name ) { " typical " }
let ( :control_flag ) { " --controls deprecate_warn_mode " }
2018-12-26 18:43:09 +00:00
2019-06-11 22:24:35 +00:00
it " should result in a warning, not a stacktrace or abort " do
2019-09-30 22:31:55 +00:00
_ ( json_result . count ) . must_equal 3
_ ( json_result [ 0 ] [ " status " ] ) . must_equal " passed "
_ ( json_result [ 1 ] [ " status " ] ) . must_equal " passed "
_ ( json_result [ 2 ] [ " status " ] ) . must_equal " passed "
2018-12-26 18:43:09 +00:00
stderr_lines = run_result . stderr . split ( " \n " )
2019-09-30 22:31:55 +00:00
_ ( stderr_lines . count ) . must_equal 1
2018-12-26 18:43:09 +00:00
2019-01-14 18:56:01 +00:00
# Content of the deprecation
2018-12-26 18:43:09 +00:00
deprecation_line = stderr_lines . first
2019-09-30 22:31:55 +00:00
_ ( deprecation_line ) . must_include " DEPRECATION " # Flagged as deprecation
_ ( deprecation_line ) . must_include " WARN " # Flagged as a warning
_ ( deprecation_line ) . must_include " This should warn " # Specific deprecation message
_ ( deprecation_line ) . must_include " (used at " # Beginning of a single-frame stack locator
2019-11-09 03:08:20 +00:00
_ ( deprecation_line ) . must_include " test/fixtures/profiles/deprecation/typical/controls/typical.rb " # Frame should have been identified as coming from the test profile
2019-05-31 21:59:06 +00:00
# TODO: Brittle Test
2019-09-30 22:31:55 +00:00
_ ( deprecation_line ) . must_include " typical.rb:61 " # Line number check
2019-07-23 01:44:43 +00:00
assert_exit_code 0 , run_result
2018-12-26 18:43:09 +00:00
end
end
2019-06-11 22:24:35 +00:00
describe " when the action is ignore " do
let ( :profile_name ) { " typical " }
let ( :control_flag ) { " --controls deprecate_ignore_mode --log-level debug " }
2018-12-26 18:43:09 +00:00
2019-06-11 22:24:35 +00:00
it " should appear to be a normal run, no warnings or stacktrace or abort, but include debug message " do
2019-09-30 22:31:55 +00:00
_ ( json_result . count ) . must_equal 3
_ ( json_result [ 0 ] [ " status " ] ) . must_equal " passed "
_ ( json_result [ 1 ] [ " status " ] ) . must_equal " passed "
_ ( json_result [ 2 ] [ " status " ] ) . must_equal " passed "
2018-12-26 18:43:09 +00:00
2019-05-18 00:43:58 +00:00
# JSON mode will send debug messages to $stderr
2019-11-09 03:08:20 +00:00
# [2019-01-15T23:41:41-05:00] DEBUG: DEPRECATION: This should be ignored (used at test/fixtures/profiles/deprecation/typical/controls/typical.rb:79)
2019-06-11 22:24:35 +00:00
deprecation_line = run_result . stderr . split ( " \n " ) . detect { | line | line . include? ( " This should be ignored " ) }
2019-09-30 22:31:55 +00:00
_ ( deprecation_line ) . wont_be_nil
_ ( deprecation_line ) . must_include " DEBUG "
_ ( deprecation_line ) . must_include " DEPRECATION "
_ ( deprecation_line ) . must_include " (used at " # Beginning of a single-frame stack locator
2019-11-09 03:08:20 +00:00
_ ( deprecation_line ) . must_include " test/fixtures/profiles/deprecation/typical/controls/typical.rb " # Frame should have been identified as coming from the test profile
2019-05-31 21:59:06 +00:00
# TODO: Brittle Test
2019-09-30 22:31:55 +00:00
_ ( deprecation_line ) . must_include " typical.rb:77 " # Line number check
2019-07-23 01:44:43 +00:00
assert_exit_code 0 , run_result
2018-12-26 18:43:09 +00:00
end
end
end
2019-04-30 19:40:12 +00:00
2019-06-11 22:24:35 +00:00
describe " when inspec check is used in json mode against a profile with a deprecation " do
describe " inspec check with json formatter " do
let ( :profile_name ) { " check " }
it " can check a profile and produce valid JSON " do
run_result = run_inspec_process ( " check " + profile + " --format json " )
2019-09-30 22:31:55 +00:00
_ ( run_result . stdout ) . wont_include " DEPRECATION "
_ ( run_result . stderr ) . must_include " DEPRECATION "
2019-04-30 19:40:12 +00:00
JSON . parse ( run_result . stdout ) # No exception here
end
end
end
2019-01-14 18:56:01 +00:00
end