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 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
|
// NOLINTBEGIN(*)
#include <thread>
#include <chrono>
#include "cxx_common.h"
#undef SUITE_NAME
#define SUITE_NAME DServerMiscTestSuite
using namespace std::chrono_literals;
class DServerMiscTestSuite : public CxxTest::TestSuite
{
protected:
DeviceProxy *device1, *dserver;
string device1_name, dserver_name, full_ds_name, server_host, doc_url;
DevLong server_version;
public:
SUITE_NAME()
{
//
// Arguments check -------------------------------------------------
//
device1_name = CxxTest::TangoPrinter::get_param("device1");
full_ds_name = CxxTest::TangoPrinter::get_param("fulldsname");
dserver_name = "dserver/" + CxxTest::TangoPrinter::get_param("fulldsname");
server_host = CxxTest::TangoPrinter::get_param("serverhost");
TS_ASSERT_THROWS_NOTHING(server_version = parse_as<int>(CxxTest::TangoPrinter::get_param("serverversion")));
doc_url = CxxTest::TangoPrinter::get_param("docurl");
CxxTest::TangoPrinter::validate_args();
//
// Initialization --------------------------------------------------
//
try
{
device1 = new DeviceProxy(device1_name);
dserver = new DeviceProxy(dserver_name);
device1->ping();
dserver->ping();
}
catch(CORBA::Exception &e)
{
Except::print_exception(e);
exit(-1);
}
}
virtual ~SUITE_NAME()
{
// set the Tango::ON state on suite tearDown() in case a test fails leaving Tango::OFF status
DeviceData din;
din << device1_name;
try
{
dserver->command_inout("DevRestart", din);
}
catch(CORBA::Exception &e)
{
TEST_LOG << endl << "Exception in suite tearDown():" << endl;
Except::print_exception(e);
exit(-1);
}
delete device1;
delete dserver;
}
static SUITE_NAME *createSuite()
{
return new SUITE_NAME();
}
static void destroySuite(SUITE_NAME *suite)
{
delete suite;
}
//
// Tests -------------------------------------------------------
//
// Test State and Status commands
void test_State_and_Status_commands(void)
{
DeviceData dout;
DevState state;
string str;
TS_ASSERT_THROWS_NOTHING(dout = dserver->command_inout("Status"));
dout >> str;
TS_ASSERT_EQUALS(str, "The device is ON\nThe polling is ON");
TS_ASSERT_THROWS_NOTHING(dout = dserver->command_inout("State"));
dout >> state;
TS_ASSERT_EQUALS(state, Tango::ON);
}
// Test DevRestart command on the dserver device
void test_DevRestart_command_on_the_dserver_device(void)
{
DeviceData din, dout;
DevState state_in, state_out;
string str;
state_in = Tango::OFF;
din << state_in;
TS_ASSERT_THROWS_NOTHING(device1->command_inout("IOState", din));
TS_ASSERT_THROWS_NOTHING(dout = device1->command_inout("State"));
dout >> state_out;
TS_ASSERT_EQUALS(state_out, Tango::OFF);
TS_ASSERT_THROWS_NOTHING(dserver->command_inout("RestartServer"));
std::this_thread::sleep_for(std::chrono::seconds(3));
TS_ASSERT_THROWS_NOTHING(dout = device1->command_inout("State"));
dout >> state_out;
TS_ASSERT_EQUALS(state_out, Tango::ON);
}
// Test DevRestart command on classical device
void test_DevRestart_command_on_classical_device(void)
{
DeviceData din, dout;
DevState state_in, state_out;
string str;
str = "a/b/c";
din << str;
TS_ASSERT_THROWS_ASSERT(dserver->command_inout("DevRestart", din),
Tango::DevFailed & e,
TS_ASSERT_EQUALS(string(e.errors[0].reason.in()), API_DeviceNotFound);
TS_ASSERT_EQUALS(e.errors[0].severity, Tango::ERR));
state_in = Tango::OFF;
din << state_in;
TS_ASSERT_THROWS_NOTHING(device1->command_inout("IOState", din));
TS_ASSERT_THROWS_NOTHING(dout = device1->command_inout("State"));
dout >> state_out;
TS_ASSERT_EQUALS(state_out, Tango::OFF);
str = device1_name;
din << str;
TS_ASSERT_THROWS_NOTHING(dserver->command_inout("RestartServer", din));
std::this_thread::sleep_for(std::chrono::seconds(6));
TS_ASSERT_THROWS_NOTHING(dout = device1->command_inout("State"));
dout >> state_out;
TS_ASSERT_EQUALS(state_out, Tango::ON);
}
// Test name, description, state ans status CORBA attributes
void test_name_description_state_ans_status_CORBA_attributes(void)
{
DeviceData dout;
DevState state_out = Tango::UNKNOWN;
string str;
TS_ASSERT_THROWS_NOTHING(str = dserver->name());
TS_ASSERT_EQUALS(str, dserver_name);
TS_ASSERT_THROWS_NOTHING(str = dserver->description());
TS_ASSERT_EQUALS(str, "A device server device !!");
TS_ASSERT_THROWS_NOTHING(str = dserver->status());
TEST_LOG << "str = " << str << endl;
TS_ASSERT_EQUALS(str, "The device is ON\nThe polling is ON");
TS_ASSERT_THROWS_NOTHING(state_out = dserver->state());
TS_ASSERT_EQUALS(state_out, Tango::ON);
}
// Ping the device
void test_ping_the_device(void)
{
TS_ASSERT_THROWS_NOTHING(dserver->ping());
}
// Test info call
void test_info_call(void)
{
TS_ASSERT_EQUALS(dserver->info().dev_class, "DServer");
// TODO: uncomment the following if needed
// TS_ASSERT_EQUALS(dserver->info().dev_type, "Uninitialised");
TS_ASSERT_EQUALS(dserver->info().doc_url, "Doc URL = " + doc_url);
TS_ASSERT_EQUALS(dserver->info().server_host, server_host);
TS_ASSERT_EQUALS(dserver->info().server_id, full_ds_name);
TS_ASSERT_EQUALS(dserver->info().server_version, server_version);
}
/* Tests that subscriber can receive events immediately after
* a device restart without a need to wait for re-subscription.
*/
void test_event_subscription_recovery_after_device_restart()
{
CountingCallBack<Tango::EventData> callback{};
std::string attribute_name = "event_change_tst";
int subscription = 0;
TS_ASSERT_THROWS_NOTHING(subscription = device1->subscribe_event(attribute_name, Tango::USER_EVENT, &callback));
TS_ASSERT_THROWS_NOTHING(device1->command_inout("IOPushEvent"));
callback.wait_for([&]() { return callback.invocation_count() >= 2; });
TS_ASSERT_EQUALS(2, callback.invocation_count());
TS_ASSERT_EQUALS(0, callback.error_count());
{
Tango::DeviceData input{};
input << device1_name;
TS_ASSERT_THROWS_NOTHING(dserver->command_inout("DevRestart", input));
}
TS_ASSERT_THROWS_NOTHING(device1->command_inout("IOPushEvent"));
callback.wait_for([&]() { return callback.invocation_count() >= 3; });
TS_ASSERT_EQUALS(3, callback.invocation_count());
TS_ASSERT_EQUALS(0, callback.error_count());
TS_ASSERT_THROWS_NOTHING(device1->unsubscribe_event(subscription));
}
/* Tests that attribute configuration change event
* is sent to all subscribers after device restart.
*/
void test_attr_conf_change_event_after_device_restart()
{
CountingCallBack<Tango::AttrConfEventData> callback{};
const std::string attribute_name = "event_change_tst";
int subscription = 0;
TS_ASSERT_THROWS_NOTHING(subscription =
device1->subscribe_event(attribute_name, Tango::ATTR_CONF_EVENT, &callback));
callback.wait_for([&]() { return callback.invocation_count() >= 1; });
TS_ASSERT_EQUALS(1, callback.invocation_count());
TS_ASSERT_EQUALS(0, callback.error_count());
{
Tango::DeviceData input{};
input << device1_name;
TS_ASSERT_THROWS_NOTHING(dserver->command_inout("DevRestart", input));
}
callback.wait_for([&]() { return callback.invocation_count() >= 2; });
TS_ASSERT_EQUALS(2, callback.invocation_count());
TS_ASSERT_EQUALS(0, callback.error_count());
TS_ASSERT_THROWS_NOTHING(device1->unsubscribe_event(subscription));
}
/*
* Test to check that client still receives periodic archive events after
* polling is stopped and started again for particular device. Such scenario
* used to fail as described in #675.
*/
void test_archive_periodic_events_after_polling_restart()
{
constexpr auto poll_period = 1000ms;
constexpr auto poll_period_ms = std::chrono::milliseconds(poll_period).count();
std::string attribute_name = "PollLong_attr";
auto config = device1->get_attribute_config(attribute_name);
config.events.arch_event.archive_period = std::to_string(poll_period_ms);
AttributeInfoListEx config_in = {config};
TS_ASSERT_THROWS_NOTHING(device1->set_attribute_config(config_in));
TS_ASSERT_THROWS_NOTHING(device1->poll_attribute(attribute_name, poll_period_ms));
CountingCallBack<Tango::EventData> callback{};
int subscription = 0;
TS_ASSERT_THROWS_NOTHING(subscription =
device1->subscribe_event(attribute_name, Tango::ARCHIVE_EVENT, &callback));
callback.wait_for([&]() { return callback.invocation_count() >= 2; });
TS_ASSERT_EQUALS(0, callback.error_count());
TS_ASSERT_EQUALS(2, callback.invocation_count());
TS_ASSERT_THROWS_NOTHING(device1->stop_poll_attribute(attribute_name));
callback.wait_for([&]() { return callback.invocation_count() >= 3; });
TS_ASSERT_EQUALS(1, callback.error_count());
TS_ASSERT_EQUALS(3, callback.invocation_count());
TS_ASSERT_THROWS_NOTHING(device1->poll_attribute(attribute_name, poll_period_ms));
callback.wait_for([&]() { return callback.invocation_count() >= 4; });
TS_ASSERT_EQUALS(1, callback.error_count());
TS_ASSERT_EQUALS(4, callback.invocation_count());
callback.wait_for([&]() { return callback.invocation_count() >= 5; });
TS_ASSERT_EQUALS(1, callback.error_count());
TS_ASSERT_EQUALS(5, callback.invocation_count());
TS_ASSERT_THROWS_NOTHING(device1->unsubscribe_event(subscription));
}
/* Tests that when two or more device proxies subscribe to the same event
* and one of them is deleted, only subscriptions made with that proxy are
* cancelled.
*/
void test_unsubscription_during_deletion_of_multiple_proxies()
{
CountingCallBack<Tango::EventData> callback1{};
CountingCallBack<Tango::EventData> callback2{};
const std::string attribute_name = "event_change_tst";
auto proxy1 = std::make_unique<DeviceProxy>(device1_name);
int subscription1 = 0;
TS_ASSERT_THROWS_NOTHING(subscription1 =
proxy1->subscribe_event(attribute_name, Tango::USER_EVENT, &callback1));
auto proxy2 = std::make_unique<DeviceProxy>(device1_name);
int subscription2 = 0;
TS_ASSERT_THROWS_NOTHING(subscription2 =
proxy2->subscribe_event(attribute_name, Tango::USER_EVENT, &callback2));
TS_ASSERT_THROWS_NOTHING(device1->command_inout("IOPushEvent"));
callback1.wait_for([&]() { return callback1.invocation_count() >= 2; });
callback2.wait_for([&]() { return callback2.invocation_count() >= 2; });
TS_ASSERT_EQUALS(2, callback1.invocation_count());
TS_ASSERT_EQUALS(0, callback1.error_count());
TS_ASSERT_EQUALS(2, callback2.invocation_count());
TS_ASSERT_EQUALS(0, callback2.error_count());
TS_ASSERT_THROWS_NOTHING(proxy1->unsubscribe_event(subscription1));
proxy1.reset(nullptr);
// We send two events so that we can confirm that callback1 hasn't been
// called. As events are processed sequentially we know that if
// callback2 has been called twice then callback1 would have been called
// at least once if it was still subscribed to the event.
TS_ASSERT_THROWS_NOTHING(device1->command_inout("IOPushEvent"));
TS_ASSERT_THROWS_NOTHING(device1->command_inout("IOPushEvent"));
callback2.wait_for([&]() { return callback2.invocation_count() >= 4; });
TS_ASSERT_EQUALS(2, callback1.invocation_count());
TS_ASSERT_EQUALS(0, callback1.error_count());
TS_ASSERT_EQUALS(4, callback2.invocation_count());
TS_ASSERT_EQUALS(0, callback2.error_count());
TS_ASSERT_THROWS_NOTHING(proxy2->unsubscribe_event(subscription2));
proxy2.reset(nullptr);
TS_ASSERT_THROWS_NOTHING(device1->command_inout("IOPushEvent"));
std::this_thread::sleep_for(std::chrono::seconds(1));
TS_ASSERT_EQUALS(2, callback1.invocation_count());
TS_ASSERT_EQUALS(0, callback1.error_count());
TS_ASSERT_EQUALS(4, callback2.invocation_count());
TS_ASSERT_EQUALS(0, callback2.error_count());
}
void test_unsubscription_multiple_subscriptions_with_single_proxy()
{
CountingCallBack<Tango::EventData> callback1{};
CountingCallBack<Tango::EventData> callback2{};
const std::string attribute_name = "event_change_tst";
auto proxy = std::make_unique<DeviceProxy>(device1_name);
TS_ASSERT_THROWS_NOTHING(proxy->subscribe_event(attribute_name, Tango::USER_EVENT, &callback1));
TS_ASSERT_THROWS_NOTHING(proxy->subscribe_event(attribute_name, Tango::USER_EVENT, &callback2));
TS_ASSERT_THROWS_NOTHING(device1->command_inout("IOPushEvent"));
callback1.wait_for([&]() { return callback1.invocation_count() >= 2; });
callback2.wait_for([&]() { return callback2.invocation_count() >= 2; });
TS_ASSERT_EQUALS(2, callback1.invocation_count());
TS_ASSERT_EQUALS(0, callback1.error_count());
TS_ASSERT_EQUALS(2, callback2.invocation_count());
TS_ASSERT_EQUALS(0, callback2.error_count());
proxy.reset(nullptr);
TS_ASSERT_THROWS_NOTHING(device1->command_inout("IOPushEvent"));
std::this_thread::sleep_for(std::chrono::seconds(1));
TS_ASSERT_EQUALS(2, callback1.invocation_count());
TS_ASSERT_EQUALS(0, callback1.error_count());
TS_ASSERT_EQUALS(2, callback2.invocation_count());
TS_ASSERT_EQUALS(0, callback2.error_count());
}
/*
* Tests that subscriber can receive pipe events immediately after
* server is restarted due to RestartServer admin device command
* without a need to wait for re-subscription.
*/
void test_pipe_event_subscription_recovery_after_restart_server_command()
{
CountingCallBack<Tango::PipeEventData> callback{};
TS_ASSERT_THROWS_NOTHING(device1->subscribe_event("RWPipe", Tango::PIPE_EVENT, &callback));
TS_ASSERT_THROWS_NOTHING(push_pipe_event());
callback.wait_for([&]() { return callback.invocation_count() >= 2; });
TS_ASSERT_EQUALS(2, callback.invocation_count());
TS_ASSERT_EQUALS(0, callback.error_count());
TS_ASSERT_THROWS_NOTHING(dserver->command_inout("RestartServer"));
std::this_thread::sleep_for(std::chrono::seconds(5));
TS_ASSERT_THROWS_NOTHING(push_pipe_event());
callback.wait_for([&]() { return callback.invocation_count() >= 3; });
TS_ASSERT_EQUALS(3, callback.invocation_count());
TS_ASSERT_EQUALS(0, callback.error_count());
{
Tango::DeviceData input{};
input << device1_name;
TS_ASSERT_THROWS_NOTHING(dserver->command_inout("DevRestart", input));
}
TS_ASSERT_THROWS_NOTHING(push_pipe_event());
callback.wait_for([&]() { return callback.invocation_count() >= 4; });
TS_ASSERT_EQUALS(4, callback.invocation_count());
TS_ASSERT_EQUALS(0, callback.error_count());
}
void push_pipe_event()
{
Tango::DevShort event_type = 0;
Tango::DeviceData data;
data << event_type;
device1->command_inout("PushPipeEvent", data);
}
};
// NOLINTEND(*)
|