Sha256: 28407e43396ab7591f5df1f12f4e56dcc297c88cb339fe8af41f946a47c6b9de
Contents?: true
Size: 1.2 KB
Versions: 18
Compression:
Stored size: 1.2 KB
Contents
# frozen_string_literal: true # encoding: utf-8 require 'spec_helper' describe Mongo::Operation::RemoveUser do require_no_required_api_version let(:context) { Mongo::Operation::Context.new } describe '#execute' do before do users = root_authorized_client.database.users if users.info('durran').any? users.remove('durran') end users.create( 'durran', password: 'password', roles: [ Mongo::Auth::Roles::READ_WRITE ] ) end let(:operation) do described_class.new(user_name: 'durran', db_name: SpecConfig.instance.test_db) end context 'when user removal was successful' do let!(:response) do operation.execute(root_authorized_primary, context: context) end it 'removes the user from the database' do expect(response).to be_successful end end context 'when removal was not successful' do before do operation.execute(root_authorized_primary, context: context) end it 'raises an exception' do expect { operation.execute(root_authorized_primary, context: context) }.to raise_error(Mongo::Error::OperationFailure) end end end end
Version data entries
18 entries across 18 versions & 1 rubygems