-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathtest_auth_client.py
More file actions
386 lines (314 loc) · 13.3 KB
/
Copy pathtest_auth_client.py
File metadata and controls
386 lines (314 loc) · 13.3 KB
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
from unittest.mock import AsyncMock, MagicMock
from uuid import UUID
from yarl import URL
from ai.backend.client.v2.base_client import BackendAIAnonymousClient, BackendAIAuthClient
from ai.backend.client.v2.config import ClientConfig
from ai.backend.client.v2.domains.auth import AuthClient
from ai.backend.common.dto.manager.auth.request import (
AuthorizeRequest,
GetRoleRequest,
SignoutRequest,
SignupRequest,
UpdateFullNameRequest,
UpdatePasswordNoAuthRequest,
UpdatePasswordRequest,
UploadSSHKeypairRequest,
VerifyAuthRequest,
)
from ai.backend.common.dto.manager.auth.response import (
AuthorizeResponse,
GetRoleResponse,
GetSSHKeypairResponse,
SignoutResponse,
SignupResponse,
SSHKeypairResponse,
UpdateFullNameResponse,
UpdatePasswordNoAuthResponse,
UpdatePasswordResponse,
VerifyAuthResponse,
)
from ai.backend.common.dto.manager.auth.types import AuthResponseType, AuthTokenType
from .conftest import MockAuth
_DEFAULT_CONFIG = ClientConfig(endpoint=URL("https://api.example.com"))
def _make_client(
mock_session: MagicMock | None = None,
config: ClientConfig | None = None,
) -> BackendAIAuthClient:
return BackendAIAuthClient(
config or _DEFAULT_CONFIG,
MockAuth(),
mock_session or MagicMock(),
)
def _make_anon_client(
mock_session: MagicMock | None = None,
config: ClientConfig | None = None,
) -> BackendAIAnonymousClient:
return BackendAIAnonymousClient(
config or _DEFAULT_CONFIG,
mock_session or MagicMock(),
)
def _make_request_session(resp: AsyncMock) -> MagicMock:
"""Build a mock session whose ``request()`` returns *resp* as a context manager."""
mock_ctx = AsyncMock()
mock_ctx.__aenter__ = AsyncMock(return_value=resp)
mock_ctx.__aexit__ = AsyncMock(return_value=False)
mock_session = MagicMock()
mock_session.request = MagicMock(return_value=mock_ctx)
return mock_session
class TestAuthClient:
async def test_authorize(self, sample_client_type_id: UUID) -> None:
mock_resp = AsyncMock()
mock_resp.status = 200
mock_resp.json = AsyncMock(
return_value={
"data": {
"response_type": AuthResponseType.SUCCESS,
"access_key": "AKTEST",
"secret_key": "sktest",
"role": "admin",
"status": "active",
"session_token": "test_session_token",
"user_id": "12345678-1234-5678-1234-567812345678",
"type": AuthTokenType.KEYPAIR,
},
}
)
mock_session = _make_request_session(mock_resp)
anon_client = _make_anon_client(mock_session)
auth_client = AuthClient(_make_client(), anon_client)
request = AuthorizeRequest(
type=AuthTokenType.KEYPAIR,
domain="default",
username="user@example.com",
password="secret",
client_type_id=sample_client_type_id,
)
result = await auth_client.authorize(request)
assert isinstance(result, AuthorizeResponse)
assert result.data.access_key == "AKTEST"
assert result.data.secret_key == "sktest"
assert result.data.role == "admin"
call_args = mock_session.request.call_args
assert call_args.args[0] == "POST"
assert "/auth/authorize" in str(call_args.args[1])
assert call_args.kwargs["json"]["type"] == "keypair"
assert call_args.kwargs["json"]["domain"] == "default"
async def test_signup(self) -> None:
mock_resp = AsyncMock()
mock_resp.status = 200
mock_resp.json = AsyncMock(
return_value={
"access_key": "AKnew",
"secret_key": "sknew",
}
)
mock_session = _make_request_session(mock_resp)
anon_client = _make_anon_client(mock_session)
auth_client = AuthClient(_make_client(), anon_client)
request = SignupRequest(
domain="default",
email="new@example.com",
password="newpass",
username="newuser",
)
result = await auth_client.signup(request)
assert isinstance(result, SignupResponse)
assert result.access_key == "AKnew"
assert result.secret_key == "sknew"
call_args = mock_session.request.call_args
assert call_args.args[0] == "POST"
assert "/auth/signup" in str(call_args.args[1])
assert call_args.kwargs["json"]["email"] == "new@example.com"
async def test_signout(self) -> None:
mock_resp = AsyncMock()
mock_resp.status = 200
mock_resp.json = AsyncMock(return_value={})
mock_session = _make_request_session(mock_resp)
client = _make_client(mock_session)
auth_client = AuthClient(client, _make_anon_client())
request = SignoutRequest(email="user@example.com", password="secret")
result = await auth_client.signout(request)
assert isinstance(result, SignoutResponse)
call_args = mock_session.request.call_args
assert call_args.args[0] == "POST"
assert "/auth/signout" in str(call_args.args[1])
assert call_args.kwargs["json"]["email"] == "user@example.com"
async def test_get_role(self) -> None:
group_id = UUID("12345678-1234-1234-1234-123456789abc")
mock_resp = AsyncMock()
mock_resp.status = 200
mock_resp.json = AsyncMock(
return_value={
"global_role": "superadmin",
"domain_role": "admin",
"group_role": "admin",
}
)
mock_session = _make_request_session(mock_resp)
client = _make_client(mock_session)
auth_client = AuthClient(client, _make_anon_client())
request = GetRoleRequest(group=group_id)
result = await auth_client.get_role(request)
assert isinstance(result, GetRoleResponse)
assert result.global_role == "superadmin"
assert result.domain_role == "admin"
assert result.group_role == "admin"
call_args = mock_session.request.call_args
assert call_args.args[0] == "GET"
assert "/auth/role" in str(call_args.args[1])
assert call_args.kwargs["params"] == {"group": str(group_id)}
assert call_args.kwargs["json"] is None
async def test_get_role_without_group(self) -> None:
mock_resp = AsyncMock()
mock_resp.status = 200
mock_resp.json = AsyncMock(
return_value={
"global_role": "user",
"domain_role": "user",
"group_role": None,
}
)
mock_session = _make_request_session(mock_resp)
client = _make_client(mock_session)
auth_client = AuthClient(client, _make_anon_client())
request = GetRoleRequest()
result = await auth_client.get_role(request)
assert isinstance(result, GetRoleResponse)
assert result.global_role == "user"
assert result.group_role is None
call_args = mock_session.request.call_args
assert call_args.kwargs["params"] == {}
async def test_update_password(self) -> None:
mock_resp = AsyncMock()
mock_resp.status = 200
mock_resp.json = AsyncMock(return_value={"error_msg": None})
mock_session = _make_request_session(mock_resp)
client = _make_client(mock_session)
auth_client = AuthClient(client, _make_anon_client())
request = UpdatePasswordRequest(
old_password="old",
new_password="new",
new_password2="new",
)
result = await auth_client.update_password(request)
assert isinstance(result, UpdatePasswordResponse)
assert result.error_msg is None
call_args = mock_session.request.call_args
assert call_args.args[0] == "POST"
assert "/auth/update-password" in str(call_args.args[1])
async def test_update_password_no_auth(self) -> None:
mock_resp = AsyncMock()
mock_resp.status = 200
mock_resp.json = AsyncMock(
return_value={"password_changed_at": "2025-01-01T00:00:00+00:00"}
)
mock_session = _make_request_session(mock_resp)
anon_client = _make_anon_client(mock_session)
auth_client = AuthClient(_make_client(), anon_client)
request = UpdatePasswordNoAuthRequest(
domain="default",
username="user@example.com",
current_password="expired",
new_password="fresh",
)
result = await auth_client.update_password_no_auth(request)
assert isinstance(result, UpdatePasswordNoAuthResponse)
assert result.password_changed_at == "2025-01-01T00:00:00+00:00"
call_args = mock_session.request.call_args
assert call_args.args[0] == "POST"
assert "/auth/update-password-no-auth" in str(call_args.args[1])
async def test_update_full_name(self) -> None:
mock_resp = AsyncMock()
mock_resp.status = 200
mock_resp.json = AsyncMock(return_value={})
mock_session = _make_request_session(mock_resp)
client = _make_client(mock_session)
auth_client = AuthClient(client, _make_anon_client())
request = UpdateFullNameRequest(
email="user@example.com",
full_name="New Name",
)
result = await auth_client.update_full_name(request)
assert isinstance(result, UpdateFullNameResponse)
call_args = mock_session.request.call_args
assert call_args.args[0] == "POST"
assert "/auth/update-full-name" in str(call_args.args[1])
assert call_args.kwargs["json"]["full_name"] == "New Name"
async def test_get_ssh_keypair(self) -> None:
mock_resp = AsyncMock()
mock_resp.status = 200
mock_resp.json = AsyncMock(return_value={"ssh_public_key": "ssh-rsa AAAA... user@host"})
mock_session = _make_request_session(mock_resp)
client = _make_client(mock_session)
auth_client = AuthClient(client, _make_anon_client())
result = await auth_client.get_ssh_keypair()
assert isinstance(result, GetSSHKeypairResponse)
assert result.ssh_public_key == "ssh-rsa AAAA... user@host"
call_args = mock_session.request.call_args
assert call_args.args[0] == "GET"
assert "/auth/ssh-keypair" in str(call_args.args[1])
assert call_args.kwargs["json"] is None
async def test_generate_ssh_keypair(self) -> None:
mock_resp = AsyncMock()
mock_resp.status = 200
mock_resp.json = AsyncMock(
return_value={
"ssh_public_key": "ssh-rsa AAAA... generated",
"ssh_private_key": "-----BEGIN RSA PRIVATE KEY-----\n...",
}
)
mock_session = _make_request_session(mock_resp)
client = _make_client(mock_session)
auth_client = AuthClient(client, _make_anon_client())
result = await auth_client.generate_ssh_keypair()
assert isinstance(result, SSHKeypairResponse)
assert result.ssh_public_key == "ssh-rsa AAAA... generated"
assert "PRIVATE KEY" in result.ssh_private_key
call_args = mock_session.request.call_args
assert call_args.args[0] == "PATCH"
assert "/auth/ssh-keypair" in str(call_args.args[1])
assert call_args.kwargs["json"] is None
async def test_upload_ssh_keypair(self) -> None:
mock_resp = AsyncMock()
mock_resp.status = 200
mock_resp.json = AsyncMock(
return_value={
"ssh_public_key": "ssh-rsa AAAA... uploaded",
"ssh_private_key": "-----BEGIN RSA PRIVATE KEY-----\nuploaded",
}
)
mock_session = _make_request_session(mock_resp)
client = _make_client(mock_session)
auth_client = AuthClient(client, _make_anon_client())
request = UploadSSHKeypairRequest(
pubkey="ssh-rsa AAAA... uploaded",
privkey="-----BEGIN RSA PRIVATE KEY-----\nuploaded",
)
result = await auth_client.upload_ssh_keypair(request)
assert isinstance(result, SSHKeypairResponse)
assert result.ssh_public_key == "ssh-rsa AAAA... uploaded"
call_args = mock_session.request.call_args
assert call_args.args[0] == "POST"
assert "/auth/ssh-keypair" in str(call_args.args[1])
assert call_args.kwargs["json"]["pubkey"] == "ssh-rsa AAAA... uploaded"
async def test_verify_auth(self) -> None:
mock_resp = AsyncMock()
mock_resp.status = 200
mock_resp.json = AsyncMock(
return_value={
"authorized": "yes",
"echo": "hello",
}
)
mock_session = _make_request_session(mock_resp)
client = _make_client(mock_session)
auth_client = AuthClient(client, _make_anon_client())
request = VerifyAuthRequest(echo="hello")
result = await auth_client.verify_auth(request)
assert isinstance(result, VerifyAuthResponse)
assert result.authorized == "yes"
assert result.echo == "hello"
call_args = mock_session.request.call_args
assert call_args.args[0] == "POST"
assert "/auth/test" in str(call_args.args[1])
assert call_args.kwargs["json"]["echo"] == "hello"