本文整理汇总了C++中Agent::getDevices方法的典型用法代码示例。如果您正苦于以下问题:C++ Agent::getDevices方法的具体用法?C++ Agent::getDevices怎么用?C++ Agent::getDevices使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Agent
的用法示例。
在下文中一共展示了Agent::getDevices方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: testAdapter
void ConfigTest::testAdapter()
{
istringstream str("Devices = ../samples/test_config.xml\n"
"Adapters { LinuxCNC { \n"
"Port = 23\n"
"Host = 10.211.55.1\n"
"FilterDuplicates = true\n"
"AutoAvailable = true\n"
"IgnoreTimestamps = true\n"
"PreserveUUID = true\n"
"LegacyTimeout = 2000\n"
"} }\n");
mConfig->loadConfig(str);
Agent *agent = mConfig->getAgent();
CPPUNIT_ASSERT(agent);
Device *device = agent->getDevices()[0];
Adapter *adapter = device->mAdapters[0];
CPPUNIT_ASSERT_EQUAL(23, (int) adapter->getPort());
CPPUNIT_ASSERT_EQUAL((string) "10.211.55.1", adapter->getServer());
CPPUNIT_ASSERT(adapter->isDupChecking());
CPPUNIT_ASSERT(adapter->isAutoAvailable());
CPPUNIT_ASSERT(adapter->isIgnoringTimestamps());
CPPUNIT_ASSERT_EQUAL(2000, adapter->getLegacyTimeout());
CPPUNIT_ASSERT(device->mPreserveUuid);
}
示例2: testBlankConfig
/* ComponentTest protected methods */
void ConfigTest::testBlankConfig()
{
istringstream str("");
mConfig->loadConfig(str);
Agent *agent = mConfig->getAgent();
CPPUNIT_ASSERT(agent);
CPPUNIT_ASSERT_EQUAL(1, (int) agent->getDevices().size());
}
示例3: testDefaultPreserveUUID
void ConfigTest::testDefaultPreserveUUID()
{
istringstream str("Devices = ../samples/test_config.xml\n"
"PreserveUUID = true\n");
mConfig->loadConfig(str);
Agent *agent = mConfig->getAgent();
CPPUNIT_ASSERT(agent);
Device *device = agent->getDevices()[0];
CPPUNIT_ASSERT(device->mPreserveUuid);
}
示例4: testLegacyTimeout
void ConfigTest::testLegacyTimeout()
{
istringstream str("Devices = ../samples/test_config.xml\n"
"LegacyTimeout = 2000\n");
mConfig->loadConfig(str);
Agent *agent = mConfig->getAgent();
CPPUNIT_ASSERT(agent);
Device *device = agent->getDevices()[0];
Adapter *adapter = device->mAdapters[0];
CPPUNIT_ASSERT_EQUAL(2000, adapter->getLegacyTimeout());
}
示例5: testIgnoreTimestamps
void ConfigTest::testIgnoreTimestamps()
{
istringstream str("Devices = ../samples/test_config.xml\n"
"IgnoreTimestamps = true\n");
mConfig->loadConfig(str);
Agent *agent = mConfig->getAgent();
CPPUNIT_ASSERT(agent);
Device *device = agent->getDevices()[0];
Adapter *adapter = device->mAdapters[0];
CPPUNIT_ASSERT(adapter->isIgnoringTimestamps());
}
示例6: testDefaultPreserveOverride
void ConfigTest::testDefaultPreserveOverride()
{
istringstream str("Devices = ../samples/test_config.xml\n"
"PreserveUUID = true\n"
"Adapters { LinuxCNC { \n"
"PreserveUUID = false\n"
"} }\n");
mConfig->loadConfig(str);
Agent *agent = mConfig->getAgent();
CPPUNIT_ASSERT(agent);
Device *device = agent->getDevices()[0];
CPPUNIT_ASSERT(!device->mPreserveUuid);
}
示例7: testDevice
void ConfigTest::testDevice()
{
istringstream str("Devices = ../samples/test_config.xml\n");
mConfig->loadConfig(str);
Agent *agent = mConfig->getAgent();
CPPUNIT_ASSERT(agent);
Device *device = agent->getDevices()[0];
Adapter *adapter = device->mAdapters[0];
CPPUNIT_ASSERT_EQUAL((string) "LinuxCNC", device->getName());
CPPUNIT_ASSERT(!adapter->isDupChecking());
CPPUNIT_ASSERT(!adapter->isAutoAvailable());
CPPUNIT_ASSERT(!adapter->isIgnoringTimestamps());
CPPUNIT_ASSERT(device->mPreserveUuid);
}