This repository was archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAssignment.py
277 lines (202 loc) · 8.94 KB
/
Assignment.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
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
265
266
267
268
269
270
271
272
273
274
275
276
277
import Global
import WeTestObj
# Assignment class for assigner, inside User class
class Assignment(WeTestObj.WeTestObj):
def __init__(self, assigner: str, asmtName: str, dummy=False):
super().__init__(dummy)
self.asmtName = asmtName
# the id of the assigner
self.__assigner = assigner
# {func_name: [(return_value, input_args), ]}
self._functions_sample = {}
# {id: studentFileSerial}
self.__studentFile = {}
# {id: {func_name: [testcase1Serial, testcase2Serial, testcase3Serial]}} 3 testcases for each function
self.__testcase = {}
@classmethod
def dum(cls):
return Assignment('', '', dummy = True)
# def __repr__(self):
# return str(self.__testcase)
def upload(self, id, py: str) -> (['TestcaseSerial'],['TestcaseSerial']):
""" upload the studentFile, return passedTest and failedTest """
stdFile = StudentFile(id, py)
stdFile.mangoSave()
StudentFile.checkTest(stdFile, self)
self.__studentFile.setdefault(id, stdFile.serial)
stdFile.mangoUpdate()
return (stdFile.getPassedTests(), stdFile.getFailedTests())
def deletefile(self, id) -> bool:
""" delete the studentFile, return whether it's succeed """
if id in self.__studentFile:
del self.__studentFile[id]
return True
return False
def uploadTest(self, id,
func_name: str,
return_value,
*input_args):
""" upload the testcase """
self.__testcase.setdefault(id, {})
self.__testcase[id].setdefault(func_name, [])
tc = Testcase(func_name, return_value, *input_args)
tc.mangoSave()
self.__testcase[id][func_name].append(tc.serial)
self._updateStudent(tc)
def deleteTest(self, id,
func_name: str,
return_value,
*input_args) -> bool:
""" delete a testcase, return whether succeed"""
if id in self.__testcase:
if func_name in self.__testcase[id]:
for testcaseSerial in self.__testcase[id][func_name]:
if return_value == WeTestObj.WeTestObj.mangoLoad(testcaseSerial).getReturn() and\
input_args == WeTestObj.WeTestObj.mangoLoad(testcaseSerial).getInputs():
self.__testcase[id][func_name].remove(testcaseSerial)
self._deleteTest(WeTestObj.WeTestObj.mangoLoad(testcaseSerial))
return True
return False
def addSampleTestcase(self,
func_name: str,
return_value: str,
*input_args):
""" add samples, samples are also testcases """
self._functions_sample.setdefault(func_name, [])
self._functions_sample[func_name].append((return_value, input_args))
self.__testcase.setdefault(self.__assigner, {})
self.__testcase[self.__assigner].setdefault(func_name, [])
tc = Testcase(func_name, return_value, *input_args)
tc.mangoSave()
self.__testcase[self.__assigner][func_name].append(tc.serial)
self._updateStudent(tc)
# helper method
def _updateStudent(self, testcase):
for stdFileSerial in self.getStdFile().values():
stdFile = WeTestObj.WeTestObj.mangoLoad(stdFileSerial)
Test = stdFile.getModule()
for func_name in self.getFunctions():
if func_name == testcase.getName():
if testcase.passThisTest(func_name, Test):
stdFile._passedTest.append(testcase.serial)
else:
stdFile._failedTest.append(testcase.serial)
def _deleteTest(self, testcase):
for stdFileSerial in self.getStdFile().values():
stdFile = WeTestObj.WeTestObj.mangoLoad(stdFileSerial)
if testcase.serial in stdFile.getPassedTests():
stdFile._passedTest.remove(WeTestObj.WeTestObj.mangoLoad(testcase.serial))
elif testcase.serial in stdFile.getFailedTests():
stdFile._failedTest.remove(WeTestObj.WeTestObj.mangoLoad(testcase.serial))
# getter methods
def getTestcases(self):
return self.__testcase
def getStdFile(self):
return self.__studentFile
def getLenTest(self, id, func_name):
""" get how many testcases have been uploaded for the function, 3 is required """
return len(self.__testcase[id][func_name])
def getFunctions(self):
return self._functions_sample
def getResult(self, id) -> (['Testcase'],['Testcase']):
if id in self.__studentFile:
return (self.mangoLoad(self.__studentFile[id]).getPassedTests(), self.mangoLoad(self.__studentFile[id]).getFailedTests())
return([],[])
def getPrevSub(self, id):
if id in self.__studentFile:
return WeTestObj.WeTestObj.mangoLoad(self.__studentFile[id])._py
# create a test case
class Testcase(WeTestObj.WeTestObj):
def __init__(self,
func_name: str,
return_value,
*input_args,
dummy=False,):
super().__init__(dummy)
# implementing the test case
self.__function_name = func_name
self.__return_value = return_value
self.__input_args = input_args
@classmethod
def dum(cls):
return Testcase('', '', dummy=True)
def __repr__(self):
""" return the test case """
return f"{self.__function_name}({str(self.__input_args)[1:-1]}) -> {self.__return_value}"
def passThisTest(self, func_name: str, Test: 'student module'):
""" return whether student's py pass the test"""
# Example: Test.function(a,b)
test_case_str = lambda x: 'Test.' + func_name + '(' + ','.join([repr(i) for i in x]) + ')'
try:
stdAns = eval(test_case_str(self.__input_args))
if stdAns == self.__return_value:
return True
else: return False
except:
return False
# getter method
def getName(self):
return self.__function_name
def getReturn(self):
return self.__return_value
def getInputs(self):
return self.__input_args
# create a studentFile, including all the info std uploaded
class StudentFile(WeTestObj.WeTestObj):
def __init__(self, id: str, py: str, dummy=False):
super().__init__(dummy)
self._userid = id
self._py = py
self._passedTest = []
self._failedTest = []
@classmethod
def dum(cls):
return StudentFile('', '', dummy=True)
def getModule(self):
# all the students' functions are in the Test module now
# PAY ATTENTION TO THE DIRECTION
with open(Global.STUDENT_TEMP_DIR+'StudentFile.py', 'w') as f:
f.write(self._py.strip())
import StudentFile as Test
return Test
@staticmethod
def checkTest(stdFile, asgmt):
# run all the testcases for this py
Test = stdFile.getModule()
for func_name in asgmt.getFunctions(): # all the func that assigned
for functions in asgmt.getTestcases().values(): # all the func catagories in the testcase
for test_func_name, testcaseSerials in functions.items():
if test_func_name == func_name:
for testcaseSerial in testcaseSerials:
testcase = WeTestObj.WeTestObj.mangoLoad(testcaseSerial)
if testcase.getName() == func_name:
res = testcase.passThisTest(func_name, Test)
if res: stdFile._passedTest.append(testcase.serial)
else: stdFile._failedTest.append(testcase.serial)
# getter method
def getPassedTests(self):
return self._passedTest
def getFailedTests(self):
return self._failedTest
def getId(self):
return self._userid
if __name__ == '__main__':
py = """
def f():
return 1
def g(a):
return a
"""
x = Assignment('R', 'project1')
print("Student upload file")
x.upload('yaoshenx', py)
x.addSampleTestcase('f', 1)
x.addSampleTestcase('f', 4, 1, 5)
x.addSampleTestcase('g', 'a', 1, 6, 'v')
x.uploadTest('yaoshenx', 'f', 1)
x.uploadTest('yaoshenx', 'f', 40)
x.uploadTest('yaoshenx', 'g', 31, 31)
x.uploadTest('jj', 'g', 2, 6, 7)
print(x.upload('jj', py))
print(x.getStdFile())
print(x.getPrevSub('yaoshenx'))