mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
7f7cbf0ddb
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
17 lines
826 B
Ruby
17 lines
826 B
Ruby
require "helper"
|
|
require "inspec/resource"
|
|
require "inspec/resources/mongodb_session"
|
|
|
|
describe "Inspec::Resources::MongodbSession" do
|
|
it "fails when no user, password" do
|
|
resource = load_resource("mongodb_session", host: "localhost", port: 27017, database: "test")
|
|
_(resource.resource_failed?).must_equal true
|
|
_(resource.resource_exception_message).must_equal "Can't run MongoDB command. Error: Can't run MongoDB checks without authentication."
|
|
end
|
|
|
|
it "fails when no database name is provided" do
|
|
resource = load_resource("mongodb_session", user: "foo", password: "bar", host: "localhost", port: 27017)
|
|
_(resource.resource_failed?).must_equal true
|
|
_(resource.resource_exception_message).must_equal "Can't run MongoDB command. Error: You must provide a database name for the session."
|
|
end
|
|
end
|