2019-06-11 22:24:35 +00:00
|
|
|
require "minitest/autorun"
|
2019-12-31 23:46:47 +00:00
|
|
|
require "mocha/minitest"
|
2020-12-18 16:49:35 +00:00
|
|
|
require_relative "../../lib/inspec-compliance/api"
|
2017-05-26 19:30:37 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
describe InspecPlugins::Compliance::Fetcher do
|
2019-06-11 22:24:35 +00:00
|
|
|
let(:config) { { "server" => "myserver" } }
|
2017-05-26 19:30:37 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "the check_compliance_token method" do
|
2019-05-31 21:59:06 +00:00
|
|
|
let(:fetcher) { InspecPlugins::Compliance::Fetcher.new("a/bad/url", config) }
|
2018-09-13 17:06:02 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns without error if token is set" do
|
|
|
|
config["token"] = "my-token"
|
|
|
|
fetcher.class.check_compliance_token("http://test.com", config)
|
2018-09-13 17:06:02 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns an error when token is not set" do
|
|
|
|
ex = assert_raises(Inspec::FetcherFailure) { fetcher.class.check_compliance_token("http://test.com", config) }
|
2021-05-20 11:42:21 +00:00
|
|
|
_(ex.message).must_include "Cannot fetch http://test.com because your automate2 token has not been\nconfigured."
|
2018-09-13 17:06:02 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when the server is an automate2 server" do
|
2018-05-04 16:25:40 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns the correct owner and profile name" do
|
|
|
|
config["profile"] = ["admin", "ssh-baseline", nil]
|
|
|
|
fetcher = InspecPlugins::Compliance::Fetcher.new("myserver/profile", config)
|
2019-09-30 22:31:55 +00:00
|
|
|
_(fetcher.send(:compliance_profile_name)).must_equal "admin/ssh-baseline"
|
2018-05-04 16:25:40 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when the server calls an automate profile" do
|
2018-08-28 13:11:38 +00:00
|
|
|
let(:profiles_result) do
|
2019-06-11 22:24:35 +00:00
|
|
|
[{ "name" => "ssh-baseline",
|
|
|
|
"title" => "InSpec Profile",
|
|
|
|
"maintainer" => "The Authors",
|
|
|
|
"copyright" => "The Authors",
|
|
|
|
"copyright_email" => "you@example.com",
|
|
|
|
"license" => "Apache-2.0",
|
|
|
|
"summary" => "An InSpec Compliance Profile",
|
|
|
|
"version" => "0.1.1",
|
|
|
|
"owner" => "admin",
|
|
|
|
"supports" => [],
|
|
|
|
"depends" => [],
|
|
|
|
"sha256" => "132j1kjdasfasdoaefaewo12312",
|
|
|
|
"groups" => [],
|
|
|
|
"controls" => [],
|
|
|
|
"attributes" => [],
|
|
|
|
"latest_version" => "" }]
|
2018-08-28 13:11:38 +00:00
|
|
|
end
|
2018-05-03 18:07:53 +00:00
|
|
|
before do
|
2019-06-11 22:24:35 +00:00
|
|
|
InspecPlugins::Compliance::Configuration.expects(:new).returns({ "token" => "123abc", "server" => "https://a2.instance.com" })
|
2018-05-03 18:07:53 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns the correct profile name when parsing url" do
|
|
|
|
InspecPlugins::Compliance::API.stubs(:profiles).returns(["success", profiles_result])
|
|
|
|
fetcher = InspecPlugins::Compliance::Fetcher.resolve("compliance://admin/ssh-baseline")
|
|
|
|
assert = ["admin", "ssh-baseline", nil]
|
2019-09-30 22:31:55 +00:00
|
|
|
_(fetcher.instance_variable_get(:"@config")["profile"]).must_equal assert
|
2018-05-03 18:07:53 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns the correct profile name when parsing compliance hash" do
|
|
|
|
InspecPlugins::Compliance::API.stubs(:profiles).returns(["success", profiles_result])
|
2018-05-03 18:07:53 +00:00
|
|
|
hash = {
|
2019-06-11 22:24:35 +00:00
|
|
|
target: "https://a2.instance.com/api/v0/compliance/tar",
|
|
|
|
compliance: "admin/ssh-baseline",
|
|
|
|
sha256: "132j1kjdasfasdoaefaewo12312",
|
2018-05-03 18:07:53 +00:00
|
|
|
}
|
2018-10-04 18:31:39 +00:00
|
|
|
fetcher = InspecPlugins::Compliance::Fetcher.resolve(hash)
|
2019-06-11 22:24:35 +00:00
|
|
|
assert = ["admin", "ssh-baseline", nil]
|
2019-09-30 22:31:55 +00:00
|
|
|
_(fetcher.instance_variable_get(:"@config")["profile"]).must_equal assert
|
2018-05-03 18:07:53 +00:00
|
|
|
end
|
|
|
|
end
|
2018-08-28 13:11:38 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when the server provides a sha256 in the profiles_result" do
|
2018-08-28 13:11:38 +00:00
|
|
|
let(:profiles_result) do
|
2019-06-11 22:24:35 +00:00
|
|
|
[{ "name" => "ssh-baseline",
|
|
|
|
"title" => "InSpec Profile",
|
|
|
|
"maintainer" => "The Authors",
|
|
|
|
"copyright" => "The Authors",
|
|
|
|
"copyright_email" => "you@example.com",
|
|
|
|
"license" => "Apache-2.0",
|
|
|
|
"summary" => "An InSpec Compliance Profile",
|
|
|
|
"version" => "0.1.1",
|
|
|
|
"owner" => "admin",
|
|
|
|
"supports" => [],
|
|
|
|
"depends" => [],
|
|
|
|
"sha256" => "132j1kjdasfasdoaefaewo12312",
|
|
|
|
"groups" => [],
|
|
|
|
"controls" => [],
|
|
|
|
"attributes" => [],
|
|
|
|
"latest_version" => "" }]
|
2018-08-28 13:11:38 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
2019-06-11 22:24:35 +00:00
|
|
|
InspecPlugins::Compliance::Configuration.expects(:new).returns({ "token" => "123abc", "server" => "https://a2.instance.com" })
|
2018-08-28 13:11:38 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "contains the upstream_sha256" do
|
|
|
|
InspecPlugins::Compliance::API.stubs(:profiles).returns(["success", profiles_result])
|
2018-08-28 13:11:38 +00:00
|
|
|
prof = profiles_result[0]
|
2019-07-09 00:20:30 +00:00
|
|
|
target = "compliance://#{prof["owner"]}/#{prof["name"]}"
|
2018-10-04 18:31:39 +00:00
|
|
|
fetcher = InspecPlugins::Compliance::Fetcher.resolve(target)
|
2019-09-30 22:31:55 +00:00
|
|
|
_(fetcher.upstream_sha256).must_equal prof["sha256"]
|
2018-08-28 13:11:38 +00:00
|
|
|
end
|
|
|
|
end
|
2017-05-26 19:30:37 +00:00
|
|
|
end
|