2019-06-11 22:24:35 +00:00
|
|
|
require "minitest/autorun"
|
|
|
|
require "webmock/minitest"
|
|
|
|
require "mocha/setup"
|
|
|
|
require_relative "../../lib/inspec-compliance/api.rb"
|
2017-05-25 19:01:20 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
describe InspecPlugins::Compliance::API do
|
2017-09-13 20:53:36 +00:00
|
|
|
let(:profiles_response) do
|
2019-06-11 22:24:35 +00:00
|
|
|
[{ "name" => "apache-baseline",
|
|
|
|
"title" => "DevSec Apache Baseline",
|
|
|
|
"maintainer" => "DevSec Hardening Framework Team",
|
|
|
|
"copyright" => "DevSec Hardening Framework Team",
|
|
|
|
"copyright_email" => "hello@dev-sec.io",
|
|
|
|
"license" => "Apache 2 license",
|
|
|
|
"summary" => "Test-suite for best-practice apache hardening",
|
|
|
|
"version" => "2.0.2",
|
|
|
|
"supports" => [{ "os-family" => "unix" }],
|
|
|
|
"depends" => nil,
|
|
|
|
"owner_id" => "admin" },
|
|
|
|
{ "name" => "apache-baseline",
|
|
|
|
"title" => "DevSec Apache Baseline",
|
|
|
|
"maintainer" => "Hardening Framework Team",
|
|
|
|
"copyright" => "Hardening Framework Team",
|
|
|
|
"copyright_email" => "hello@dev-sec.io",
|
|
|
|
"license" => "Apache 2 license",
|
|
|
|
"summary" => "Test-suite for best-practice apache hardening",
|
|
|
|
"version" => "2.0.1",
|
|
|
|
"supports" => [{ "os-family" => "unix" }],
|
|
|
|
"depends" => nil,
|
|
|
|
"latest_version" => "2.0.2",
|
|
|
|
"owner_id" => "admin" },
|
|
|
|
{ "name" => "cis-aix-5.3-6.1-level1",
|
|
|
|
"title" => "CIS AIX 5.3 and AIX 6.1 Benchmark Level 1",
|
|
|
|
"maintainer" => "Chef Software, Inc.",
|
|
|
|
"copyright" => "Chef Software, Inc.",
|
|
|
|
"copyright_email" => "support@chef.io",
|
|
|
|
"license" => "Proprietary, All rights reserved",
|
|
|
|
"summary" => "CIS AIX 5.3 and AIX 6.1 Benchmark Level 1 translated from SCAP",
|
|
|
|
"version" => "1.1.0",
|
|
|
|
"supports" => nil,
|
|
|
|
"depends" => nil,
|
|
|
|
"latest_version" => "1.1.0-3",
|
|
|
|
"owner_id" => "admin" }]
|
2017-09-13 20:53:36 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe ".version" do
|
|
|
|
let(:headers) { "test-headers" }
|
2017-05-25 19:01:20 +00:00
|
|
|
let(:config) do
|
|
|
|
{
|
2019-06-11 22:24:35 +00:00
|
|
|
"server" => "myserver",
|
|
|
|
"insecure" => true,
|
2017-05-25 19:01:20 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.expects(:get_headers).returns(headers)
|
2017-05-25 19:01:20 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when a 404 is received" do
|
|
|
|
it "should return an empty hash" do
|
2017-05-25 19:01:20 +00:00
|
|
|
response = mock
|
2019-06-11 22:24:35 +00:00
|
|
|
response.stubs(:code).returns("404")
|
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get).with("myserver/version", "test-headers", true).returns(response)
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.version(config).must_equal({})
|
2017-05-25 19:01:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when the returned body is nil" do
|
|
|
|
it "should return an empty hash" do
|
2017-05-25 19:01:20 +00:00
|
|
|
response = mock
|
2019-06-11 22:24:35 +00:00
|
|
|
response.stubs(:code).returns("200")
|
2017-05-25 19:01:20 +00:00
|
|
|
response.stubs(:body).returns(nil)
|
2019-06-11 22:24:35 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get).with("myserver/version", "test-headers", true).returns(response)
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.version(config).must_equal({})
|
2017-05-25 19:01:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when the returned body is an empty string" do
|
|
|
|
it "should return an empty hash" do
|
2017-05-25 19:01:20 +00:00
|
|
|
response = mock
|
2019-06-11 22:24:35 +00:00
|
|
|
response.stubs(:code).returns("200")
|
|
|
|
response.stubs(:body).returns("")
|
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get).with("myserver/version", "test-headers", true).returns(response)
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.version(config).must_equal({})
|
2017-05-25 19:01:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when the returned body has no version key" do
|
|
|
|
it "should return an empty hash" do
|
2017-05-25 19:01:20 +00:00
|
|
|
response = mock
|
2019-06-11 22:24:35 +00:00
|
|
|
response.stubs(:code).returns("200")
|
2017-05-25 19:01:20 +00:00
|
|
|
response.stubs(:body).returns('{"api":"compliance"}')
|
2019-06-11 22:24:35 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get).with("myserver/version", "test-headers", true).returns(response)
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.version(config).must_equal({})
|
2017-05-25 19:01:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when the returned body has an empty version key" do
|
|
|
|
it "should return an empty hash" do
|
2017-05-25 19:01:20 +00:00
|
|
|
response = mock
|
2019-06-11 22:24:35 +00:00
|
|
|
response.stubs(:code).returns("200")
|
2017-05-25 19:01:20 +00:00
|
|
|
response.stubs(:body).returns('{"api":"compliance","version":""}')
|
2019-06-11 22:24:35 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get).with("myserver/version", "test-headers", true).returns(response)
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.version(config).must_equal({})
|
2017-05-25 19:01:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when the returned body has a proper version" do
|
|
|
|
it "should return an empty hash" do
|
2017-05-25 19:01:20 +00:00
|
|
|
response = mock
|
2019-06-11 22:24:35 +00:00
|
|
|
response.stubs(:code).returns("200")
|
2017-05-25 19:01:20 +00:00
|
|
|
response.stubs(:body).returns('{"api":"compliance","version":"1.2.3"}')
|
2019-06-11 22:24:35 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get).with("myserver/version", "test-headers", true).returns(response)
|
|
|
|
InspecPlugins::Compliance::API.version(config).must_equal({ "version" => "1.2.3", "api" => "compliance" })
|
2017-05-25 19:01:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-06-13 08:05:09 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "automate/compliance is? checks" do
|
|
|
|
describe "when the config has a compliance server_type" do
|
|
|
|
it "automate/compliance server is? methods return correctly" do
|
2018-10-04 18:31:39 +00:00
|
|
|
config = InspecPlugins::Compliance::Configuration.new
|
2017-06-13 08:05:09 +00:00
|
|
|
config.clean
|
2019-06-11 22:24:35 +00:00
|
|
|
config["server_type"] = "compliance"
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.is_compliance_server?(config).must_equal true
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server_pre_080?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server_080_and_later?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate2_server?(config).must_equal false
|
2018-04-19 17:01:54 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when the config has a automate2 server_type" do
|
|
|
|
it "automate/compliance server is? methods return correctly" do
|
2018-10-04 18:31:39 +00:00
|
|
|
config = InspecPlugins::Compliance::Configuration.new
|
2018-04-19 17:01:54 +00:00
|
|
|
config.clean
|
2019-06-11 22:24:35 +00:00
|
|
|
config["server_type"] = "automate2"
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.is_compliance_server?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server_pre_080?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server_080_and_later?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate2_server?(config).must_equal true
|
2017-06-13 08:05:09 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when the config has an automate server_type and no version key" do
|
|
|
|
it "automate/compliance server is? methods return correctly" do
|
2018-10-04 18:31:39 +00:00
|
|
|
config = InspecPlugins::Compliance::Configuration.new
|
2017-06-13 08:05:09 +00:00
|
|
|
config.clean
|
2019-06-11 22:24:35 +00:00
|
|
|
config["server_type"] = "automate"
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.is_compliance_server?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server?(config).must_equal true
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server_pre_080?(config).must_equal true
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server_080_and_later?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate2_server?(config).must_equal false
|
2017-06-13 08:05:09 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when the config has an automate server_type and a version key that is not a hash" do
|
|
|
|
it "automate/compliance server is? methods return correctly" do
|
2018-10-04 18:31:39 +00:00
|
|
|
config = InspecPlugins::Compliance::Configuration.new
|
2017-06-13 08:05:09 +00:00
|
|
|
config.clean
|
2019-06-11 22:24:35 +00:00
|
|
|
config["server_type"] = "automate"
|
|
|
|
config["version"] = "1.2.3"
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.is_compliance_server?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server?(config).must_equal true
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server_pre_080?(config).must_equal true
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server_080_and_later?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate2_server?(config).must_equal false
|
2017-06-13 08:05:09 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when the config has an automate server_type and a version hash with no version" do
|
|
|
|
it "automate/compliance server is? methods return correctly" do
|
2018-10-04 18:31:39 +00:00
|
|
|
config = InspecPlugins::Compliance::Configuration.new
|
2017-06-13 08:05:09 +00:00
|
|
|
config.clean
|
2019-06-11 22:24:35 +00:00
|
|
|
config["server_type"] = "automate"
|
|
|
|
config["version"] = {}
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.is_compliance_server?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server?(config).must_equal true
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server_pre_080?(config).must_equal true
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server_080_and_later?(config).must_equal false
|
2017-06-13 08:05:09 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "when the config has an automate server_type and a version hash with a version" do
|
|
|
|
it "automate/compliance server is? methods return correctly" do
|
2018-10-04 18:31:39 +00:00
|
|
|
config = InspecPlugins::Compliance::Configuration.new
|
2017-06-13 08:05:09 +00:00
|
|
|
config.clean
|
2019-06-11 22:24:35 +00:00
|
|
|
config["server_type"] = "automate"
|
|
|
|
config["version"] = { "version" => "0.8.1" }
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.is_compliance_server?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server?(config).must_equal true
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server_pre_080?(config).must_equal false
|
|
|
|
InspecPlugins::Compliance::API.is_automate_server_080_and_later?(config).must_equal true
|
2017-06-13 08:05:09 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-06-23 15:29:50 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe ".server_version_from_config" do
|
|
|
|
it "returns nil when the config has no version key" do
|
2017-06-23 15:29:50 +00:00
|
|
|
config = {}
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.server_version_from_config(config).must_be_nil
|
2017-06-23 15:29:50 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns nil when the version value is not a hash" do
|
|
|
|
config = { "version" => "123" }
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.server_version_from_config(config).must_be_nil
|
2017-06-23 15:29:50 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns nil when the version value is a hash but has no version key inside" do
|
|
|
|
config = { "version" => {} }
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.server_version_from_config(config).must_be_nil
|
2017-06-23 15:29:50 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns the version if the version value is a hash containing a version" do
|
|
|
|
config = { "version" => { "version" => "1.2.3" } }
|
|
|
|
InspecPlugins::Compliance::API.server_version_from_config(config).must_equal "1.2.3"
|
2017-06-23 15:29:50 +00:00
|
|
|
end
|
|
|
|
end
|
2017-09-13 20:53:36 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "profile_split" do
|
|
|
|
it "handles a profile without version" do
|
|
|
|
InspecPlugins::Compliance::API.profile_split("admin/apache-baseline").must_equal ["admin", "apache-baseline", nil]
|
2017-09-13 20:53:36 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "handles a profile with a version" do
|
|
|
|
InspecPlugins::Compliance::API.profile_split("admin/apache-baseline#2.0.1").must_equal ["admin", "apache-baseline", "2.0.1"]
|
2017-09-13 20:53:36 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "target_url" do
|
|
|
|
it "handles a automate profile with and without version" do
|
2018-10-04 18:31:39 +00:00
|
|
|
config = InspecPlugins::Compliance::Configuration.new
|
2017-09-13 20:53:36 +00:00
|
|
|
config.clean
|
2019-06-11 22:24:35 +00:00
|
|
|
config["server_type"] = "automate"
|
|
|
|
config["server"] = "https://myautomate"
|
|
|
|
config["version"] = "1.6.99"
|
|
|
|
InspecPlugins::Compliance::API.target_url(config, "admin/apache-baseline").must_equal "https://myautomate/profiles/admin/apache-baseline/tar"
|
|
|
|
InspecPlugins::Compliance::API.target_url(config, "admin/apache-baseline#2.0.2").must_equal "https://myautomate/profiles/admin/apache-baseline/version/2.0.2/tar"
|
2017-09-13 20:53:36 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "handles a chef-compliance profile with and without version" do
|
2018-10-04 18:31:39 +00:00
|
|
|
config = InspecPlugins::Compliance::Configuration.new
|
2017-09-13 20:53:36 +00:00
|
|
|
config.clean
|
2019-06-11 22:24:35 +00:00
|
|
|
config["server_type"] = "compliance"
|
|
|
|
config["server"] = "https://mychefcompliance"
|
|
|
|
config["version"] = "1.1.2"
|
|
|
|
InspecPlugins::Compliance::API.target_url(config, "admin/apache-baseline").must_equal "https://mychefcompliance/owners/admin/compliance/apache-baseline/tar"
|
|
|
|
InspecPlugins::Compliance::API.target_url(config, "admin/apache-baseline#2.0.2").must_equal "https://mychefcompliance/owners/admin/compliance/apache-baseline/tar"
|
2017-09-13 20:53:36 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "exist?" do
|
|
|
|
it "works with profiles returned by Automate" do
|
2018-08-28 13:11:38 +00:00
|
|
|
# ruby 2.3.3 has issues running stub_requests properly
|
|
|
|
# skipping for that specific version
|
2019-06-11 22:24:35 +00:00
|
|
|
return if RUBY_VERSION == "2.3.3"
|
2018-08-28 13:11:38 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
config = InspecPlugins::Compliance::Configuration.new
|
2017-09-13 20:53:36 +00:00
|
|
|
config.clean
|
2019-06-11 22:24:35 +00:00
|
|
|
config["owner"] = "admin"
|
|
|
|
config["server_type"] = "automate"
|
|
|
|
config["server"] = "https://myautomate"
|
|
|
|
config["version"] = "1.6.99"
|
|
|
|
config["automate"] = { "ent" => "automate", "token_type" => "dctoken" }
|
|
|
|
config["version"] = { "api" => "compliance", "version" => "0.8.24" }
|
|
|
|
|
|
|
|
stub_request(:get, "https://myautomate/profiles/admin")
|
|
|
|
.with(headers: { "Accept" => "*/*", "Accept-Encoding" => "gzip;q=1.0,deflate;q=0.6,identity;q=0.3", "Chef-Delivery-Enterprise" => "automate", "User-Agent" => "Ruby", "X-Data-Collector-Token" => "" })
|
2018-08-28 13:11:38 +00:00
|
|
|
.to_return(status: 200, body: profiles_response.to_json, headers: {})
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
InspecPlugins::Compliance::API.exist?(config, "admin/apache-baseline").must_equal true
|
|
|
|
InspecPlugins::Compliance::API.exist?(config, "admin/apache-baseline#2.0.1").must_equal true
|
|
|
|
InspecPlugins::Compliance::API.exist?(config, "admin/apache-baseline#2.0.999").must_equal false
|
|
|
|
InspecPlugins::Compliance::API.exist?(config, "admin/missing-in-action").must_equal false
|
2017-09-13 20:53:36 +00:00
|
|
|
end
|
|
|
|
end
|
2017-10-26 15:32:47 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe ".determine_server_type" do
|
|
|
|
let(:url) { "https://someserver.onthe.net/" }
|
2017-12-22 14:01:18 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
let(:compliance_endpoint) { "/api/version" }
|
|
|
|
let(:automate_endpoint) { "/compliance/version" }
|
|
|
|
let(:automate2_endpoint) { "/dex/auth" }
|
2017-12-22 14:01:18 +00:00
|
|
|
let(:headers) { nil }
|
|
|
|
let(:insecure) { true }
|
|
|
|
|
|
|
|
let(:good_response) { mock }
|
|
|
|
let(:bad_response) { mock }
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns `:automate2` when a 400 is received from `https://URL/dex/auth`" do
|
|
|
|
good_response.stubs(:code).returns("400")
|
2018-04-19 17:01:54 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + automate2_endpoint, headers, insecure)
|
|
|
|
.returns(good_response)
|
2018-04-19 17:01:54 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.determine_server_type(url, insecure).must_equal(:automate2)
|
2018-04-19 17:01:54 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns `:automate` when a 401 is received from `https://URL/compliance/version`" do
|
|
|
|
good_response.stubs(:code).returns("401")
|
|
|
|
bad_response.stubs(:code).returns("404")
|
2017-12-22 14:01:18 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + automate2_endpoint, headers, insecure)
|
|
|
|
.returns(bad_response)
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + automate_endpoint, headers, insecure)
|
|
|
|
.returns(good_response)
|
2017-12-22 14:01:18 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.determine_server_type(url, insecure).must_equal(:automate)
|
2017-12-22 14:01:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Chef Automate currently returns 401 for `/compliance/version` but some
|
|
|
|
# versions of OpsWorks Chef Automate return 200 and a Chef Manage page when
|
|
|
|
# unauthenticated requests are received.
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns `:automate` when a 200 is received from `https://URL/compliance/version`" do
|
|
|
|
bad_response.stubs(:code).returns("404")
|
|
|
|
good_response.stubs(:code).returns("200")
|
|
|
|
good_response.stubs(:body).returns("Are You Looking For the Chef Server?")
|
2017-12-22 14:01:18 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + automate2_endpoint, headers, insecure)
|
|
|
|
.returns(bad_response)
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + automate_endpoint, headers, insecure)
|
|
|
|
.returns(good_response)
|
2017-12-22 14:01:18 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.determine_server_type(url, insecure).must_equal(:automate)
|
2017-10-26 15:32:47 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns `nil` if a 200 is received from `https://URL/compliance/version` but not redirected to Chef Manage" do
|
|
|
|
bad_response.stubs(:code).returns("200")
|
|
|
|
bad_response.stubs(:body).returns("No Chef Manage here")
|
2017-12-22 14:01:18 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + automate_endpoint, headers, insecure)
|
|
|
|
.returns(bad_response)
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + automate2_endpoint, headers, insecure)
|
|
|
|
.returns(bad_response)
|
2017-12-22 14:01:18 +00:00
|
|
|
|
|
|
|
mock_compliance_response = mock
|
2019-06-11 22:24:35 +00:00
|
|
|
mock_compliance_response.stubs(:code).returns("404")
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + compliance_endpoint, headers, insecure)
|
|
|
|
.returns(mock_compliance_response)
|
2017-12-22 14:01:18 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.determine_server_type(url, insecure).must_be_nil
|
2017-12-22 14:01:18 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns `:compliance` when a 200 is received from `https://URL/api/version`" do
|
|
|
|
good_response.stubs(:code).returns("200")
|
|
|
|
bad_response.stubs(:code).returns("404")
|
2017-12-22 14:01:18 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + automate_endpoint, headers, insecure)
|
|
|
|
.returns(bad_response)
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + automate2_endpoint, headers, insecure)
|
|
|
|
.returns(bad_response)
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + compliance_endpoint, headers, insecure)
|
|
|
|
.returns(good_response)
|
2017-12-22 14:01:18 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.determine_server_type(url, insecure).must_equal(:compliance)
|
2017-10-26 15:32:47 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns `nil` if it cannot determine the server type" do
|
|
|
|
bad_response.stubs(:code).returns("404")
|
2017-12-22 14:01:18 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + automate2_endpoint, headers, insecure)
|
|
|
|
.returns(bad_response)
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + automate_endpoint, headers, insecure)
|
|
|
|
.returns(bad_response)
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::HTTP.expects(:get)
|
2018-08-28 13:11:38 +00:00
|
|
|
.with(url + compliance_endpoint, headers, insecure)
|
|
|
|
.returns(bad_response)
|
2017-12-22 14:01:18 +00:00
|
|
|
|
2018-10-04 18:31:39 +00:00
|
|
|
InspecPlugins::Compliance::API.determine_server_type(url, insecure).must_be_nil
|
2017-10-26 15:32:47 +00:00
|
|
|
end
|
|
|
|
end
|
2017-05-25 19:01:20 +00:00
|
|
|
end
|