72 lines
2.0 KiB
Ruby
72 lines
2.0 KiB
Ruby
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
require File.expand_path("../../test_helper", __FILE__)
|
|
require './test/tools/auth_repl_set_manager'
|
|
require './test/replica_sets/rs_test_helper'
|
|
|
|
class AuthTest < Test::Unit::TestCase
|
|
include Mongo
|
|
|
|
def setup
|
|
@rs = AuthReplSetManager.new(:start_port => 40000)
|
|
@rs.start_set
|
|
end
|
|
|
|
def teardown
|
|
#@rs.cleanup_set
|
|
end
|
|
|
|
def test_repl_set_auth
|
|
@conn = ReplSetConnection.new(build_seeds(3), :name => @rs.name)
|
|
|
|
# Add an admin user
|
|
@conn['admin'].add_user("me", "secret")
|
|
|
|
# Ensure that insert fails
|
|
assert_raise_error Mongo::OperationFailure, "unauthorized" do
|
|
@conn['foo']['stuff'].insert({:a => 2}, :safe => {:w => 3})
|
|
end
|
|
|
|
# Then authenticate
|
|
assert @conn['admin'].authenticate("me", "secret")
|
|
|
|
# Insert should succeed now
|
|
assert @conn['foo']['stuff'].insert({:a => 2}, :safe => {:w => 3})
|
|
|
|
# So should a query
|
|
assert @conn['foo']['stuff'].find_one
|
|
|
|
# But not when we logout
|
|
@conn['admin'].logout
|
|
|
|
assert_raise_error Mongo::OperationFailure, "unauthorized" do
|
|
@conn['foo']['stuff'].find_one
|
|
end
|
|
|
|
# Same should apply to a random secondary
|
|
@slave1 = Connection.new(@conn.secondary_pools[0].host,
|
|
@conn.secondary_pools[0].port, :slave_ok => true)
|
|
|
|
# Find should fail
|
|
assert_raise_error Mongo::OperationFailure, "unauthorized" do
|
|
@slave1['foo']['stuff'].find_one
|
|
end
|
|
|
|
# But not when authenticated
|
|
assert @slave1['admin'].authenticate("me", "secret")
|
|
assert @slave1['foo']['stuff'].find_one
|
|
|
|
# Same should apply when using :secondary_only
|
|
@second_only = ReplSetConnection.new(build_seeds(3),
|
|
:require_primary => false, :read => :secondary_only)
|
|
|
|
# Find should fail
|
|
assert_raise_error Mongo::OperationFailure, "unauthorized" do
|
|
@second_only['foo']['stuff'].find_one
|
|
end
|
|
|
|
# But not when authenticated
|
|
assert @second_only['admin'].authenticate("me", "secret")
|
|
assert @second_only['foo']['stuff'].find_one
|
|
end
|
|
end
|