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 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe API::Support::GitAccessActor do
let(:user) { nil }
let(:key) { nil }
subject { described_class.new(user: user, key: key) }
describe '.from_params' do
let_it_be(:user) { create(:user) }
let_it_be(:key) { create(:key, user: user) }
context 'with params that are valid' do
it 'returns an instance of API::Support::GitAccessActor' do
params = { key_id: key.id }
expect(described_class.from_params(params)).to be_instance_of(described_class)
end
end
context 'with params that are invalid' do
it "returns an instance of #{described_class}" do
expect(described_class.from_params({})).to be_instance_of(described_class)
end
end
context 'when passing an identifier used gitaly' do
it 'finds the user based on an identifier' do
expect(described_class).to receive(:identify).and_call_original
expect(described_class.from_params(identifier: "key-#{key.id}").user).to eq(key.user)
end
context 'when identifier is for a deploy key' do
let_it_be(:key) { create(:deploy_key, user: user) }
it 'finds the deploy key based on an identifier' do
expect(described_class).to receive(:identify).and_call_original
actor = described_class.from_params(identifier: "key-#{key.id}")
expect(actor.key).to eq(key)
expect(actor.user).to eq(key.user)
end
end
end
context 'when passing a signing key' do
let_it_be(:key) { create(:key, usage_type: :signing, user: user) }
it 'does not identify the user' do
actor = described_class.from_params({ identifier: "key-#{key.id}" })
expect(actor).to be_instance_of(described_class)
expect(actor.user).to be_nil
end
it 'does not identify the key' do
actor = described_class.from_params({ key_id: key.id })
expect(actor).to be_instance_of(described_class)
expect(actor.key).to be_nil
end
end
context 'when passing an auth-only key' do
let_it_be(:key) { create(:key, usage_type: :auth, user: user) }
it 'identifies the user' do
actor = described_class.from_params({ identifier: "key-#{key.id}" })
expect(actor).to be_instance_of(described_class)
expect(actor.user).to eq(key.user)
end
it 'identifies the key' do
actor = described_class.from_params({ key_id: key.id })
expect(actor).to be_instance_of(described_class)
expect(actor.key).to eq(key)
end
end
end
describe 'attributes' do
describe '#user' do
context 'when initialized with a User' do
let(:user) { build(:user) }
it 'returns the User' do
expect(subject.user).to eq(user)
end
end
context 'when initialized with a Key' do
let(:user_for_key) { build(:user) }
let(:key) { create(:key, user: user_for_key) }
it 'returns the User associated to the Key' do
expect(subject.user).to eq(user_for_key)
end
end
end
end
describe '#key_or_user' do
context 'when params contains a :key_id' do
it 'is an instance of Key' do
key = create(:key)
params = { key_id: key.id }
expect(described_class.from_params(params).key_or_user).to eq(key)
end
end
context 'when params contains a :user_id' do
it 'is an instance of User' do
user = create(:user)
params = { user_id: user.id }
expect(described_class.from_params(params).key_or_user).to eq(user)
end
end
context 'when params contains a :username' do
it 'is an instance of User (via UserFinder)' do
user = create(:user)
params = { username: user.username }
expect(described_class.from_params(params).key_or_user).to eq(user)
end
end
end
describe '#deploy_key_or_user' do
it 'returns a deploy key when the params contains deploy key' do
key = create(:deploy_key)
params = { key_id: key.id }
expect(described_class.from_params(params).deploy_key_or_user).to eq(key)
end
it 'returns a user when the params contains personal key' do
key = create(:key)
params = { key_id: key.id }
expect(described_class.from_params(params).deploy_key_or_user).to eq(key.user)
end
it 'returns a user when the params contains user id' do
user = create(:user)
params = { user_id: user.id }
expect(described_class.from_params(params).deploy_key_or_user).to eq(user)
end
it 'returns a user when the params contains user name' do
user = create(:user)
params = { username: user.username }
expect(described_class.from_params(params).deploy_key_or_user).to eq(user)
end
end
describe '#username' do
context 'when initialized with a User' do
let(:user) { build(:user) }
it 'returns the username' do
expect(subject.username).to eq(user.username)
end
end
context 'when initialized with a Key' do
let(:key) { create(:key, user: user_for_key) }
context 'that has no User associated' do
let(:user_for_key) { nil }
it 'returns nil' do
expect(subject.username).to be_nil
end
end
context 'that has a User associated' do
let(:user_for_key) { build(:user) }
it 'returns the username of the User associated to the Key' do
expect(subject.username).to eq(user_for_key.username)
end
end
end
end
describe '#key_details' do
context 'when initialized with a User' do
let(:user) { build(:user) }
it 'returns an empty Hash' do
expect(subject.key_details).to eq({})
end
end
context 'when initialized with a Key' do
let(:key) { create(:key, user: user_for_key) }
context 'that has no User associated' do
let(:user_for_key) { nil }
it 'returns a Hash' do
expect(subject.key_details).to eq({ gl_key_type: 'key', gl_key_id: key.id })
end
end
context 'that has a User associated' do
let(:user_for_key) { build(:user) }
it 'returns a Hash' do
expect(subject.key_details).to eq({ gl_key_type: 'key', gl_key_id: key.id })
end
end
end
context 'when initialized with a DeployKey' do
let(:key) { create(:deploy_key) }
it 'returns a Hash' do
expect(subject.key_details).to eq({ gl_key_type: 'deploy_key', gl_key_id: key.id })
end
end
end
describe '#update_last_used_at!' do
context 'when initialized with a User' do
let(:user) { build(:user) }
it 'does nothing' do
expect(user).not_to receive(:update_last_used_at)
subject.update_last_used_at!
end
end
context 'when initialized with a Key' do
let(:key) { create(:key) }
it 'updates update_last_used_at' do
expect(key).to receive(:update_last_used_at)
subject.update_last_used_at!
end
end
end
end
|