Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-ora2
Commits
4ae638e9
Commit
4ae638e9
authored
11 years ago
by
Stephen Sanchez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing test dependencies. Adding more doc and examples.
parent
233e9a09
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
6 deletions
+55
-6
apps/submissions/api.py
+54
-6
requirements/test.txt
+1
-0
No files found.
apps/submissions/api.py
View file @
4ae638e9
...
@@ -77,7 +77,13 @@ def create_submission(student_item_dict, answer, submitted_at=None,
...
@@ -77,7 +77,13 @@ def create_submission(student_item_dict, answer, submitted_at=None,
attempt_number plus one.
attempt_number plus one.
Returns:
Returns:
dict: A representation of the created Submission.
dict: A representation of the created Submission. The submission
contains five attributes: student_item, attempt_number, submitted_at,
created_at, and answer. 'student_item' is the ID of the related student
item for the submission. 'attempt_number' is the attempt this submission
represents for this question. 'submitted_at' represents the time this
submission was submitted, which can be configured, versus the
'created_at' date, which is when the submission is first created.
Raises:
Raises:
SubmissionRequestError: Raised when there are validation errors for the
SubmissionRequestError: Raised when there are validation errors for the
...
@@ -87,6 +93,22 @@ def create_submission(student_item_dict, answer, submitted_at=None,
...
@@ -87,6 +93,22 @@ def create_submission(student_item_dict, answer, submitted_at=None,
SubmissionInternalError: Raised when submission access causes an
SubmissionInternalError: Raised when submission access causes an
internal error.
internal error.
Examples:
>>> student_item_dict = dict(
>>> student_id="Tim",
>>> item_id="item_1",
>>> course_id="course_1",
>>> item_type="type_one"
>>> )
>>> create_submission(student_item_dict, "The answer is 42.", datetime.utcnow, 1)
{
'student_item': 2,
'attempt_number': 1,
'submitted_at': datetime.datetime(2014, 1, 29, 17, 14, 52, 649284 tzinfo=<UTC>),
'created_at': datetime.datetime(2014, 1, 29, 17, 14, 52, 668850, tzinfo=<UTC>),
'answer': u'The answer is 42.'
}
"""
"""
student_item_model
=
_get_or_create_student_item
(
student_item_dict
)
student_item_model
=
_get_or_create_student_item
(
student_item_dict
)
if
attempt_number
is
None
:
if
attempt_number
is
None
:
...
@@ -103,7 +125,8 @@ def create_submission(student_item_dict, answer, submitted_at=None,
...
@@ -103,7 +125,8 @@ def create_submission(student_item_dict, answer, submitted_at=None,
try
:
try
:
answer
=
force_unicode
(
answer
)
answer
=
force_unicode
(
answer
)
except
UnicodeDecodeError
:
except
UnicodeDecodeError
:
raise
SubmissionRequestError
(
u"Submission answer could not be properly decoded to unicode."
)
raise
SubmissionRequestError
(
u"Submission answer could not be properly decoded to unicode."
)
model_kwargs
=
{
model_kwargs
=
{
"student_item"
:
student_item_model
,
"student_item"
:
student_item_model
,
...
@@ -147,7 +170,13 @@ def get_submissions(student_item_dict, limit=None):
...
@@ -147,7 +170,13 @@ def get_submissions(student_item_dict, limit=None):
associated submissions are returned.
associated submissions are returned.
Returns:
Returns:
List dict: A list of dicts for the associated student item.
List dict: A list of dicts for the associated student item. The submission
contains five attributes: student_item, attempt_number, submitted_at,
created_at, and answer. 'student_item' is the ID of the related student
item for the submission. 'attempt_number' is the attempt this submission
represents for this question. 'submitted_at' represents the time this
submission was submitted, which can be configured, versus the
'created_at' date, which is when the submission is first created.
Raises:
Raises:
SubmissionRequestError: Raised when the associated student item fails
SubmissionRequestError: Raised when the associated student item fails
...
@@ -155,10 +184,27 @@ def get_submissions(student_item_dict, limit=None):
...
@@ -155,10 +184,27 @@ def get_submissions(student_item_dict, limit=None):
SubmissionNotFoundError: Raised when a submission cannot be found for
SubmissionNotFoundError: Raised when a submission cannot be found for
the associated student item.
the associated student item.
Examples:
>>> student_item_dict = dict(
>>> student_id="Tim",
>>> item_id="item_1",
>>> course_id="course_1",
>>> item_type="type_one"
>>> )
>>> get_submissions(student_item_dict, 3)
[{
'student_item': 2,
'attempt_number': 1,
'submitted_at': datetime.datetime(2014, 1, 29, 23, 14, 52, 649284, tzinfo=<UTC>),
'created_at': datetime.datetime(2014, 1, 29, 17, 14, 52, 668850, tzinfo=<UTC>),
'answer': u'The answer is 42.'
}]
"""
"""
student_item_model
=
_get_or_create_student_item
(
student_item_dict
)
student_item_model
=
_get_or_create_student_item
(
student_item_dict
)
try
:
try
:
submission_models
=
Submission
.
objects
.
filter
(
student_item
=
student_item_model
)
submission_models
=
Submission
.
objects
.
filter
(
student_item
=
student_item_model
)
except
DatabaseError
:
except
DatabaseError
:
error_message
=
(
error_message
=
(
u"Error getting submission request for student item {}"
u"Error getting submission request for student item {}"
...
@@ -170,7 +216,8 @@ def get_submissions(student_item_dict, limit=None):
...
@@ -170,7 +216,8 @@ def get_submissions(student_item_dict, limit=None):
if
limit
:
if
limit
:
submission_models
=
submission_models
[:
limit
]
submission_models
=
submission_models
[:
limit
]
return
[
SubmissionSerializer
(
submission
)
.
data
for
submission
in
submission_models
]
return
[
SubmissionSerializer
(
submission
)
.
data
for
submission
in
submission_models
]
def
get_score
(
student_item
):
def
get_score
(
student_item
):
...
@@ -219,7 +266,8 @@ def _get_or_create_student_item(student_item_dict):
...
@@ -219,7 +266,8 @@ def _get_or_create_student_item(student_item_dict):
try
:
try
:
student_item_model
=
StudentItem
.
objects
.
get
(
**
student_item_dict
)
student_item_model
=
StudentItem
.
objects
.
get
(
**
student_item_dict
)
except
StudentItem
.
DoesNotExist
:
except
StudentItem
.
DoesNotExist
:
student_item_serializer
=
StudentItemSerializer
(
data
=
student_item_dict
)
student_item_serializer
=
StudentItemSerializer
(
data
=
student_item_dict
)
student_item_serializer
.
is_valid
()
student_item_serializer
.
is_valid
()
if
student_item_serializer
.
errors
:
if
student_item_serializer
.
errors
:
raise
SubmissionRequestError
(
student_item_serializer
.
errors
)
raise
SubmissionRequestError
(
student_item_serializer
.
errors
)
...
...
This diff is collapsed.
Click to expand it.
requirements/test.txt
View file @
4ae638e9
ddt==0.4.0
django-nose==1.2
django-nose==1.2
mock==1.0.1
mock==1.0.1
nose==1.3.0
nose==1.3.0
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment