Sha256: 4656923049757e069c1ecf4d1c32de5226d440c20d396282977386f4678a9eec

Contents?: true

Size: 1.21 KB

Versions: 2

Compression:

Stored size: 1.21 KB

Contents

# Copyright (C) 2009-2013 MongoDB, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'test_helper'
require 'shared/authentication/basic_auth_shared'
require 'shared/authentication/sasl_plain_shared'
require 'shared/authentication/bulk_api_auth_shared'
require 'shared/authentication/gssapi_shared'

class ReplicaSetAuthenticationTest < Test::Unit::TestCase
  include Mongo

  include BasicAuthTests
  include SASLPlainTests
  include BulkAPIAuthTests
  include GSSAPITests

  def setup
    ensure_cluster(:rs)
    @client    = MongoReplicaSetClient.from_uri(@uri)
    @admin     = @client['admin']
    @version   = @client.server_version
    @db        = @client['ruby-test']
    @host_info = @rs.repl_set_seeds.join(',')
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mongo-1.12.0.rc0 test/replica_set/authentication_test.rb
mongo-1.11.1 test/replica_set/authentication_test.rb