Sha256: a971a85a3812778a8fb0a5eb71e9df657f906c051558fb6564566042a55febdf

Contents?: true

Size: 1.57 KB

Versions: 16

Compression:

Stored size: 1.57 KB

Contents

# frozen_string_literal: true
# encoding: utf-8

require 'spec_helper'
require 'support/shared/auth_context'

describe Mongo::Auth::X509 do

  let(:server) do
    authorized_client.cluster.next_primary
  end

  include_context 'auth unit tests'

  let(:user) do
    Mongo::Auth::User.new(database: '$external')
  end

  describe '#initialize' do

    context 'when user specifies database $external' do

      let(:user) do
        Mongo::Auth::User.new(database: '$external')
      end

      it 'works' do
        described_class.new(user, connection)
      end
    end

    context 'when user specifies database other than $external' do

      let(:user) do
        Mongo::Auth::User.new(database: 'foo')
      end

      it 'raises InvalidConfiguration' do
        expect do
          described_class.new(user, connection)
        end.to raise_error(Mongo::Auth::InvalidConfiguration, /User specifies auth source 'foo', but the only valid auth source for X.509 is '\$external'/)
      end
    end
  end

  describe '#login' do
    # When x509 auth is configured, the login would work and this test
    # requires the login to fail.
    require_no_external_user

    context 'when the user is not authorized for the database' do

      before do
        connection.connect!
      end

      let(:x509) do
        described_class.new(user, connection)
      end

      let(:login) do
        x509.login.documents[0]
      end

      it 'attempts to log the user into the connection' do
        expect do
          x509.login
        end.to raise_error(Mongo::Auth::Unauthorized)
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
mongo-2.16.4 spec/mongo/auth/x509_spec.rb
mongo-2.17.4 spec/mongo/auth/x509_spec.rb
mongo-2.18.3 spec/mongo/auth/x509_spec.rb
mongo-2.18.2 spec/mongo/auth/x509_spec.rb
mongo-2.17.3 spec/mongo/auth/x509_spec.rb
mongo-2.18.1 spec/mongo/auth/x509_spec.rb
mongo-2.18.0 spec/mongo/auth/x509_spec.rb
mongo-2.17.2 spec/mongo/auth/x509_spec.rb
mongo-2.16.3 spec/mongo/auth/x509_spec.rb
mongo-2.18.0.beta1 spec/mongo/auth/x509_spec.rb
mongo-2.16.2 spec/mongo/auth/x509_spec.rb
mongo-2.17.1 spec/mongo/auth/x509_spec.rb
mongo-2.16.1 spec/mongo/auth/x509_spec.rb
mongo-2.17.0 spec/mongo/auth/x509_spec.rb
mongo-2.16.0 spec/mongo/auth/x509_spec.rb
mongo-2.16.0.alpha1 spec/mongo/auth/x509_spec.rb