diff options
author | Prabhu Ramachandran | 2016-12-27 23:55:01 +0530 |
---|---|---|
committer | GitHub | 2016-12-27 23:55:01 +0530 |
commit | 48df2c1b30fa4bfc256399bbaadcbdefa555623d (patch) | |
tree | e1c4140c315655a9b57536e6550ac5eff5d67c4c /yaksh/scilab_code_evaluator.py | |
parent | 48366e84b98157ac32b22b2aa19b1c1cde68afd4 (diff) | |
parent | 1b9a870975c1e2492b692ab8ec58bc3c628dcd82 (diff) | |
download | online_test-48df2c1b30fa4bfc256399bbaadcbdefa555623d.tar.gz online_test-48df2c1b30fa4bfc256399bbaadcbdefa555623d.tar.bz2 online_test-48df2c1b30fa4bfc256399bbaadcbdefa555623d.zip |
Merge pull request #167 from adityacp/new_fix_evaluators
Modify Evaluators to take moderator code as test case instead of files
Diffstat (limited to 'yaksh/scilab_code_evaluator.py')
-rw-r--r-- | yaksh/scilab_code_evaluator.py | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/yaksh/scilab_code_evaluator.py b/yaksh/scilab_code_evaluator.py index bf16c84..7ffcd2b 100644 --- a/yaksh/scilab_code_evaluator.py +++ b/yaksh/scilab_code_evaluator.py @@ -16,7 +16,8 @@ class ScilabCodeEvaluator(BaseEvaluator): """Tests the Scilab code obtained from Code Server""" def __init__(self, metadata, test_case_data): self.files = [] - + self.submit_code_path = "" + self.test_code_path = "" # Set metadata values self.user_answer = metadata.get('user_answer') self.file_paths = metadata.get('file_paths') @@ -28,23 +29,27 @@ class ScilabCodeEvaluator(BaseEvaluator): def teardown(self): # Delete the created file. - os.remove(self.submit_code_path) + if os.path.exists(self.submit_code_path): + os.remove(self.submit_code_path) + if os.path.exists(self.test_code_path): + os.remove(self.test_code_path) if self.files: delete_files(self.files) def check_code(self): self.submit_code_path = self.create_submit_code_file('function.sci') + self.test_code_path = self.create_submit_code_file('main.sci') if self.file_paths: self.files = copy_files(self.file_paths) ref_code_path = self.test_case - clean_ref_path, clean_test_case_path = \ - self._set_test_code_file_path(ref_code_path) + clean_ref_path, clean_test_case_path = self.test_code_path, None self.user_answer, terminate_commands = \ self._remove_scilab_exit(self.user_answer.lstrip()) success = False test_case_weight = 0.0 self.write_to_submit_code_file(self.submit_code_path, self.user_answer) + self.write_to_submit_code_file(self.test_code_path, self.test_case) # Throw message if there are commmands that terminates scilab add_err = "" if terminate_commands: |