summaryrefslogtreecommitdiff
path: root/yaksh/cpp_code_evaluator.py
diff options
context:
space:
mode:
authoradityacp2016-12-28 14:21:17 +0530
committeradityacp2016-12-28 14:21:17 +0530
commit537e3fb2e3ed637e1429ce815165b23d53b70ff7 (patch)
tree964ffdfd825947c14d15f19aca8b0c800e852742 /yaksh/cpp_code_evaluator.py
parent135ebb1ae4dbc5e1bc4297fa31413d89ac4405f3 (diff)
parent011ca73b4c1042ceb208974e57c11474ecea65f2 (diff)
downloadonline_test-537e3fb2e3ed637e1429ce815165b23d53b70ff7.tar.gz
online_test-537e3fb2e3ed637e1429ce815165b23d53b70ff7.tar.bz2
online_test-537e3fb2e3ed637e1429ce815165b23d53b70ff7.zip
Merge https://github.com/fossee/online_test into update_docs
Diffstat (limited to 'yaksh/cpp_code_evaluator.py')
-rw-r--r--yaksh/cpp_code_evaluator.py16
1 files changed, 10 insertions, 6 deletions
diff --git a/yaksh/cpp_code_evaluator.py b/yaksh/cpp_code_evaluator.py
index 91ba703..d4e2253 100644
--- a/yaksh/cpp_code_evaluator.py
+++ b/yaksh/cpp_code_evaluator.py
@@ -15,11 +15,12 @@ class CppCodeEvaluator(BaseEvaluator):
"""Tests the C code obtained from Code Server"""
def __init__(self, metadata, test_case_data):
self.files = []
- self.submit_code_path = ''
self.compiled_user_answer = None
self.compiled_test_code = None
self.user_output_path = ""
self.ref_output_path = ""
+ self.submit_code_path = ""
+ self.test_code_path = ""
# Set metadata values
self.user_answer = metadata.get('user_answer')
@@ -32,11 +33,14 @@ class CppCodeEvaluator(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.ref_output_path):
os.remove(self.ref_output_path)
if os.path.exists(self.user_output_path):
os.remove(self.user_output_path)
+ if os.path.exists(self.test_code_path):
+ os.remove(self.test_code_path)
if self.files:
delete_files(self.files)
@@ -59,10 +63,11 @@ class CppCodeEvaluator(BaseEvaluator):
if self.compiled_user_answer and self.compiled_test_code:
return None
else:
- ref_code_path = self.test_case
- clean_ref_code_path, clean_test_case_path = \
- self._set_test_code_file_path(ref_code_path)
self.submit_code_path = self.create_submit_code_file('submit.c')
+ self.test_code_path = self.create_submit_code_file('main.c')
+ 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)
+ clean_ref_code_path = self.test_code_path
if self.file_paths:
self.files = copy_files(self.file_paths)
if not isfile(clean_ref_code_path):
@@ -72,7 +77,6 @@ class CppCodeEvaluator(BaseEvaluator):
msg = "No file at %s or Incorrect path" % self.submit_code_path
return False, msg
- self.write_to_submit_code_file(self.submit_code_path, self.user_answer)
self.user_output_path, self.ref_output_path = self.set_file_paths()
self.compile_command, self.compile_main = self.get_commands(
clean_ref_code_path,