-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_github.py
58 lines (53 loc) · 1.68 KB
/
test_github.py
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
import responses
import src.github
from unittest import TestCase
from src.github import is_github_key_added
from src.enums import HttpStatusCode
class TestGithub(TestCase):
@responses.activate
def test_is_github_key_added(self):
GITHUB_API_URL = "https://api.github.com"
GITHUB_ACCESS_TOKEN = "secret"
GITHUB_KEY_TITLE = "new-ssh-key"
SSH_KEY_CONTENT = "ssh-key-content"
githab_url = f"{GITHUB_API_URL}/user/keys"
response_args_mock = {
"method": responses.POST,
"url": githab_url,
"headers": {
"Accept": "application/vnd.github.v3+json",
"Authorization": f"token {GITHUB_ACCESS_TOKEN}",
},
"json": {
"key": SSH_KEY_CONTENT,
"title": GITHUB_KEY_TITLE
},
}
responses.add(
**response_args_mock,
status=HttpStatusCode.CREATED.value
)
responses.add(
**response_args_mock,
status=HttpStatusCode.UNPROCESSABLE_ENTITY.value
)
responses.add(
**response_args_mock,
status=HttpStatusCode.NOT_FOUND.value
)
src.github.GITHUB_API_URL = GITHUB_API_URL
src.github.GITHUB_ACCESS_TOKEN = GITHUB_ACCESS_TOKEN
src.github.GITHUB_KEY_TITLE = GITHUB_KEY_TITLE
src.github.get_ssh_key_content = lambda: SSH_KEY_CONTENT
self.assertEqual(
is_github_key_added(),
True
)
self.assertEqual(
is_github_key_added(),
True
)
self.assertEqual(
is_github_key_added(),
False
)