Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
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-platform
Commits
ed6e4645
Commit
ed6e4645
authored
Nov 04, 2015
by
Afeef Janjua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
allow reverification for pending status ('must_retry', 'submitted')
parent
f475200a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
4 deletions
+17
-4
AUTHORS
+1
-0
lms/djangoapps/verify_student/tests/test_views.py
+11
-3
lms/djangoapps/verify_student/views.py
+5
-1
No files found.
AUTHORS
View file @
ed6e4645
...
...
@@ -255,3 +255,4 @@ Douglas Hall <dhall@edx.org>
Awais Jibran <awaisdar001@gmail.com>
Muhammad Rehan <muhammadrehan69@gmail.com>
Shawn Milochik <shawn@milochik.com>
Afeef Janjua <janjua.afeef@gmail.com>
lms/djangoapps/verify_student/tests/test_views.py
View file @
ed6e4645
...
...
@@ -1870,14 +1870,22 @@ class TestReverifyView(TestCase):
# Allow the student to reverify
self
.
_assert_can_reverify
()
def
test_reverify_view_cannot_reverify_pending
(
self
):
def
test_reverify_view_can_reverify_pending
(
self
):
""" Test that the user can still re-verify even if the previous photo
verification is in pending state.
A photo verification is considered in pending state when the user has
either submitted the photo verification (status in database: 'submitted')
or photo verification submission failed (status in database: 'must_retry').
"""
# User has submitted a verification attempt, but Software Secure has not yet responded
attempt
=
SoftwareSecurePhotoVerification
.
objects
.
create
(
user
=
self
.
user
)
attempt
.
mark_ready
()
attempt
.
submit
()
# Can
not re
verify because an attempt has already been submitted.
self
.
_assert_can
not
_reverify
()
# Can
re-
verify because an attempt has already been submitted.
self
.
_assert_can_reverify
()
def
test_reverify_view_cannot_reverify_approved
(
self
):
# Submitted attempt has been approved
...
...
lms/djangoapps/verify_student/views.py
View file @
ed6e4645
...
...
@@ -1350,7 +1350,11 @@ class ReverifyView(View):
Backbone views used in the initial verification flow.
"""
status
,
_
=
SoftwareSecurePhotoVerification
.
user_status
(
request
.
user
)
if
status
in
[
"must_reverify"
,
"expired"
]:
# If the verification process is still ongoing i.e. the status for photo
# verification is either 'submitted' or 'must_retry' then its marked as
# 'pending'
if
status
in
[
"must_reverify"
,
"expired"
,
"pending"
]:
context
=
{
"user_full_name"
:
request
.
user
.
profile
.
name
,
"platform_name"
:
settings
.
PLATFORM_NAME
,
...
...
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