summaryrefslogtreecommitdiff
path: root/tests/unit/objects/test_keys.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/objects/test_keys.py')
-rw-r--r--tests/unit/objects/test_keys.py54
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/unit/objects/test_keys.py b/tests/unit/objects/test_keys.py
deleted file mode 100644
index 187a309..0000000
--- a/tests/unit/objects/test_keys.py
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-GitLab API: https://docs.gitlab.com/ce/api/keys.html
-"""
-import pytest
-import responses
-
-from gitlab.v4.objects import Key
-
-key_content = {"id": 1, "title": "title", "key": "ssh-keytype AAAAC3Nza/key comment"}
-
-
-@pytest.fixture
-def resp_get_key_by_id():
- with responses.RequestsMock() as rsps:
- rsps.add(
- method=responses.GET,
- url="http://localhost/api/v4/keys/1",
- json=key_content,
- content_type="application/json",
- status=200,
- )
- yield rsps
-
-
-@pytest.fixture
-def resp_get_key_by_fingerprint():
- with responses.RequestsMock() as rsps:
- rsps.add(
- method=responses.GET,
- url="http://localhost/api/v4/keys?fingerprint=foo",
- json=key_content,
- content_type="application/json",
- status=200,
- )
- yield rsps
-
-
-def test_get_key_by_id(gl, resp_get_key_by_id):
- key = gl.keys.get(1)
- assert isinstance(key, Key)
- assert key.id == 1
- assert key.title == "title"
-
-
-def test_get_key_by_fingerprint(gl, resp_get_key_by_fingerprint):
- key = gl.keys.get(fingerprint="foo")
- assert isinstance(key, Key)
- assert key.id == 1
- assert key.title == "title"
-
-
-def test_get_key_missing_attrs(gl):
- with pytest.raises(AttributeError):
- gl.keys.get()