Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ApplicationCore
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
ChimeraTK Mirror
ApplicationCore
Commits
66c38381
Commit
66c38381
authored
8 years ago
by
Martin Christoph Hierholzer
Browse files
Options
Downloads
Patches
Plain Diff
added a test with chained modules
parent
71e27363
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/executables_src/testTestFacilities.cc
+87
-0
87 additions, 0 deletions
tests/executables_src/testTestFacilities.cc
with
87 additions
and
0 deletions
tests/executables_src/testTestFacilities.cc
+
87
−
0
View file @
66c38381
...
@@ -451,6 +451,93 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testReadAny, T, test_types ) {
...
@@ -451,6 +451,93 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testReadAny, T, test_types ) {
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
.
readNonBlocking
()
==
true
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
.
readNonBlocking
()
==
true
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
==
35
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
==
35
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
==
1
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
==
1
);
// check that we still don't receive anything anymore, even if we try running the application again
app
.
stepApplication
();
usleep
(
10000
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
.
readNonBlocking
()
==
false
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
.
readNonBlocking
()
==
false
);
}
}
/*********************************************************************************************************************/
/* test the interplay of multiple chained modules and their threads in test mode */
BOOST_AUTO_TEST_CASE_TEMPLATE
(
testChainedModules
,
T
,
test_types
)
{
std
::
cout
<<
"*********************************************************************************************************************"
<<
std
::
endl
;
std
::
cout
<<
"==> testChainedModules<"
<<
typeid
(
T
).
name
()
<<
">"
<<
std
::
endl
;
TestApplication
<
T
>
app
;
// put everything we got into one chain
app
.
noLoopTestModule
.
outputs
>=
app
.
readAnyTestModule
.
inputs
;
app
.
readAnyTestModule
.
value
>>
app
.
blockingReadTestModule
.
someInput
;
app
.
blockingReadTestModule
.
someOutput
>>
app
.
asyncReadTestModule
.
someInput
;
app
.
asyncReadTestModule
.
someOutput
>>
app
.
noLoopTestModule
.
someInput
;
app
.
readAnyTestModule
.
index
>>
app
.
noLoopTestModule
.
someUIntInput
;
app
.
noLoopTestModule
.
someOutput
>>
ctk
::
VariableNetworkNode
::
makeConstant
<
T
>
(
false
,
0
,
1
);
// just to avoid runtime warning
app
.
enableTestableMode
();
app
.
initialise
();
app
.
run
();
// check that we don't receive anything yet
usleep
(
10000
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
.
readNonBlocking
()
==
false
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
.
readNonBlocking
()
==
false
);
// send something to v2
app
.
noLoopTestModule
.
outputs
.
v2
=
11
;
app
.
noLoopTestModule
.
outputs
.
v2
.
write
();
// check that we still don't receive anything yet
usleep
(
10000
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
.
readNonBlocking
()
==
false
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
.
readNonBlocking
()
==
false
);
// run the application and check that we got the expected result
app
.
stepApplication
();
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
.
readNonBlocking
()
==
true
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
.
readNonBlocking
()
==
true
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
==
11
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
==
2
);
// send something to v3
app
.
noLoopTestModule
.
outputs
.
v3
=
12
;
app
.
noLoopTestModule
.
outputs
.
v3
.
write
();
// check that we still don't receive anything yet
usleep
(
10000
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
.
readNonBlocking
()
==
false
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
.
readNonBlocking
()
==
false
);
// run the application and check that we got the expected result
app
.
stepApplication
();
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
.
readNonBlocking
()
==
true
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
.
readNonBlocking
()
==
true
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
==
12
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
==
3
);
// send something to v3 again
app
.
noLoopTestModule
.
outputs
.
v3
=
13
;
app
.
noLoopTestModule
.
outputs
.
v3
.
write
();
// check that we still don't receive anything yet
usleep
(
10000
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
.
readNonBlocking
()
==
false
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
.
readNonBlocking
()
==
false
);
// run the application and check that we got the expected result
app
.
stepApplication
();
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
.
readNonBlocking
()
==
true
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
.
readNonBlocking
()
==
true
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
==
13
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
==
3
);
// check that we still don't receive anything anymore, even if we try running the application again
app
.
stepApplication
();
usleep
(
10000
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someInput
.
readNonBlocking
()
==
false
);
BOOST_CHECK
(
app
.
noLoopTestModule
.
someUIntInput
.
readNonBlocking
()
==
false
);
}
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