summaryrefslogtreecommitdiff
path: root/yaksh/models.py
diff options
context:
space:
mode:
authormaheshgudi2016-12-23 15:00:27 +0530
committermaheshgudi2016-12-23 15:00:27 +0530
commitb582c624a7c49e3312e07196df87f26180a520c2 (patch)
tree909679721d2fa2b55a27e7621999dd04c9d36146 /yaksh/models.py
parent5f6b103408ff8a520c741d2d21d1aff24a823dad (diff)
parent48366e84b98157ac32b22b2aa19b1c1cde68afd4 (diff)
downloadonline_test-b582c624a7c49e3312e07196df87f26180a520c2.tar.gz
online_test-b582c624a7c49e3312e07196df87f26180a520c2.tar.bz2
online_test-b582c624a7c49e3312e07196df87f26180a520c2.zip
fixed pull conflicts
Diffstat (limited to 'yaksh/models.py')
-rw-r--r--yaksh/models.py30
1 files changed, 16 insertions, 14 deletions
diff --git a/yaksh/models.py b/yaksh/models.py
index d7e5964..94a3a55 100644
--- a/yaksh/models.py
+++ b/yaksh/models.py
@@ -1024,9 +1024,15 @@ class AnswerPaper(models.Model):
for answer in self.answers.all():
question = answer.question
if question in q_a:
- q_a[question].append(answer)
+ q_a[question].append({'answer': answer,
+ 'error_list': [e for e in json.loads(answer.error)]
+ }
+ )
else:
- q_a[question] = [answer]
+ q_a[question] = [{'answer': answer,
+ 'error_list': [e for e in json.loads(answer.error)]
+ }
+ ]
return q_a
def get_questions(self):
@@ -1061,20 +1067,20 @@ class AnswerPaper(models.Model):
For code questions success is True only if the answer is correct.
"""
- result = {'success': True, 'error': 'Incorrect answer', 'weight': 0.0}
+ result = {'success': True, 'error': ['Incorrect answer'], 'weight': 0.0}
correct = False
if user_answer is not None:
if question.type == 'mcq':
expected_answer = question.get_test_case(correct=True).options
if user_answer.strip() == expected_answer.strip():
correct = True
- result['error'] = 'Correct answer'
+ result['error'] = ['Correct answer']
elif question.type == 'mcc':
expected_answers = []
for opt in question.get_test_cases(correct=True):
expected_answers.append(opt.options)
if set(user_answer) == set(expected_answers):
- result['error'] = 'Correct answer'
+ result['error'] = ['Correct answer']
correct = True
elif question.type == 'code':
user_dir = self.user.profile.get_user_dir()
@@ -1152,9 +1158,7 @@ class StandardTestCase(TestCase):
"weight": self.weight}
def __str__(self):
- return u'Question: {0} | Test Case: {1}'.format(self.question,
- self.test_case
- )
+ return u'Standard TestCase | Test Case: {0}'.format(self.test_case)
class StdIOBasedTestCase(TestCase):
@@ -1169,9 +1173,9 @@ class StdIOBasedTestCase(TestCase):
"weight": self.weight}
def __str__(self):
- return u'Question: {0} | Exp. Output: {1} | Exp. Input: {2}'\
- .format(self.question, self.expected_output,
- self.expected_input)
+ return u'StdIO Based Testcase | Exp. Output: {0} | Exp. Input: {1}'.format(
+ self.expected_output, self.expected_input
+ )
class McqTestCase(TestCase):
@@ -1182,9 +1186,7 @@ class McqTestCase(TestCase):
return {"test_case_type": "mcqtestcase", "options": self.options, "correct": self.correct}
def __str__(self):
- return u'Question: {0} | Correct: {1}'.format(self.question,
- self.correct
- )
+ return u'MCQ Testcase | Correct: {0}'.format(self.correct)
class HookTestCase(TestCase):