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
|
"""
GitLab API: https://docs.gitlab.com/ee/api/job_artifacts.html
"""
import pytest
import responses
ref_name = "main"
job = "build"
@pytest.fixture
def resp_artifacts_by_ref_name(binary_content):
url = f"http://localhost/api/v4/projects/1/jobs/artifacts/{ref_name}/download?job={job}"
with responses.RequestsMock() as rsps:
rsps.add(
method=responses.GET,
url=url,
body=binary_content,
content_type="application/octet-stream",
status=200,
)
yield rsps
@pytest.fixture
def resp_project_artifacts_delete():
with responses.RequestsMock() as rsps:
rsps.add(
method=responses.DELETE,
url="http://localhost/api/v4/projects/1/artifacts",
status=204,
)
yield rsps
@pytest.fixture
def resp_job_artifact_bytes_range(binary_content):
with responses.RequestsMock() as rsps:
rsps.add(
method=responses.GET,
url="http://localhost/api/v4/projects/1/jobs/123/artifacts",
body=binary_content[:10],
content_type="application/octet-stream",
status=206,
match=[responses.matchers.header_matcher({"Range": "bytes=0-9"})],
)
yield rsps
def test_project_artifacts_delete(gl, resp_project_artifacts_delete):
project = gl.projects.get(1, lazy=True)
project.artifacts.delete()
def test_project_artifacts_download_by_ref_name(
gl, binary_content, resp_artifacts_by_ref_name
):
project = gl.projects.get(1, lazy=True)
artifacts = project.artifacts.download(ref_name=ref_name, job=job)
assert artifacts == binary_content
def test_job_artifact_download_bytes_range(
gl, binary_content, resp_job_artifact_bytes_range
):
project = gl.projects.get(1, lazy=True)
job = project.jobs.get(123, lazy=True)
artifacts = job.artifacts(extra_headers={"Range": "bytes=0-9"})
assert len(artifacts) == 10
|