-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_orders.py
63 lines (50 loc) · 2.32 KB
/
test_orders.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
#=================================================ORDERS TESTING=================================================================#
def test_orders_post(client):
new_item_json = {
"name": "Vasya programmer",
"phone_number": "+380687850086",
"email": "western.ant2@gmail.com",
"address": "Unosti street",
"additional_info": "I would like to order a black gates"
"200x200 m^3",
}
response = client.post("/orders/", json=new_item_json)
assert response.headers['Content-Type'] == 'application/json'
assert response.status_code == 200
def test_orders_get(client):
response = client.get("/orders")
assert response.headers['Content-Type'] == 'application/json'
assert response.status_code == 200
assert len(response.json) == 3
def test_get_one_order(client):
response = client.get("/order/28b613b7-98fd-405f-ad04-adeaa28bfcbd")
assert response.headers['Content-Type'] == 'application/json'
assert response.status_code == 200
def test_bad_url(client):
response = client.get("/orders/sa")
assert response.status_code == 404
def test_put_one_order1(client): # here we are providing the whole json needed data
json_data = {
"name": "string",
"phone_number": "string",
"email": "string",
"address": "string",
"additional_info": "string"
}
response = client.put("/order/33ff1898-6b0a-4c0e-a99d-bfed6c4675c4", json =json_data )
assert response.headers['Content-Type'] == 'application/json'
assert response.status_code == 201
def test_put_one_order2(client): # here we are providing the particular json needed data
json_data = {
"name": "string",
"phone_number": "string",
"email": "string",
"address": "string",
}
response = client.put("/order/33ff1898-6b0a-4c0e-a99d-bfed6c4675c4", json =json_data )
assert response.headers['Content-Type'] == 'application/json'
assert response.status_code == 201
def test_delete_one_order2(client):
response = client.delete("/order/33ff1898-6b0a-4c0e-a99d-bfed6c4675c4")
assert response.headers['Content-Type'] == 'application/json'
assert response.status_code == 201