Skip to content
Snippets Groups Projects
Commit fc27d975 authored by Christoph Kampmeyer's avatar Christoph Kampmeyer
Browse files

testDirectDeviceToCS: Synchronize to device init

parent be16b14d
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,18 @@ namespace ctk = ChimeraTK; ...@@ -24,6 +24,18 @@ namespace ctk = ChimeraTK;
// list of user types the accessors are tested with // list of user types the accessors are tested with
typedef boost::mpl::list<int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, float, double> test_types; typedef boost::mpl::list<int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, float, double> test_types;
/*********************************************************************************************************************/
/* Helper function to synchronize with device initialization
*
* This is required because we open the device manually in the test cases.
*/
static bool deviceIsInitialised(std::string alias, boost::shared_ptr<ctk::ControlSystemPVManager> csPVManager) {
auto dummyDeviceStatus = csPVManager->getProcessArray<int>("/Devices/" + alias + "/status");
dummyDeviceStatus->read();
return dummyDeviceStatus->accessData(0) == 0;
}
/*********************************************************************************************************************/ /*********************************************************************************************************************/
/* dummy application */ /* dummy application */
...@@ -128,6 +140,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(testDirectCStoDev, T, test_types) { ...@@ -128,6 +140,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(testDirectCStoDev, T, test_types) {
ChimeraTK::Device dev; ChimeraTK::Device dev;
dev.open("Dummy0"); dev.open("Dummy0");
CHECK_TIMEOUT(deviceIsInitialised("Dummy0", pvManagers.first), 10000);
auto myFeeder = pvManagers.first->getProcessArray<T>("/myFeeder"); auto myFeeder = pvManagers.first->getProcessArray<T>("/myFeeder");
BOOST_CHECK(myFeeder->getName() == "/myFeeder"); BOOST_CHECK(myFeeder->getName() == "/myFeeder");
...@@ -158,6 +171,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(testDirectCStoDevFanOut, T, test_types) { ...@@ -158,6 +171,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(testDirectCStoDevFanOut, T, test_types) {
ChimeraTK::Device dev; ChimeraTK::Device dev;
dev.open("Dummy0"); dev.open("Dummy0");
CHECK_TIMEOUT(deviceIsInitialised("Dummy0", pvManagers.first), 1);
auto myFeeder = pvManagers.first->getProcessArray<T>("/myFeeder"); auto myFeeder = pvManagers.first->getProcessArray<T>("/myFeeder");
BOOST_CHECK(myFeeder->getName() == "/myFeeder"); BOOST_CHECK(myFeeder->getName() == "/myFeeder");
...@@ -220,7 +234,8 @@ BOOST_AUTO_TEST_CASE(testConnectTo) { ...@@ -220,7 +234,8 @@ BOOST_AUTO_TEST_CASE(testConnectTo) {
testDirectRegister(test, csuint16, devuint16, [] {}); testDirectRegister(test, csuint16, devuint16, [] {});
testDirectRegister(test, csint8, devint8, [] {}); testDirectRegister(test, csint8, devint8, [] {});
testDirectRegister(test, csuint8, devuint8, [] {}); testDirectRegister(test, csuint8, devuint8, [] {});
testDirectRegister(test, csfloat, devfloat, [] {}, false); testDirectRegister(
test, csfloat, devfloat, [] {}, false);
testDirectRegister(test, csDeep1, devDeep1, [] {}); testDirectRegister(test, csDeep1, devDeep1, [] {});
testDirectRegister(test, csDeep2, devDeep2, [] {}); testDirectRegister(test, csDeep2, devDeep2, [] {});
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment