This repository was archived by the owner on Dec 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_pastebin.py
212 lines (179 loc) · 7.52 KB
/
test_pastebin.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
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 unittest
from flask_testing import TestCase
from pastebin import app, users, notes
import json
class TestPastebin(TestCase):
def create_app(self):
app.config["TESTING"] = True
return app
def setUp(self):
self.client = self.app.test_client()
users.clear()
notes.clear()
def register_and_login(self, user_id="testuser", password="testpass"):
self.client.post(
"/api/register", json={"user_id": user_id, "password": password}
)
login_response = self.client.post(
"/api/login", json={"user_id": user_id, "password": password}
)
return login_response.json["token"]
def test_register_user(self):
response = self.client.post(
"/api/register", json={"user_id": "testuser", "password": "testpass"}
)
self.assertEqual(response.status_code, 201)
self.assertIn("api_key", response.json)
def test_register_duplicate_user(self):
self.client.post(
"/api/register", json={"user_id": "testuser", "password": "testpass"}
)
response = self.client.post(
"/api/register", json={"user_id": "testuser", "password": "testpass2"}
)
self.assertEqual(response.status_code, 409)
def test_login_user(self):
self.client.post(
"/api/register", json={"user_id": "testuser", "password": "testpass"}
)
response = self.client.post(
"/api/login", json={"user_id": "testuser", "password": "testpass"}
)
self.assertEqual(response.status_code, 200)
self.assertIn("token", response.json)
def test_login_invalid_credentials(self):
self.client.post(
"/api/register", json={"user_id": "testuser", "password": "testpass"}
)
response = self.client.post(
"/api/login", json={"user_id": "testuser", "password": "wrongpass"}
)
self.assertEqual(response.status_code, 401)
def test_create_note(self):
token = self.register_and_login()
response = self.client.post(
"/api/notes",
json={"id": "testnote", "text": "This is a test note", "isPublic": True},
headers={"Authorization": f"Bearer {token}"},
)
self.assertEqual(response.status_code, 201)
self.assertEqual(response.json, {"id": "testnote"})
def test_create_duplicate_note(self):
token = self.register_and_login()
self.client.post(
"/api/notes",
json={"id": "testnote", "text": "This is a test note", "isPublic": True},
headers={"Authorization": f"Bearer {token}"},
)
response = self.client.post(
"/api/notes",
json={
"id": "testnote",
"text": "This is another test note",
"isPublic": True,
},
headers={"Authorization": f"Bearer {token}"},
)
self.assertEqual(response.status_code, 409)
def test_read_note(self):
token = self.register_and_login()
self.client.post(
"/api/notes",
json={"id": "testnote", "text": "This is a test note", "isPublic": True},
headers={"Authorization": f"Bearer {token}"},
)
response = self.client.get(
"/api/notes/testnote", headers={"Authorization": f"Bearer {token}"}
)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json["id"], "testnote")
self.assertEqual(response.json["text"], "This is a test note")
self.assertEqual(response.json["isPublic"], True)
def test_update_note(self):
token = self.register_and_login()
self.client.post(
"/api/notes",
json={"id": "testnote", "text": "This is a test note", "isPublic": True},
headers={"Authorization": f"Bearer {token}"},
)
response = self.client.put(
"/api/notes/testnote",
json={"text": "This is an updated test note", "isPublic": False},
headers={"Authorization": f"Bearer {token}"},
)
self.assertEqual(response.status_code, 200)
# Verify the update
response = self.client.get(
"/api/notes/testnote", headers={"Authorization": f"Bearer {token}"}
)
self.assertEqual(response.json["text"], "This is an updated test note")
self.assertEqual(response.json["isPublic"], False)
def test_delete_note(self):
token = self.register_and_login()
self.client.post(
"/api/notes",
json={"id": "testnote", "text": "This is a test note", "isPublic": True},
headers={"Authorization": f"Bearer {token}"},
)
response = self.client.delete(
"/api/notes/testnote", headers={"Authorization": f"Bearer {token}"}
)
self.assertEqual(response.status_code, 200)
# Verify the deletion
response = self.client.get(
"/api/notes/testnote", headers={"Authorization": f"Bearer {token}"}
)
self.assertEqual(response.status_code, 404)
def test_list_notes(self):
token = self.register_and_login()
self.client.post(
"/api/notes",
json={"id": "note1", "text": "This is note 1", "isPublic": True},
headers={"Authorization": f"Bearer {token}"},
)
self.client.post(
"/api/notes",
json={"id": "note2", "text": "This is note 2", "isPublic": False},
headers={"Authorization": f"Bearer {token}"},
)
response = self.client.get(
"/api/notes", headers={"Authorization": f"Bearer {token}"}
)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.json), 2)
self.assertIn("note1", [note["id"] for note in response.json])
self.assertIn("note2", [note["id"] for note in response.json])
def test_unauthorized_access(self):
token = self.register_and_login()
self.client.post(
"/api/notes",
json={"id": "testnote", "text": "This is a test note", "isPublic": False},
headers={"Authorization": f"Bearer {token}"},
)
# Try to access the note without authentication
response = self.client.get("/api/notes/testnote")
self.assertEqual(response.status_code, 401)
# Register another user and try to access the private note
other_token = self.register_and_login("otheruser", "otherpass")
response = self.client.get(
"/api/notes/testnote", headers={"Authorization": f"Bearer {other_token}"}
)
self.assertEqual(response.status_code, 403)
def test_input_sanitization(self):
token = self.register_and_login()
response = self.client.post(
"/api/notes",
json={
"id": "testnote",
"text": '<script>alert("XSS");</script>',
"isPublic": True,
},
headers={"Authorization": f"Bearer {token}"},
)
self.assertEqual(response.status_code, 201)
response = self.client.get(
"/api/notes/testnote", headers={"Authorization": f"Bearer {token}"}
)
self.assertNotIn("<script>", response.json["text"])
if __name__ == "__main__":
unittest.main()