1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
// NOLINTBEGIN(*)
#include "cxx_common.h"
#undef SUITE_NAME
#define SUITE_NAME McastLocalRemoteTestSuite
// In this test, the client subscribes to two multicast events
// One event comes from a device running in the same host than the client
// The other event comes from a device running in a different host (therefore using PGM to communicate)
// These two events use the same callback object
class McastLocalRemoteTestSuite : public CxxTest::TestSuite
{
public:
class EventCallBack : public Tango::CallBack
{
public:
EventCallBack(McastLocalRemoteTestSuite *ptr) :
parent(ptr)
{
}
void push_event(Tango::EventData *);
int cb_executed;
int cb_err;
long val;
long val_size;
private:
McastLocalRemoteTestSuite *parent;
};
protected:
DeviceProxy *device_local;
DeviceProxy *device_remote;
string att_name;
int eve_id_local;
int eve_id_remote;
EventCallBack *cb;
public:
SUITE_NAME()
{
//
// Arguments check -------------------------------------------------
//
string local_device_name;
string remote_device_name;
// user arguments, obtained from the command line sequentially
local_device_name = CxxTest::TangoPrinter::get_param_loc("local_device", "local device name");
remote_device_name = CxxTest::TangoPrinter::get_param_loc("remote_device", "remote device name");
// always add this line, otherwise arguments will not be parsed correctly
CxxTest::TangoPrinter::validate_args();
//
// Initialization --------------------------------------------------
//
cb = new EventCallBack(this);
try
{
device_local = new DeviceProxy(local_device_name);
device_remote = new DeviceProxy(remote_device_name);
att_name = "Event_change_tst";
//
// Test set up (stop polling and clear abs_change and rel_change attribute
// properties but restart device to take this into account)
// Set the abs_change to 1
//
if(device_local->is_attribute_polled(att_name))
{
device_local->stop_poll_attribute(att_name);
}
if(device_remote->is_attribute_polled(att_name))
{
device_remote->stop_poll_attribute(att_name);
}
DbAttribute db_local(att_name, local_device_name);
DbAttribute db_remote(att_name, remote_device_name);
DbData dbd;
DbDatum a(att_name);
a << (short) 2;
dbd.push_back(a);
dbd.push_back(DbDatum("abs_change"));
dbd.push_back(DbDatum("rel_change"));
db_local.delete_property(dbd);
db_remote.delete_property(dbd);
dbd.clear();
a << (short) 1;
dbd.push_back(a);
DbDatum ch("abs_change");
ch << (short) 1;
dbd.push_back(ch);
db_local.put_property(dbd);
db_remote.put_property(dbd);
DeviceProxy adm_dev_local(device_local->adm_name().c_str());
DeviceData di;
di << local_device_name;
adm_dev_local.command_inout("DevRestart", di);
delete device_local;
device_local = new DeviceProxy(local_device_name);
std::this_thread::sleep_for(std::chrono::seconds(1));
DeviceProxy adm_dev_remote(device_remote->adm_name().c_str());
di << remote_device_name;
adm_dev_remote.command_inout("DevRestart", di);
delete device_remote;
device_remote = new DeviceProxy(remote_device_name);
std::this_thread::sleep_for(std::chrono::seconds(1));
cb->cb_executed = 0;
cb->cb_err = 0;
}
catch(CORBA::Exception &e)
{
Except::print_exception(e);
exit(-1);
}
}
virtual ~SUITE_NAME()
{
device_local->stop_poll_attribute(att_name);
device_remote->stop_poll_attribute(att_name);
delete device_local;
delete device_remote;
delete cb;
}
static SUITE_NAME *createSuite()
{
return new SUITE_NAME();
}
static void destroySuite(SUITE_NAME *suite)
{
delete suite;
}
//
// Tests -------------------------------------------------------
//
// Test subscribe_event call
void test_Subscribe_multicast_events(void)
{
// switch on the polling first!
device_local->poll_attribute(att_name, 1000);
eve_id_local = device_local->subscribe_event(att_name, Tango::CHANGE_EVENT, cb);
device_remote->poll_attribute(att_name, 1000);
eve_id_remote = device_remote->subscribe_event(att_name, Tango::CHANGE_EVENT, cb);
// Check that the attribute is now polled at 1000 mS
bool po = device_local->is_attribute_polled(att_name);
TEST_LOG << "Local device: attribute polled : " << po << endl;
TS_ASSERT(po);
int poll_period = device_local->get_attribute_poll_period(att_name);
TEST_LOG << "Local device: att polling period : " << poll_period << endl;
TS_ASSERT_EQUALS(poll_period, 1000);
po = device_remote->is_attribute_polled(att_name);
TEST_LOG << "Remote device: attribute polled : " << po << endl;
TS_ASSERT(po);
poll_period = device_remote->get_attribute_poll_period(att_name);
TEST_LOG << "Remote device: att polling period : " << poll_period << endl;
TS_ASSERT_EQUALS(poll_period, 1000);
}
// Check that first point has been received
void test_first_point_received(void)
{
TS_ASSERT_EQUALS(cb->cb_executed, 2);
TS_ASSERT_EQUALS(cb->val_size, 4);
}
void test_Callback_executed_after_a_change_for_both_events(void)
{
std::this_thread::sleep_for(std::chrono::seconds(1));
device_local->command_inout("IOIncValue");
device_remote->command_inout("IOIncValue");
std::this_thread::sleep_for(std::chrono::seconds(2));
TEST_LOG << "cb excuted = " << cb->cb_executed << endl;
TS_ASSERT_EQUALS(cb->cb_executed, 4);
TS_ASSERT_EQUALS(cb->val_size, 4);
}
// unsubscribe to the event
void test_unsubscribe_event(void)
{
device_local->unsubscribe_event(eve_id_local);
device_remote->unsubscribe_event(eve_id_remote);
}
};
void McastLocalRemoteTestSuite::EventCallBack::push_event(Tango::EventData *event_data)
{
vector<DevLong> value;
cb_executed++;
try
{
TEST_LOG << "EventCallBack::push_event(): called attribute " << event_data->attr_name << " event "
<< event_data->event << "\n";
if(!event_data->err)
{
*(event_data->attr_value) >> value;
val = value[2];
val_size = value.size();
}
else
{
if(strcmp(event_data->errors[0].reason.in(), "bbb") == 0)
{
cb_err++;
}
}
}
catch(...)
{
TEST_LOG << "EventCallBack::push_event(): could not extract data !\n";
}
}
// NOLINTEND(*)
|