summaryrefslogtreecommitdiff
path: root/yaksh/cpp_code_evaluator.py
diff options
context:
space:
mode:
authoradityacp2016-12-23 11:37:59 +0530
committeradityacp2016-12-23 11:37:59 +0530
commit9d4e16cc5024b756d811e353714074d7d6066c2f (patch)
tree052e14d258407cc93202f8726e671eb93ff8ce37 /yaksh/cpp_code_evaluator.py
parent77e8a6c1cde9190daf9075d71caf6017dc1380e7 (diff)
downloadonline_test-9d4e16cc5024b756d811e353714074d7d6066c2f.tar.gz
online_test-9d4e16cc5024b756d811e353714074d7d6066c2f.tar.bz2
online_test-9d4e16cc5024b756d811e353714074d7d6066c2f.zip
Remove the use of files for specifying test cases
Diffstat (limited to 'yaksh/cpp_code_evaluator.py')
-rw-r--r--yaksh/cpp_code_evaluator.py17
1 files changed, 11 insertions, 6 deletions
diff --git a/yaksh/cpp_code_evaluator.py b/yaksh/cpp_code_evaluator.py
index f0c2029..ca70a74 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.create_submit_code_file('submit.c')
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,9 +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):
@@ -71,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,