-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignment3-test.txt
264 lines (200 loc) · 5.58 KB
/
assignment3-test.txt
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
263
264
import univRanking
def removeSpaces(text):
text = text.replace(" ","")
text = text.replace("\t","")
for i in range(100):
text = text.replace("\n\n","\n")
return text
def equalWithoutSpaces (expected, student):
expected = expected.replace(" ", "")
expected = expected.replace("\t", "")
student = student.replace(" ", "")
student = student.replace("\t", "")
return expected == student
def printLabel(num):
list =[
"",
"# 1 - Universities count",
"# 2 - Available countries",
"# 3 - Available continents",
"# 4 - The university with top international rank",
"# 5 - The university with top national rank",
"# 6 - The average score",
"# 7 - The relative score",
"# 8 - The capital city",
"# 9 - The universities that hold the capital name",
]
print("Testing....",list[num],end="....")
def success():
print("successful!")
def fail():
print("failed xxxx")
# selectedCountry = input("Please enter the country name:")
selectedCountry ='USA'
univRanking.getInformation(selectedCountry, "TopUni.csv", "capitals.csv")
f= open("output.txt", "r", encoding='utf8')
information = f.read()
f.close()
print("#"* 30+"\nselectedCountry ='USA'\nThe content of output.txt is:\n"+"#"* 30)
print(information)
information = removeSpaces(information)
information = information.upper()
# print(information)
print("\n"+"#"* 30+"\nTesting information about USA:\n"+"#"* 30)
printLabel(1)
if "=>100" in information:
success()
else:
fail()
printLabel(2)
if "CANADA" in information and "SWEDEN" in information and "SINGAPORE" in information and "," in information:
success()
else:
fail()
printLabel(3)
if "AVAILABLECONTINENTS=>" in information and "NORTHAMERICA" in information and "EUROPE" in information and "AUSTRALIA" in information:
success()
else:
fail()
printLabel(4)
if "ATINTERNATIONALRANK=>1THEUNIVERSITYNAMEIS=>HARVARDUNIVERSITY" in information:
success()
else:
fail()
printLabel(5)
if "ATNATIONALRANK=>1THEUNIVERSITYNAMEIS=>HARVARDUNIVERSITY" in information:
success()
else:
fail()
printLabel(6)
if "=>86.5" in information or "=>86.6" in information:
success()
else:
fail()
printLabel(7)
if "INNORTHAMERICAIS=>" in information and "=86.5" in information:
success()
else:
fail()
printLabel(8)
if "THECAPITALIS=>WASHINGTON" in information:
success()
else:
fail()
printLabel(9)
if "#1" in information and "#2" in information and "UNIVERSITYOFWASHINGTON" in information and "WASHINGTONUNIVERSITY" in information:
success()
else:
fail()
selectedCountry ='south korea'
univRanking.getInformation(selectedCountry, "TopUni.csv", "capitals.csv")
f= open("output.txt", "r", encoding='utf8')
information = f.read()
f.close()
print("\n\n"+"#"* 30+"\nselectedCountry ='South Korea'\nThe content of output.txt is:\n"+"#"* 30)
print(information)
information = removeSpaces(information)
information = information.upper()
# print(information)
print("\n"+"#"* 30+"\nTesting information about South Korea:\n"+"#"* 30)
printLabel(1)
if "=>100" in information:
success()
else:
fail()
printLabel(2)
if "CANADA" in information and "SWEDEN" in information and "SINGAPORE" in information and "," in information:
success()
else:
fail()
printLabel(3)
if "AVAILABLECONTINENTS=>" in information and "NORTHAMERICA" in information and "EUROPE" in information and "AUSTRALIA" in information:
success()
else:
fail()
printLabel(4)
if "ATINTERNATIONALRANK=>31THEUNIVERSITYNAMEIS=>SEOULNATIONALUNIVERSITY" in information:
success()
else:
fail()
printLabel(5)
if "ATNATIONALRANK=>1THEUNIVERSITYNAMEIS=>SEOULNATIONALUNIVERSITY" in information:
success()
else:
fail()
printLabel(6)
if "=>86.5" in information or "=>86.6" in information:
success()
else:
fail()
printLabel(7)
if "INASIAIS=>" in information and "=96.3" in information:
success()
else:
fail()
printLabel(8)
if "THECAPITALIS=>SEOUL" in information:
success()
else:
fail()
printLabel(9)
if "#1" in information and "SEOULNATIONALUNIVERSITY" in information:
success()
else:
fail()
selectedCountry ='japan'
univRanking.getInformation(selectedCountry, "TopUni.csv", "capitals.csv")
f= open("output.txt", "r", encoding='utf8')
information = f.read()
f.close()
print("\n\n"+"#"* 30+"\nselectedCountry ='japan'\nThe content of output.txt is:\n"+"#"* 30)
print(information)
information = removeSpaces(information)
information = information.upper()
# print(information)
print("\n"+"#"* 30+"\nTesting information about Japan:\n"+"#"* 30)
printLabel(1)
if "=>100" in information:
success()
else:
fail()
printLabel(2)
if "CANADA" in information and "SWEDEN" in information and "SINGAPORE" in information and "," in information:
success()
else:
fail()
printLabel(3)
if "AVAILABLECONTINENTS=>" in information and "NORTHAMERICA" in information and "EUROPE" in information and "AUSTRALIA" in information:
success()
else:
fail()
printLabel(4)
if "ATINTERNATIONALRANK=>13THEUNIVERSITYNAMEIS=>UNIVERSITYOFTOKYO" in information:
success()
else:
fail()
printLabel(5)
if "ATNATIONALRANK=>1THEUNIVERSITYNAMEIS=>KYOTOUNIVERSITY" in information:
success()
else:
fail()
printLabel(6)
if "=>85.3" in information or "=>85.4" in information:
success()
else:
fail()
printLabel(7)
if "INASIAIS=>" in information and "=95.0" in information:
success()
else:
fail()
printLabel(8)
if "THECAPITALIS=>TOKYO" in information:
success()
else:
fail()
printLabel(9)
if "#1" in information and "UNIVERSITYOFTOKYO" in information:
success()
else:
fail()