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
|
"""
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(no_content):
with responses.RequestsMock() as rsps:
rsps.add(
method=responses.DELETE,
url="http://localhost/api/v4/projects/1/artifacts",
json=no_content,
content_type="application/json",
status=204,
)
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_project_artifacts_by_ref_name_warns(
gl, binary_content, resp_artifacts_by_ref_name
):
project = gl.projects.get(1, lazy=True)
with pytest.warns(DeprecationWarning):
artifacts = project.artifacts(ref_name=ref_name, job=job)
assert artifacts == binary_content
|