Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
15503b66
Commit
15503b66
authored
5 years ago
by
Feanil Patel
Browse files
Options
Downloads
Patches
Plain Diff
Remove low value annotation test.
parent
da68d626
No related branches found
Branches containing commit
Tags
release-2021-03-16-09.35
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/test/acceptance/tests/test_annotatable.py
+0
-142
0 additions, 142 deletions
common/test/acceptance/tests/test_annotatable.py
with
0 additions
and
142 deletions
common/test/acceptance/tests/test_annotatable.py
deleted
100644 → 0
+
0
−
142
View file @
da68d626
# -*- coding: utf-8 -*-
"""
E2E tests for the LMS.
"""
from
textwrap
import
dedent
from
six.moves
import
range
from
common.test.acceptance.fixtures.course
import
CourseFixture
,
XBlockFixtureDesc
from
common.test.acceptance.pages.common.auto_auth
import
AutoAuthPage
from
common.test.acceptance.pages.lms.annotation_component
import
AnnotationComponentPage
from
common.test.acceptance.pages.lms.courseware
import
CoursewarePage
from
common.test.acceptance.tests.helpers
import
UniqueCourseTest
,
disable_animations
def
_correctness
(
choice
,
target
):
if
choice
==
target
:
return
"
correct
"
elif
abs
(
choice
-
target
)
==
1
:
return
"
partially-correct
"
else
:
return
"
incorrect
"
class
AnnotatableProblemTest
(
UniqueCourseTest
):
"""
Tests for annotation components.
"""
USERNAME
=
"
STAFF_TESTER
"
EMAIL
=
"
johndoe@example.com
"
DATA_TEMPLATE
=
dedent
(
u
"""
\
<annotatable>
<instructions>Instruction text</instructions>
<p>{}</p>
</annotatable>
"""
)
ANNOTATION_TEMPLATE
=
dedent
(
u
"""
\
Before {0}.
<annotation title=
"
region {0}
"
body=
"
Comment {0}
"
highlight=
"
yellow
"
problem=
"
{0}
"
>
Region Contents {0}
</annotation>
After {0}.
"""
)
PROBLEM_TEMPLATE
=
dedent
(
u
"""
\
<problem max_attempts=
"
1
"
weight=
""
>
<annotationresponse>
<annotationinput>
<title>Question {number}</title>
<text>Region Contents {number}</text>
<comment>What number is this region?</comment>
<comment_prompt>Type your response below:</comment_prompt>
<tag_prompt>What number is this region?</tag_prompt>
<options>
{options}
</options>
</annotationinput>
</annotationresponse>
<solution>
This problem is checking region {number}
</solution>
</problem>
"""
)
OPTION_TEMPLATE
=
u
"""
<option choice=
"
{correctness}
"
>{number}</option>
"""
def
setUp
(
self
):
super
(
AnnotatableProblemTest
,
self
).
setUp
()
self
.
courseware_page
=
CoursewarePage
(
self
.
browser
,
self
.
course_id
)
# Install a course with two annotations and two annotations problems.
course_fix
=
CourseFixture
(
self
.
course_info
[
'
org
'
],
self
.
course_info
[
'
number
'
],
self
.
course_info
[
'
run
'
],
self
.
course_info
[
'
display_name
'
]
)
self
.
annotation_count
=
2
course_fix
.
add_children
(
XBlockFixtureDesc
(
'
chapter
'
,
'
Test Section
'
).
add_children
(
XBlockFixtureDesc
(
'
sequential
'
,
'
Test Subsection
'
).
add_children
(
XBlockFixtureDesc
(
'
vertical
'
,
'
Test Annotation Vertical
'
).
add_children
(
XBlockFixtureDesc
(
'
annotatable
'
,
'
Test Annotation Module
'
,
data
=
self
.
DATA_TEMPLATE
.
format
(
"
\n
"
.
join
(
self
.
ANNOTATION_TEMPLATE
.
format
(
i
)
for
i
in
range
(
self
.
annotation_count
)
))),
XBlockFixtureDesc
(
'
problem
'
,
'
Test Annotation Problem 0
'
,
data
=
self
.
PROBLEM_TEMPLATE
.
format
(
number
=
0
,
options
=
"
\n
"
.
join
(
self
.
OPTION_TEMPLATE
.
format
(
number
=
k
,
correctness
=
_correctness
(
k
,
0
))
for
k
in
range
(
self
.
annotation_count
)
))),
XBlockFixtureDesc
(
'
problem
'
,
'
Test Annotation Problem 1
'
,
data
=
self
.
PROBLEM_TEMPLATE
.
format
(
number
=
1
,
options
=
"
\n
"
.
join
(
self
.
OPTION_TEMPLATE
.
format
(
number
=
k
,
correctness
=
_correctness
(
k
,
1
))
for
k
in
range
(
self
.
annotation_count
)
)))
)
)
)
).
install
()
# Auto-auth register for the course.
AutoAuthPage
(
self
.
browser
,
username
=
self
.
USERNAME
,
email
=
self
.
EMAIL
,
course_id
=
self
.
course_id
,
staff
=
False
).
visit
()
def
_goto_annotation_component_page
(
self
):
"""
Open annotation component page with assertion.
"""
self
.
courseware_page
.
visit
()
annotation_component_page
=
AnnotationComponentPage
(
self
.
browser
)
self
.
assertEqual
(
annotation_component_page
.
component_name
,
'
Test Annotation Module
'
.
format
()
)
return
annotation_component_page
def
test_annotation_component
(
self
):
"""
Test annotation components links to annotation problems.
"""
annotation_component_page
=
self
.
_goto_annotation_component_page
()
# This will avoid scrolling related problems on different browsers and instead directly jump on the problem
disable_animations
(
annotation_component_page
)
for
i
in
range
(
self
.
annotation_count
):
annotation_component_page
.
click_reply_annotation
(
i
)
self
.
assertTrue
(
annotation_component_page
.
check_scroll_to_problem
())
annotation_component_page
.
answer_problem
()
self
.
assertTrue
(
annotation_component_page
.
check_feedback
())
annotation_component_page
.
click_return_to_annotation
()
self
.
assertTrue
(
annotation_component_page
.
check_scroll_to_annotation
())
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment