-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_webhooks.py
More file actions
212 lines (171 loc) · 5.57 KB
/
test_webhooks.py
File metadata and controls
212 lines (171 loc) · 5.57 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
import hashlib
import hmac
import json
import pytest
from core.models import Webhook
from django.conf import settings
@pytest.mark.django_db
def test_internal_wh_endpoint_checks_authorization_token(client):
webhook_body = {
"event": "test1",
"content": {
"random": "content",
},
}
response = client.post(
"/webhook/internal/",
json.dumps(webhook_body),
content_type="application/json",
)
assert response.status_code == 403
assert response["Content-Type"] == "application/json"
assert response.json()["status"] == "bad"
assert response.json()["message"] == "Authorization token is missing"
@pytest.mark.django_db
def test_internal_wh_endpoint_fails_with_bad_token(client):
webhook_body = {
"event": "test1",
"content": {
"random": "content",
},
}
response = client.post(
"/webhook/internal/",
json.dumps(webhook_body),
content_type="application/json",
HTTP_AUTHORIZATION="random-incorrect-token",
)
assert response.status_code == 403
assert response["Content-Type"] == "application/json"
assert response.json()["status"] == "bad"
assert response.json()["message"] == "Token doesn't match"
@pytest.mark.django_db
def test_internal_wh_endpoint_works_with_correct_token(client):
webhook_body = {
"event": "test1",
"content": {
"random": "content",
},
}
response = client.post(
"/webhook/internal/",
json.dumps(webhook_body),
content_type="application/json",
HTTP_AUTHORIZATION=settings.WEBHOOK_INTERNAL_TOKEN,
)
wh = Webhook.objects.get()
assert response.status_code == 200
assert response["Content-Type"] == "application/json"
assert response.json()["status"] == "created"
assert response.json()["guid"] == str(wh.uuid)
@pytest.mark.django_db
def test_github_webhook_endpoint_checks_authorization_token(client):
webhook_body = {}
response = client.post(
"/webhook/github/",
json.dumps(webhook_body),
content_type="application/json",
)
assert response.status_code == 403
assert response.content == "X-Hub-Signature-256 is missing".encode("utf-8")
def sign_github_webhook(webhook_body):
hashed = hmac.new(
settings.GITHUB_WEBHOOK_SECRET_TOKEN.encode("utf-8"),
msg=json.dumps(webhook_body).encode("utf-8"),
digestmod=hashlib.sha256,
)
signature = "sha256=" + hashed.hexdigest()
return signature
@pytest.mark.django_db
def test_github_webhook_endpoint_fails_with_bad_token(client):
webhook_body = {
"event": "test1",
"content": {
"random": "content",
},
}
response = client.post(
"/webhook/github/",
json.dumps(webhook_body),
content_type="application/json",
headers={"X-Hub-Signature-256": "bad signature"},
)
assert response.status_code == 403
assert response.content == "Signatures don't match".encode("utf-8")
assert True
@pytest.mark.django_db
def test_github_webhook_endpoint_works_with_correct_token(client):
webhook_body = {
"event": "test1",
"content": {
"random": "content",
},
}
signature = sign_github_webhook(webhook_body)
response = client.post(
"/webhook/github/",
json.dumps(webhook_body),
content_type="application/json",
headers={"X-Hub-Signature-256": signature},
)
assert response.status_code == 200
wh = Webhook.objects.get()
assert response["Content-Type"] == "application/json"
assert response.json()["status"] == "created"
assert response.json()["guid"] == str(wh.uuid)
assert wh.source == "github"
def sign_zammad_webhook(webhook_body):
hashed = hmac.new(
settings.ZAMMAD_WEBHOOK_SECRET_TOKEN.encode("utf-8"),
msg=json.dumps(webhook_body).encode("utf-8"),
digestmod=hashlib.sha1,
)
signature = "sha1=" + hashed.hexdigest()
return signature
@pytest.mark.django_db
def test_zammad_webhook_endpoint_checks_authorization_token(client):
webhook_body = {}
response = client.post(
"/webhook/zammad/",
json.dumps(webhook_body),
content_type="application/json",
)
assert response.status_code == 403
assert response.content == "X-Hub-Signature is missing".encode("utf-8")
@pytest.mark.django_db
def test_zammad_webhook_endpoint_fails_with_bad_token(client):
webhook_body = {
"event": "test1",
"content": {
"random": "content",
},
}
response = client.post(
"/webhook/zammad/",
json.dumps(webhook_body),
content_type="application/json",
headers={"X-Hub-Signature": "bad signature"},
)
assert response.status_code == 403
assert response.content == "Signatures don't match".encode("utf-8")
@pytest.mark.django_db
def test_zammad_webhook_endpoint_works_with_correct_token(client):
webhook_body = {
"event": "test1",
"content": {
"random": "content",
},
}
signature = sign_zammad_webhook(webhook_body)
response = client.post(
"/webhook/zammad/",
json.dumps(webhook_body),
content_type="application/json",
headers={"X-Hub-Signature": signature},
)
assert response.status_code == 200
wh = Webhook.objects.get()
assert response["Content-Type"] == "application/json"
assert response.json()["status"] == "created"
assert response.json()["guid"] == str(wh.uuid)
assert wh.source == "zammad"