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
01e4bdb8
Commit
01e4bdb8
authored
Jan 04, 2013
by
Alexander Kryklia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added test for populate
parent
e66e4040
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
4 deletions
+18
-4
common/lib/capa/capa/graders/tests.py
+18
-4
No files found.
common/lib/capa/capa/graders/tests.py
View file @
01e4bdb8
...
...
@@ -5,6 +5,7 @@ from draganddrop import PositionsCompare
class
Test_PositionsCompare
(
unittest
.
TestCase
):
""" describe"""
def
test_nested_list_and_list1
(
self
):
self
.
assertEqual
(
PositionsCompare
([[
1
,
2
],
40
]),
PositionsCompare
([
1
,
3
]))
...
...
@@ -137,7 +138,7 @@ class Test_DragAndDrop_Grade(unittest.TestCase):
'rule'
:
'anyof'
},
{
'draggables'
:
[
'7'
,
'8'
,
'9'
,
'10'
],
'targets'
:
[
'p_left_1'
,
'p_left_2'
,
'p_right_1'
,
'p_right_2'
],
'targets'
:
[
'p_left_1'
,
'p_left_2'
,
'p_right_1'
,
'p_right_2'
],
'rule'
:
'anyof'
},
{
'draggables'
:
[
'11'
,
'12'
],
...
...
@@ -200,10 +201,23 @@ class Test_DragAndDrop_Grade(unittest.TestCase):
class
Test_DragAndDrop_Populate
(
unittest
.
TestCase
):
#test for every function in DND
def
test1
(
self
):
self
.
assertTrue
(
1
)
def
test_1
(
self
):
dnd
=
draganddrop
.
DragAndDrop
()
correct_answer
=
{
'1'
:
[[
40
,
10
],
29
],
'name_with_icon'
:
[
20
,
20
]}
user_input
=
'{"use_targets": false, "draggables":
\
[{"1": [10, 10]}, {"name_with_icon": [20, 20]}]}'
dnd
.
populate
(
correct_answer
,
user_input
)
correct_groups
=
{
'1'
:
[
'name_with_icon'
],
'0'
:
[
'1'
]}
correct_positions
=
{
'1'
:
{
'exact'
:
[[
20
,
20
]]},
'0'
:
{
'exact'
:
[[[
40
,
10
],
29
]]}}
user_groups
=
{
'1'
:
[
u'name_with_icon'
],
'0'
:
[
u'1'
]}
user_positions
=
{
'1'
:
{
'user'
:
[[
20
,
20
]]},
'0'
:
{
'user'
:
[[
10
,
10
]]}}
self
.
assertEqual
(
correct_groups
,
dnd
.
correct_groups
)
self
.
assertEqual
(
correct_positions
,
dnd
.
correct_positions
)
self
.
assertEqual
(
user_groups
,
dnd
.
user_groups
)
self
.
assertEqual
(
user_positions
,
dnd
.
user_positions
)
class
Test_DraAndDrop_Compare_Positions
(
unittest
.
TestCase
):
...
...
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