summaryrefslogtreecommitdiff
path: root/gitlab/tests
diff options
context:
space:
mode:
authorMax Wittig <max.wittig@siemens.com>2020-08-29 12:08:34 +0200
committerGitHub <noreply@github.com>2020-08-29 12:08:34 +0200
commit26f95f30a5219243f33d505747c65f798ac6a486 (patch)
tree158c7003b5774799ece2880779c8649c3b0f89dc /gitlab/tests
parent0f42e32cb756766735c7e277f099030f6b3d8fc7 (diff)
parentc2806d8c0454a83dfdafd1bdbf7e10bb28d205e0 (diff)
downloadgitlab-26f95f30a5219243f33d505747c65f798ac6a486.tar.gz
Merge pull request #1159 from python-gitlab/feat/project-artifacts
Feat: Project job artifacts for latest successful pipeline
Diffstat (limited to 'gitlab/tests')
-rw-r--r--gitlab/tests/objects/test_job_artifacts.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/gitlab/tests/objects/test_job_artifacts.py b/gitlab/tests/objects/test_job_artifacts.py
new file mode 100644
index 0000000..c441b4b
--- /dev/null
+++ b/gitlab/tests/objects/test_job_artifacts.py
@@ -0,0 +1,31 @@
+"""
+GitLab API: https://docs.gitlab.com/ee/api/job_artifacts.html
+"""
+
+import pytest
+import responses
+
+
+ref_name = "master"
+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
+
+
+def test_download_artifacts_by_ref_name(gl, binary_content, resp_artifacts_by_ref_name):
+ project = gl.projects.get(1, lazy=True)
+ artifacts = project.artifacts(ref_name=ref_name, job=job)
+ assert artifacts == binary_content