-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_main.py
More file actions
262 lines (188 loc) · 7.23 KB
/
test_main.py
File metadata and controls
262 lines (188 loc) · 7.23 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
from fastapi.testclient import TestClient
from fastapi import status
from database import session
from models import Items
import json
db = session()
from main import app
client = TestClient(app)
### get all item test cases ###
def test_get_all_items():
response = client.get('/items')
items = db.query(Items).all()
item_json = [json.dumps(item.to_dict()) for item in items]
assert response.status_code == status.HTTP_200_OK
assert len(response.json()) == len(item_json)
def test_get_no_item():
response = client.get('/items')
items = db.query(Items).all()
assert response.status_code == status.HTTP_200_OK
if items is None:
assert response.json() == []
def test_return_none(): #this test should fail
response = client.get('/items')
items = db.query(Items).all()
assert response.status_code == status.HTTP_200_OK
if items is not None:
assert response.json == None
def test_return_emptylst_while_populated(): #this test should fail
response = client.get('/items')
items = db.query(Items).all()
assert response.status_code == status.HTTP_200_OK
if items is not None:
assert response.json == []
### to get an item ###
def test_get_an_item():
item_id = 2
response = client.get(f'/items/{item_id}')
assert response.status_code == status.HTTP_200_OK
item_data = response.json()
assert 'id' in item_data
items = db.query(Items).filter(Items.id == item_id).first()
assert item_data['name'] == items.name
assert item_data['description'] == items.description
assert item_data['price'] == items.price
assert item_data['on_offer'] == items.on_offer
def test_no_item_found():
item_id = 2
response = client.get(f'/items/{item_id}')
items = db.query(Items).filter(Items.id == item_id).first()
if items is None:
assert response.status_code == status.HTTP_404_NOT_FOUND
assert response.json() == { "detail": "Item not found" }
def test_return_no_item_found(): # this test should fail
item_id = 2
response = client.get(f'/items/{item_id}')
items = db.query(Items).filter(Items.id == item_id).first()
if items is not None:
assert response.status_code == status.HTTP_404_NOT_FOUND
assert response.json() == { "detail": "Item not found" }
### insert item test case ###
def test_insert_item():
data = dict(
{
"id": 0,
"name": "string",
"description": "string",
"price": 0,
"on_offer": True
}
)
response = client.post('/items',json=data)
db_item = db.query(Items).filter(Items.id == data['id']).first()
if db_item is None:
assert response.status_code == status.HTTP_201_CREATED
res_data = response.json()
assert 'id' in res_data
assert res_data['id'] == data['id']
assert res_data['name'] == data['name']
assert res_data['description'] == data['description']
assert res_data['price'] == data['price']
def test_item_already_in_db():
data = dict(
{
"id": 0,
"name": "string",
"description": "string",
"price": 0,
"on_offer": True
}
)
response = client.post('/items',json=data)
db_item = db.query(Items).filter(Items.id == data['id']).first()
if db_item is not None:
assert response.status_code == status.HTTP_400_BAD_REQUEST
assert response.json() == { "detail": "Item Already Exits" }
def test_no_body_provide():
response = client.post('/items',json=None)
assert response.status_code == status.HTTP_422_UNPROCESSABLE_ENTITY
def test_insert_item_return_none(): #this test should fail
data = dict(
{
"id": 10,
"name": "ssstring",
"description": "ssstring",
"price": 110,
"on_offer": True
}
)
response = client.post('/items',json=data)
assert response.status_code == status.HTTP_201_CREATED
assert response.json() == { "detail": "Item Already Exits" }
### update item test case ###
def test_update_item_not_found():
item_id = 10
item_to_update = dict(
{
"id":10,
"name": "ssstring",
"description": "ssstring",
"price": 110,
"on_offer": True
}
)
response = client.put(f'/item/{item_id}',json = item_to_update)
item_in_db = db.query(Items).filter(Items.id == item_id).first()
if item_in_db is None:
assert response.status_code == status.HTTP_404_NOT_FOUND
assert response.json() == {"detail":"Item not found"}
def test_update_item():
item_id = 2
item_to_update = dict(
{
"id":2,
"name": "ssstring",
"description": "ssstring",
"price": 110,
"on_offer": True
}
)
response = client.put(f'/item/{item_id}',json = item_to_update)
item_in_db = db.query(Items).filter(Items.id == item_id).first()
if item_in_db:
res_data = response.json()
assert response.status_code == status.HTTP_200_OK
assert 'id' in res_data
assert item_id == res_data['id']
assert item_to_update['name'] == res_data['name']
assert item_to_update['description'] == res_data['description']
assert item_to_update['price'] == res_data['price']
def test_not_updating_item():
item_id = 2
item_to_update = dict(
{
"id":2,
"name": "ssstring",
"description": "ssstring",
"price": 110,
"on_offer": True
}
)
response = client.put(f'/item/{item_id}',json = item_to_update)
item_in_db = db.query(Items).filter(Items.id == item_id).first()
if item_in_db:
assert response.status_code == status.HTTP_404_NOT_FOUND
assert response.json() == {"detail":"Item not found"}
### delete item test cases ###
def test_delete_item_not_found():
item_id = 11
response = client.delete(f'/item/{item_id}')
item_to_delete = db.query(Items).filter(Items.id == item_id).first()
if item_to_delete is None:
assert response.status_code == status.HTTP_404_NOT_FOUND
assert response.json() == {"detail":"Resource Not Found"}
def test_not_deleting_item():#this test should fail
item_id = 11
response = client.delete(f'/item/{item_id}')
item_to_delete = db.query(Items).filter(Items.id == item_id).first()
assert response.status_code == status.HTTP_404_NOT_FOUND
assert response.json() == {"detail":"Resource Not Found"}
def test_delete_item():
item_id = 11
response = client.delete(f'/item/{item_id}')
item_to_delete = db.query(Items).filter(Items.id == item_id).first()
assert response.status_code == status.HTTP_200_OK
res_data = response.json()
assert 'id' in res_data
assert res_data['id'] == item_to_delete['id']
assert res_data['name'] == item_to_delete['name']