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 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
|
"""Test the http client module."""
from aioresponses import aioresponses
import pytest
from syrupy.assertion import SnapshotAssertion
from aioazuredevops.client import DEFAULT_API_VERSION, DEFAULT_BASE_URL, DevOpsClient
from . import ORGANIZATION, PAT, PROJECT
BAD_PROJECT_NAME = "badproject"
EMPTY_PROJECT_NAME = "emptyproject"
@pytest.mark.asyncio
async def test_authorize(
devops_client: DevOpsClient,
mock_aioresponse: aioresponses,
snapshot: SnapshotAssertion,
) -> None:
"""Test the authorize method."""
assert not devops_client.authorized
assert devops_client.pat is None
assert await devops_client.authorize(
pat=PAT,
organization=ORGANIZATION,
)
assert devops_client.authorized
assert devops_client.pat == PAT
# Test with unauthorized (GET with PAT)
mock_aioresponse.clear()
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/_apis/projects?api-version={DEFAULT_API_VERSION}",
status=401,
)
assert not await devops_client.authorize(
pat=PAT,
organization=ORGANIZATION,
)
assert not devops_client.authorized
assert devops_client.pat == PAT
@pytest.mark.asyncio
async def test_get_project(
devops_client: DevOpsClient,
mock_aioresponse: aioresponses,
snapshot: SnapshotAssertion,
) -> None:
"""Test the get_project method."""
project = await devops_client.get_project(
organization=ORGANIZATION,
project=PROJECT,
)
assert project == snapshot(
name="project",
)
# Test with authorization (GET with PAT)
assert await devops_client.authorize(
pat=PAT,
organization=ORGANIZATION,
)
project = await devops_client.get_project(
organization=ORGANIZATION,
project=PROJECT,
)
# Test with client error
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/_apis/projects/{BAD_PROJECT_NAME}?api-version={DEFAULT_API_VERSION}&includeCapabilities=true&includeHistory=true",
status=400,
)
bad_project = await devops_client.get_project(
organization=ORGANIZATION,
project=BAD_PROJECT_NAME,
)
assert bad_project is None
# Test with empty response
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/_apis/projects/{EMPTY_PROJECT_NAME}?api-version={DEFAULT_API_VERSION}&includeCapabilities=true&includeHistory=true",
payload=None,
status=200,
)
empty_project = await devops_client.get_project(
organization=ORGANIZATION,
project=EMPTY_PROJECT_NAME,
)
assert empty_project is None
@pytest.mark.asyncio
async def test_get_builds(
devops_client: DevOpsClient,
mock_aioresponse: aioresponses,
snapshot: SnapshotAssertion,
) -> None:
"""Test the get_builds method."""
builds = await devops_client.get_builds(
organization=ORGANIZATION,
project=PROJECT,
parameters="",
)
assert builds == snapshot(
name="builds",
)
# Test with bad request
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{BAD_PROJECT_NAME}/_apis/build/builds?api-version={DEFAULT_API_VERSION}",
status=400,
)
bad_builds = await devops_client.get_builds(
organization=ORGANIZATION,
project=BAD_PROJECT_NAME,
parameters="",
)
assert bad_builds is None
# Test with empty response
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{EMPTY_PROJECT_NAME}/_apis/build/builds?api-version={DEFAULT_API_VERSION}",
payload=None,
status=200,
)
empty_builds = await devops_client.get_builds(
organization=ORGANIZATION,
project=EMPTY_PROJECT_NAME,
parameters="",
)
assert empty_builds is None
@pytest.mark.asyncio
async def test_get_build(
devops_client: DevOpsClient,
mock_aioresponse: aioresponses,
snapshot: SnapshotAssertion,
) -> None:
"""Test the get_build method."""
build = await devops_client.get_build(
organization=ORGANIZATION,
project=PROJECT,
build_id=1,
)
assert build == snapshot(
name="build",
)
# Test with bad request
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{BAD_PROJECT_NAME}/_apis/build/builds/1?api-version={DEFAULT_API_VERSION}",
status=400,
)
bad_build = await devops_client.get_build(
organization=ORGANIZATION,
project=BAD_PROJECT_NAME,
build_id=1,
)
assert bad_build is None
# Test with empty response
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{EMPTY_PROJECT_NAME}/_apis/build/builds/1?api-version={DEFAULT_API_VERSION}",
payload=None,
status=200,
)
empty_build = await devops_client.get_build(
organization=ORGANIZATION,
project=EMPTY_PROJECT_NAME,
build_id=1,
)
assert empty_build is None
@pytest.mark.asyncio
async def test_get_iterations(
devops_client: DevOpsClient,
mock_aioresponse: aioresponses,
snapshot: SnapshotAssertion,
) -> None:
"""Test the get_iterations method."""
iterations = await devops_client.get_iterations(
organization=ORGANIZATION,
project=PROJECT,
)
assert iterations == snapshot(
name="iterations",
)
# Test with authorization (GET with PAT)
assert await devops_client.authorize(
pat=PAT,
organization=ORGANIZATION,
)
iterations = await devops_client.get_iterations(
organization=ORGANIZATION,
project=PROJECT,
)
assert iterations == snapshot(
name="iterations_authorized",
)
# Test with client error
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{BAD_PROJECT_NAME}/_apis/work/teamsettings/iterations?api-version={DEFAULT_API_VERSION}",
status=400,
)
bad_iterations = await devops_client.get_iterations(
organization=ORGANIZATION,
project=BAD_PROJECT_NAME,
)
assert bad_iterations is None
# Test with empty response
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{EMPTY_PROJECT_NAME}/_apis/work/teamsettings/iterations?api-version={DEFAULT_API_VERSION}",
payload=None,
status=200,
)
empty_iterations = await devops_client.get_iterations(
organization=ORGANIZATION,
project=EMPTY_PROJECT_NAME,
)
assert empty_iterations is None
@pytest.mark.asyncio
async def test_get_iteration(
devops_client: DevOpsClient,
mock_aioresponse: aioresponses,
snapshot: SnapshotAssertion,
) -> None:
"""Test the get_iteration method."""
iteration = await devops_client.get_iteration(
organization=ORGANIZATION,
project=PROJECT,
iteration_id="abc123",
)
assert iteration == snapshot(
name="iteration",
)
# Test with bad request
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{BAD_PROJECT_NAME}/_apis/work/teamsettings/iterations/abc123?api-version={DEFAULT_API_VERSION}",
status=400,
)
bad_iteration = await devops_client.get_iteration(
organization=ORGANIZATION,
project=BAD_PROJECT_NAME,
iteration_id="abc123",
)
assert bad_iteration is None
# Test with empty response
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{EMPTY_PROJECT_NAME}/_apis/work/teamsettings/iterations/abc123?api-version={DEFAULT_API_VERSION}",
payload=None,
status=200,
)
empty_iteration = await devops_client.get_iteration(
organization=ORGANIZATION,
project=EMPTY_PROJECT_NAME,
iteration_id="abc123",
)
assert empty_iteration is None
@pytest.mark.asyncio
async def test_get_iteration_work_items(
devops_client: DevOpsClient,
mock_aioresponse: aioresponses,
snapshot: SnapshotAssertion,
) -> None:
"""Test the get_iteration_work_items method."""
iteration_work_items = await devops_client.get_iteration_work_items(
organization=ORGANIZATION,
project=PROJECT,
iteration_id="abc123",
)
assert iteration_work_items == snapshot(
name="iteration_work_items",
)
# Test with bad request
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{BAD_PROJECT_NAME}/_apis/work/teamsettings/iterations/abc123/workitems?api-version={DEFAULT_API_VERSION}",
status=400,
)
bad_iteration_work_items = await devops_client.get_iteration_work_items(
organization=ORGANIZATION,
project=BAD_PROJECT_NAME,
iteration_id="abc123",
)
assert bad_iteration_work_items is None
# Test with empty response
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{EMPTY_PROJECT_NAME}/_apis/work/teamsettings/iterations/abc123/workitems?api-version={DEFAULT_API_VERSION}",
payload=None,
status=200,
)
empty_iteration_work_items = await devops_client.get_iteration_work_items(
organization=ORGANIZATION,
project=EMPTY_PROJECT_NAME,
iteration_id="abc123",
)
assert empty_iteration_work_items is None
@pytest.mark.asyncio
async def test_get_work_items_ids(
devops_client: DevOpsClient,
mock_aioresponse: aioresponses,
snapshot: SnapshotAssertion,
) -> None:
"""Test the get_work_items_ids method."""
work_items_ids = await devops_client.get_work_item_ids(
organization=ORGANIZATION,
project=PROJECT,
max_results=1,
)
assert work_items_ids == snapshot(
name="work_items_ids",
)
# Test with authorization (POST with PAT)
assert await devops_client.authorize(
pat=PAT,
organization=ORGANIZATION,
)
work_items_ids = await devops_client.get_work_item_ids(
organization=ORGANIZATION,
project=PROJECT,
)
assert work_items_ids == snapshot(
name="work_items_ids_authorized",
)
# Test with client error
mock_aioresponse.post(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{BAD_PROJECT_NAME}/_apis/wit/wiql?api-version={DEFAULT_API_VERSION}",
status=400,
)
bad_work_items_ids = await devops_client.get_work_item_ids(
organization=ORGANIZATION,
project=BAD_PROJECT_NAME,
)
assert bad_work_items_ids is None
# Test with empty response
mock_aioresponse.post(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{EMPTY_PROJECT_NAME}/_apis/wit/wiql?api-version={DEFAULT_API_VERSION}",
payload=None,
status=200,
)
empty_work_items_ids = await devops_client.get_work_item_ids(
organization=ORGANIZATION,
project=EMPTY_PROJECT_NAME,
)
assert empty_work_items_ids is None
@pytest.mark.asyncio
async def test_get_work_items(
devops_client: DevOpsClient,
mock_aioresponse: aioresponses,
snapshot: SnapshotAssertion,
) -> None:
"""Test the get_work_items method."""
work_items = await devops_client.get_work_items(
organization=ORGANIZATION,
project=PROJECT,
ids=[1] * 300,
)
assert work_items == snapshot(
name="work_items",
)
# Test bad request
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{BAD_PROJECT_NAME}/_apis/wit/workitems?api-version={DEFAULT_API_VERSION}&errorPolicy=omit&ids=1",
status=400,
)
bad_work_items = await devops_client.get_work_items(
organization=ORGANIZATION,
project=BAD_PROJECT_NAME,
ids=[1],
)
assert bad_work_items is None
# Test with empty response
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{EMPTY_PROJECT_NAME}/_apis/wit/workitems?api-version={DEFAULT_API_VERSION}&errorPolicy=omit&ids=1",
payload=None,
status=200,
)
empty_work_items = await devops_client.get_work_items(
organization=ORGANIZATION,
project=EMPTY_PROJECT_NAME,
ids=[1],
)
assert empty_work_items is None
@pytest.mark.asyncio
async def test_get_work_item_types(
devops_client: DevOpsClient,
mock_aioresponse: aioresponses,
snapshot: SnapshotAssertion,
) -> None:
"""Test the get_work_item_types method."""
work_item_types = await devops_client.get_work_item_types(
organization=ORGANIZATION,
project=PROJECT,
)
assert work_item_types == snapshot(
name="work_item_types",
)
# Test with authorization (GET with PAT)
assert await devops_client.authorize(
pat=PAT,
organization=ORGANIZATION,
)
work_item_types = await devops_client.get_work_item_types(
organization=ORGANIZATION,
project=PROJECT,
)
assert work_item_types == snapshot(
name="work_item_types_authorized",
)
# Test with client error
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{BAD_PROJECT_NAME}/_apis/wit/workitemtypes?api-version={DEFAULT_API_VERSION}",
status=400,
)
bad_work_item_types = await devops_client.get_work_item_types(
organization=ORGANIZATION,
project=BAD_PROJECT_NAME,
)
assert bad_work_item_types is None
# Test with empty response
mock_aioresponse.get(
f"{DEFAULT_BASE_URL}/{ORGANIZATION}/{EMPTY_PROJECT_NAME}/_apis/wit/workitemtypes?api-version={DEFAULT_API_VERSION}",
payload=None,
status=200,
)
empty_work_item_types = await devops_client.get_work_item_types(
organization=ORGANIZATION,
project=EMPTY_PROJECT_NAME,
)
assert empty_work_item_types is None
|