generated from MLH-Fellowship/orientation-project-python
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest_pytest.py
141 lines (115 loc) · 4.15 KB
/
test_pytest.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
'''
Tests in Pytest
'''
from app import app
def test_client():
'''
Makes a request and checks the message received is the same
'''
response = app.test_client().get('/test')
assert response.status_code == 200
assert response.json['message'] == "Hello, World!"
def test_experience():
'''
Add a new experience and then get all experiences.
Check that it returns the new experience in that list
'''
example_experience = {
"title": "Software Developer",
"company": "A Cooler Company",
"start_date": "October 2022",
"end_date": "Present",
"description": "Writing JavaScript Code",
"logo": "example-logo.png"
}
item_id = app.test_client().post('/resume/experience',
json=example_experience).json['id']
response = app.test_client().get('/resume/experience')
assert response.json[item_id] == example_experience
def test_education():
'''
Add a new education and then get all educations.
Check that it returns the new education in that list
'''
example_education = {
"course": "Engineering",
"school": "NYU",
"start_date": "October 2022",
"end_date": "August 2024",
"grade": "86%",
"logo": "example-logo.png"
}
item_id = app.test_client().post('/resume/education',
json=example_education).json['id']
response = app.test_client().get('/resume/education')
assert response.json[item_id] == example_education
def test_skill():
'''
Add a new skill and then get all skills.
Check that it returns the new skill in that list
'''
example_skill = {
"name": "JavaScript",
"proficiency": "2-4 years",
"logo": "example-logo.png"
}
item_id = app.test_client().post('/resume/skill',
json=example_skill).json['id']
response = app.test_client().get('/resume/skill')
assert response.json[item_id] == example_skill
response = app.test_client().get(f'/resume/skill/{item_id}')
assert response.json == example_skill
def test_model_validation():
'''
Test that the model validation returns a valid response
'''
data = {
"experience": {
"title": "Software Developer",
"company": "A Cooler Company",
"start_date": "October 2022",
"end_date": "Present",
"description": "Writing JavaScript Code",
"logo": "example-logo.png"
},
"education": {
"course": "Engineering",
"school": "NYU",
"start_date": "October 2022",
"end_date": "August 2024",
"grade": "86%",
"logo": "example-logo.png",
"description": "I was head of the debate team at university"
},
"skill": {
"name": "JavaScript",
"proficiency": "2-4 years",
"logo": "example-logo.png"
}
}
response_education = app.test_client().post('/resume/education',
json=data['education'])
response_experience = app.test_client().post('/resume/experience',
json=data['experience'])
response_skill = app.test_client().post('/resume/skill',
json=data['skill'])
assert response_education.status_code == 200
assert response_experience.status_code == 200
assert response_skill.status_code == 200
def test_spell_check():
'''
Test that the spell check endpoint returns a valid response
'''
example_education = {
"course": "Engineering",
"school": "NYU",
"start_date": "October 2022",
"end_date": "August 2024",
"grade": "86%",
"logo": "example-logo.png",
"description": "I was head of the debaite team at university",
"spell_check": True
}
response = app.test_client().post('/resume/education',
json=example_education)
assert response.json['description'] == "I was head of the debate team at university"