Sha256: 1333ecfae0e56f4fce8f0b1a9549652461daa0b345b8f6b578c31b3812f321fc
Contents?: true
Size: 1.12 KB
Versions: 9
Compression:
Stored size: 1.12 KB
Contents
# frozen_string_literal: true # rubocop:todo all require 'spec_helper' require 'support/shared/auth_context' describe Mongo::Auth::CR do let(:server) do authorized_client.cluster.next_primary end include_context 'auth unit tests' describe '#login' do before do connection.connect! end context 'when the user is not authorized' do max_server_fcv "4.0" let(:user) do Mongo::Auth::User.new( database: 'driver', user: 'notauser', password: 'password' ) end let(:cr) do described_class.new(user, connection) end let(:login) do cr.login.documents[0] end it 'raises an exception' do expect { cr.login }.to raise_error(Mongo::Auth::Unauthorized) end context 'when compression is used' do require_compression it 'does not compress the message' do expect(Mongo::Protocol::Compressed).not_to receive(:new) expect { cr.login }.to raise_error(Mongo::Auth::Unauthorized) end end end end end
Version data entries
9 entries across 9 versions & 2 rubygems