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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
require 'spec_helper'
describe Mongo::Auth::User do
let(:options) do
{ database: 'testing', user: 'user', password: 'pass' }
end
let(:user) do
described_class.new(options)
end
describe '#auth_key' do
let(:nonce) do
end
let(:expected) do
Digest::MD5.hexdigest("#{nonce}#{user.name}#{user.hashed_password}")
end
it 'returns the users authentication key' do
expect(user.auth_key(nonce)).to eq(expected)
end
end
describe '#encoded_name' do
context 'when the user name contains an =' do
let(:options) do
{ user: 'user=' }
end
it 'escapes the = character to =3D' do
expect(user.encoded_name).to eq('user=3D')
end
it 'returns a UTF-8 string' do
expect(user.encoded_name.encoding.name).to eq('UTF-8')
end
end
context 'when the user name contains a ,' do
let(:options) do
{ user: 'user,' }
end
it 'escapes the , character to =2C' do
expect(user.encoded_name).to eq('user=2C')
end
it 'returns a UTF-8 string' do
expect(user.encoded_name.encoding.name).to eq('UTF-8')
end
end
context 'when the user name contains no special characters' do
it 'does not alter the user name' do
expect(user.name).to eq('user')
end
it 'returns a UTF-8 string' do
expect(user.encoded_name.encoding.name).to eq('UTF-8')
end
end
end
describe '#initialize' do
it 'sets the database' do
expect(user.database).to eq('testing')
end
it 'sets the name' do
expect(user.name).to eq('user')
end
it 'sets the password' do
expect(user.password).to eq('pass')
end
end
describe '#hashed_password' do
let(:expected) do
Digest::MD5.hexdigest("user:mongo:pass")
end
it 'returns the hashed password' do
expect(user.hashed_password).to eq(expected)
end
end
describe '#mechanism' do
context 'when the option is provided' do
let(:options) do
{ database: 'testing', user: 'user', password: 'pass', auth_mech: :plain }
end
let(:user) do
described_class.new(options)
end
it 'returns the option' do
expect(user.mechanism).to eq(:plain)
end
end
context 'when no option is provided' do
let(:user) do
described_class.new(options)
end
it 'returns the default' do
expect(user.mechanism).to eq(:mongodb_cr)
end
end
end
describe '#auth_mech_properties' do
context 'when the option is provided' do
let(:auth_mech_properties) do
{ service_name: 'test',
service_realm: 'test',
canonicalize_host_name: true }
end
let(:options) do
{ database: 'testing', user: 'user', password: 'pass', auth_mech_properties: auth_mech_properties }
end
let(:user) do
described_class.new(options)
end
it 'returns the option' do
expect(user.auth_mech_properties).to eq(auth_mech_properties)
end
end
context 'when no option is provided' do
let(:user) do
described_class.new(options)
end
it 'returns an empty hash' do
expect(user.auth_mech_properties).to eq({})
end
end
end
describe '#roles' do
context 'when roles are provided' do
let(:roles) do
[ Mongo::Auth::Roles::ROOT ]
end
let(:user) do
described_class.new(roles: roles)
end
it 'returns the roles' do
expect(user.roles).to eq(roles)
end
end
context 'when no roles are provided' do
let(:user) do
described_class.new({})
end
it 'returns an empty array' do
expect(user.roles).to be_empty
end
end
end
end
|