forked from Hipo/university-domains-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_domains.py
97 lines (91 loc) · 3.75 KB
/
test_domains.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
import json
import unittest
import validators
class DomainsTests(unittest.TestCase):
def setUp(self):
"""Load the JSON file into a variable"""
with open("world_universities_and_domains.json", encoding="utf-8") as json_file:
self.valid_json = json.load(json_file)
def test_university_json_structure(self):
"""Test the structure of each university entry in the JSON file"""
for university in self.valid_json:
# Name
self.assertIn("name", university, msg="University Name is missing")
self.assertIsInstance(
university["name"],
(str, type(None)),
msg="University Name must be a string or null",
)
# Domains
self.assertIn("domains", university, msg="University Domains are missing")
self.assertIsInstance(
university["domains"],
(list, type(None)),
msg="University Domains must be a list or null",
)
if university["domains"] is not None:
for domain in university["domains"]:
self.assertIsInstance(
domain,
(str, type(None)),
msg="University Domain must be a string or null",
)
if domain is not None:
self.assertTrue(
validators.domain(domain), msg=f"Invalid domain: {domain}"
)
# Web Pages
self.assertIn(
"web_pages", university, msg="University Web Pages are missing"
)
self.assertIsInstance(
university["web_pages"],
(list, type(None)),
msg="University Web Pages must be a list or null",
)
if university["web_pages"] is not None:
for web_page in university["web_pages"]:
self.assertIsInstance(
web_page,
(str, type(None)),
msg="University Web Page must be a string or null",
)
if web_page is not None:
self.assertTrue(
validators.url(web_page),
msg=f"Invalid web page: {web_page}",
)
# Alpha Two Code
self.assertIn(
"alpha_two_code", university, msg="Country Alpha Two Code is missing"
)
self.assertIsInstance(
university["alpha_two_code"],
(str, type(None)),
msg="Country Alpha Two Code must be a string or null",
)
if university["alpha_two_code"] is not None:
self.assertEqual(
len(university["alpha_two_code"]),
2,
msg=f"Country Alpha Two Code must be 2 characters long: {university['alpha_two_code']}",
)
# State/Province
self.assertIn(
"state-province", university, msg="University State/Province is missing"
)
self.assertIsInstance(
university["state-province"],
(str, type(None)),
msg="University State/Province must be a string or null",
)
# Country
self.assertIn("country", university, msg="University Country is missing")
self.assertIsInstance(
university["country"],
(str, type(None)),
msg="University Country must be a string or null",
)
# Run tests locally
# if __name__ == "__main__":
# unittest.main()