mirror of
https://github.com/inspec/inspec
synced 2024-11-13 08:27:08 +00:00
989d86c2ce
Signed-off-by: Nick Schwaderer <nschwaderer@chef.io>
44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
# copyright: 2020, Chef Software Inc.
|
|
|
|
require "helper"
|
|
require "inspec/utils/json_profile_summary"
|
|
|
|
describe "JsoneProfileSummary" do
|
|
let(:profile_summary) { Inspec::Utils::JsonProfileSummary }
|
|
let(:info) { { test: "information" } }
|
|
|
|
describe "writes JSON to file" do
|
|
it "writes json to file" do
|
|
Dir.mktmpdir do |dir|
|
|
profile_summary.produce_json(
|
|
info: info,
|
|
write_path: "#{dir}/inspec-test.json"
|
|
)
|
|
assert File.file?("#{dir}/inspec-test.json")
|
|
end
|
|
end
|
|
|
|
it "suppresses loading output if requested" do
|
|
Dir.mktmpdir do |dir|
|
|
assert_output("") {
|
|
profile_summary.produce_json(
|
|
info: info,
|
|
write_path: "#{dir}/inspec-test.json",
|
|
suppress_output: true
|
|
)
|
|
}
|
|
end
|
|
end
|
|
|
|
it "returns JSON to STDOUT if no dst" do
|
|
assert_output(
|
|
"{\"test\":\"information\",\"generator\":{\"name\":\"inspec\",\""\
|
|
"version\":\"#{Inspec::VERSION}\"}}\n"
|
|
) { profile_summary.produce_json(info: info) }
|
|
end
|
|
|
|
it "fails without arguments" do
|
|
assert_raises(ArgumentError) { profile_summary.produce_json }
|
|
end
|
|
end
|
|
end
|