Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
loco-3d
Multicontact-api
Commits
ad6fc837
Commit
ad6fc837
authored
Jan 29, 2020
by
Pierre Fernbach
Browse files
[Tests] add test cases for ContactPhase contact variations helpers
parent
b5d53de6
Changes
1
Hide whitespace changes
Inline
Side-by-side
unittest/scenario.cpp
View file @
ad6fc837
...
...
@@ -1044,7 +1044,7 @@ BOOST_AUTO_TEST_CASE(contact_phase) {
explicitContactPhaseAssertEqual
(
cp2
,
cp_from_txt
);
}
BOOST_AUTO_TEST_CASE
(
contact_phase_helpers
)
{
BOOST_AUTO_TEST_CASE
(
contact_phase_helpers
_tarjectories
)
{
point3_t
p0
(
0.
,
0.
,
0.
);
point3_t
p1
(
1.
,
2.
,
3.
);
point3_t
p2
(
4.
,
4.
,
4.
);
...
...
@@ -1295,6 +1295,49 @@ BOOST_AUTO_TEST_CASE(contact_phase_helpers) {
std
::
invalid_argument
);
}
BOOST_AUTO_TEST_CASE
(
contact_phase_helper_contact_variation
){
typedef
ContactPhase
::
t_strings
t_strings
;
// # contacts repositioned :
ContactPhase
cp1
=
buildRandomContactPhase
();
ContactPhase
cp2
=
buildRandomContactPhase
();
t_strings
repo
=
cp1
.
getContactsRepositioned
(
cp2
);
BOOST_CHECK
(
repo
.
size
()
==
2
);
BOOST_CHECK
(
repo
[
0
]
==
"right_hand"
);
BOOST_CHECK
(
repo
[
1
]
==
"left_foot"
);
t_strings
repo1
=
cp2
.
getContactsRepositioned
(
cp1
);
BOOST_CHECK
(
repo1
.
size
()
==
2
);
BOOST_CHECK
(
repo1
[
0
]
==
"right_hand"
);
BOOST_CHECK
(
repo1
[
1
]
==
"left_foot"
);
t_strings
vars
=
cp1
.
getContactsVariations
(
cp2
);
BOOST_CHECK
(
vars
.
size
()
==
2
);
// # contacts broken :
ContactPhase
cp3
;
ContactPatch
RH_patch
(
SE3
::
Identity
().
setRandom
());
cp3
.
addContact
(
"right_hand"
,
RH_patch
);
cp3
.
addContact
(
"left_foot"
,
ContactPatch
(
SE3
::
Identity
().
setRandom
()));
ContactPhase
cp4
;
cp4
.
addContact
(
"right_hand"
,
RH_patch
);
t_strings
broken
=
cp3
.
getContactsBroken
(
cp4
);
BOOST_CHECK
(
broken
.
size
()
==
1
);
BOOST_CHECK
(
broken
[
0
]
==
"left_foot"
);
t_strings
broken1
=
cp4
.
getContactsBroken
(
cp3
);
BOOST_CHECK
(
broken1
.
size
()
==
0
);
t_strings
created
=
cp4
.
getContactsCreated
(
cp3
);
BOOST_CHECK
(
created
.
size
()
==
1
);
BOOST_CHECK
(
created
[
0
]
==
"left_foot"
);
t_strings
created1
=
cp3
.
getContactsCreated
(
cp4
);
BOOST_CHECK
(
created1
.
size
()
==
0
);
vars
=
cp3
.
getContactsVariations
(
cp4
);
BOOST_CHECK
(
vars
.
size
()
==
1
);
BOOST_CHECK
(
vars
[
0
]
==
"left_foot"
);
vars
=
cp4
.
getContactsVariations
(
cp3
);
BOOST_CHECK
(
vars
.
size
()
==
1
);
BOOST_CHECK
(
vars
[
0
]
==
"left_foot"
);
}
BOOST_AUTO_TEST_CASE
(
contact_sequence
)
{
// test without specifying size and using 'append' :
ContactSequence
cs1
=
ContactSequence
(
0
);
...
...
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