1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
# frozen_string_literal: true
# rubocop:todo all
require 'spec_helper'
require 'support/shared/auth_context'
describe Mongo::Auth::LDAP do
let(:server) do
authorized_client.cluster.next_primary
end
include_context 'auth unit tests'
let(:user) do
Mongo::Auth::User.new(
database: '$external',
user: 'driver',
password: 'password',
)
end
describe '#login' do
before do
connection.connect!
end
context 'when the user is not authorized for the database' do
let(:cr) do
described_class.new(user, connection)
end
let(:login) do
cr.login.documents[0]
end
it 'attempts to log the user into the connection' do
expect {
cr.login
}.to raise_error(Mongo::Auth::Unauthorized)
end
end
end
end
|