summaryrefslogtreecommitdiff
path: root/yaksh/bash_code_evaluator.py
diff options
context:
space:
mode:
authoradityacp2016-12-23 11:47:36 +0530
committeradityacp2016-12-23 11:47:36 +0530
commit6157e1dd4e1babcba1264d11e91e89ef75ac4091 (patch)
treeff5848c34b4c41bdea0f206aed78ebc40a9700f9 /yaksh/bash_code_evaluator.py
parent2b8dac3f8508534a34b558113b01b95359311436 (diff)
downloadonline_test-6157e1dd4e1babcba1264d11e91e89ef75ac4091.tar.gz
online_test-6157e1dd4e1babcba1264d11e91e89ef75ac4091.tar.bz2
online_test-6157e1dd4e1babcba1264d11e91e89ef75ac4091.zip
Remove the use of files in Bash evaluator
Diffstat (limited to 'yaksh/bash_code_evaluator.py')
-rw-r--r--yaksh/bash_code_evaluator.py39
1 files changed, 24 insertions, 15 deletions
diff --git a/yaksh/bash_code_evaluator.py b/yaksh/bash_code_evaluator.py
index 1e6fc9c..380dad3 100644
--- a/yaksh/bash_code_evaluator.py
+++ b/yaksh/bash_code_evaluator.py
@@ -17,6 +17,9 @@ class BashCodeEvaluator(BaseEvaluator):
# Private Protocol ##########
def __init__(self, metadata, test_case_data):
self.files = []
+ self.submit_code_path = ""
+ self.test_code_path = ""
+ self.tc_args_path= ""
# Set metadata values
self.user_answer = metadata.get('user_answer')
@@ -25,11 +28,18 @@ class BashCodeEvaluator(BaseEvaluator):
# Set test case data values
self.test_case = test_case_data.get('test_case')
+ self.test_case_args = test_case_data.get('test_case_args')
+
self.weight = test_case_data.get('weight')
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 os.path.exists(self.tc_args_path):
+ os.remove(self.tc_args_path)
if self.files:
delete_files(self.files)
@@ -58,18 +68,20 @@ class BashCodeEvaluator(BaseEvaluator):
Returns (False, error_msg, 0.0): If mandatory arguments are not files or if
the required permissions are not given to the file(s).
"""
- ref_code_path = self.test_case
success = False
mark_fraction = 0.0
-
self.submit_code_path = self.create_submit_code_file('submit.sh')
self._set_file_as_executable(self.submit_code_path)
-
- get_ref_path, get_test_case_path = ref_code_path.strip().split(',')
- get_ref_path = get_ref_path.strip()
- get_test_case_path = get_test_case_path.strip()
- clean_ref_code_path, clean_test_case_path = \
- self._set_test_code_file_path(get_ref_path, get_test_case_path)
+ self.test_code_path = self.create_submit_code_file('main.sh')
+ self._set_file_as_executable(self.test_code_path)
+ if self.test_case_args:
+ self.tc_args_path = self.create_submit_code_file('main.args')
+ self.write_to_submit_code_file(self.tc_args_path, self.test_case_args)
+ self.user_answer = self.user_answer.replace("\r", "")
+ self.test_case = self.test_case.replace("\r", "")
+ 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, clean_test_case_path = self.test_code_path, self.tc_args_path
if self.file_paths:
self.files = copy_files(self.file_paths)
@@ -86,10 +98,7 @@ class BashCodeEvaluator(BaseEvaluator):
msg = "Script %s is not executable" % self.submit_code_path
return False, msg, 0.0
- self.user_answer = self.user_answer.replace("\r", "")
- self.write_to_submit_code_file(self.submit_code_path, self.user_answer)
-
- if clean_test_case_path is None or "":
+ if not clean_test_case_path:
ret = self._run_command(clean_ref_code_path,
stdin=None,
stdout=subprocess.PIPE,
@@ -106,8 +115,8 @@ class BashCodeEvaluator(BaseEvaluator):
mark_fraction = float(self.weight) if self.partial_grading else 0.0
return True, "Correct answer", mark_fraction
else:
- err = "Error: expected %s, got %s" % (inst_stderr,
- stdnt_stderr
+ err = "Error: expected %s, got %s" % (inst_stdout + inst_stderr,
+ stdnt_stdout + stdnt_stderr
)
return False, err, 0.0
else: