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 47 48 49 50 51 52 53
|
# frozen_string_literal: true
# rubocop:todo all
require 'spec_helper'
describe Mongo::Operation::CreateUser do
require_no_required_api_version
let(:context) { Mongo::Operation::Context.new }
describe '#execute' do
let(:user) do
Mongo::Auth::User.new(
user: 'durran',
password: 'password',
roles: [ Mongo::Auth::Roles::READ_WRITE ]
)
end
let(:operation) do
described_class.new(user: user, db_name: SpecConfig.instance.test_db)
end
before do
users = root_authorized_client.database.users
if users.info('durran').any?
users.remove('durran')
end
end
context 'when user creation was successful' do
let!(:response) do
operation.execute(root_authorized_primary, context: context)
end
it 'saves the user in the database' do
expect(response).to be_successful
end
end
context 'when creation was not successful' do
it 'raises an exception' do
expect {
operation.execute(root_authorized_primary, context: context)
operation.execute(root_authorized_primary, context: context)
}.to raise_error(Mongo::Error::OperationFailure)
end
end
end
end
|