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 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
|
#ifndef __YUMA_TEST_TRANSFORM_ENGINE_H
#define __YUMA_TEST_TRANSFORM_ENGINE_H
// ---------------------------------------------------------------------------|
// Standard Includes
// ---------------------------------------------------------------------------|
#include <vector>
#include <string>
#include <cstdint>
#include <memory>
// ---------------------------------------------------------------------------|
// Test Harness includes
// ---------------------------------------------------------------------------|
#include "test/support/nc-query-util/nc-base-query-test-engine.h"
// ---------------------------------------------------------------------------|
namespace YumaTest
{
class AbstractYumaOpLogPolicy;
class AbstractNCQueryFactory;
// ---------------------------------------------------------------------------|
/**
* Yuma-Test utility class for sending Netconf Messages to Yuma that
* modify the current configuration.
*/
class NCQueryTestEngine : public NCBaseQueryTestEngine
{
public:
/**
* Constructor.
* The target DB name must be either 'running' or 'candidate'. Running
* is only valid if Yuma is configured to allow modifications to the
* running config.
*
* \param builder the message builder to use.
*/
explicit NCQueryTestEngine( std::shared_ptr<NCMessageBuilder> builder );
/** Destructor */
virtual ~NCQueryTestEngine();
/**
* Load the specified module.
* This method builds a NC-Query containing a load request,
* injects the message into Yuma and parses the result to
* determine if the module was loaded successfully.
*
* \tparam the type of results checker
* \param moduleName the name of the module to load
* \param session the session to use for injecting the message.
* \param checker the results checker.
*/
template< class Checker >
void tryLoadModule( std::shared_ptr<AbstractNCSession> session,
const std::string& moduleName,
Checker& checker )
{
// build a load module message for test.yang
const std::string queryStr = messageBuilder_->buildLoadMessage(
moduleName, session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Try to lock the database associated with this engine.
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param target the target database name
* \param checker the results checker.
*/
template< class Checker >
void tryLockDatabase( std::shared_ptr<AbstractNCSession> session,
const std::string& target,
Checker& checker )
{
// build a lock module message for test.yang
const std::string queryStr = messageBuilder_->buildLockMessage(
session->allocateMessageId(), target );
runQuery( session, queryStr, checker );
}
/**
* Try to unlock the database associated with this engine.
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param target the target database name
* \param checker the results checker.
*/
template< class Checker >
void tryUnlockDatabase( std::shared_ptr<AbstractNCSession> session,
const std::string& target,
Checker& checker )
{
// build an unlock module message for test.yang
const std::string queryStr = messageBuilder_->buildUnlockMessage(
session->allocateMessageId(), target );
runQuery( session, queryStr, checker );
}
/**
* Try to validate the database associated with this engine.
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param target the target database name
* \param checker the results checker.
*/
template< class Checker >
void tryValidateDatabase( std::shared_ptr<AbstractNCSession> session,
const std::string& target,
Checker& checker )
{
// build a validate message for test.yang
const std::string queryStr = messageBuilder_->buildValidateMessage(
session->allocateMessageId(), target );
runQuery( session, queryStr, checker );
}
/**
* Get the configuration filtered using the supplied xpath
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param xPathFilterStr the XPath filter to apply
* \param target the target database name
* \param checker the results checker.
*/
template< class Checker >
void tryGetConfigXpath( std::shared_ptr<AbstractNCSession> session,
const std::string& xPathFilterStr,
const std::string& target,
Checker& checker )
{
// build a load module message for test.yang
const std::string queryStr =
messageBuilder_->buildGetConfigMessageXPath(
xPathFilterStr, target, session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Get the configuration filtered using the supplied subtree
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param subtreeFilterStr the subtree filter to apply
* \param target the target database name
* \param checker the results checker.
*/
template< class Checker >
void tryGetConfigSubtree( std::shared_ptr<AbstractNCSession> session,
const std::string& subtreeFilterStr,
const std::string& target,
Checker& checker )
{
// build a load module message for test.yang
const std::string queryStr =
messageBuilder_->buildGetConfigMessageSubtree(
subtreeFilterStr, target, session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Get the state data filtered using the supplied xpath
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param xPathFilterStr the XPath filter to apply
* \param target the target database name
* \param checker the results checker.
*/
template< class Checker >
void tryGetXpath( std::shared_ptr<AbstractNCSession> session,
const std::string& xPathFilterStr,
const std::string& target,
Checker& checker )
{
// build a load module message for test.yang
const std::string queryStr =
messageBuilder_->buildGetMessageXPath(
xPathFilterStr, target, session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Get the state data filtered using the supplied subtree
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param subtreeFilterStr the subtree filter to apply
* \param target the target database name
* \param checker the results checker.
*/
template< class Checker >
void tryGetSubtree( std::shared_ptr<AbstractNCSession> session,
const std::string& subtreeFilterStr,
const std::string& target,
Checker& checker )
{
// build a load module message for test.yang
const std::string queryStr =
messageBuilder_->buildGetMessageSubtree(
subtreeFilterStr, target, session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Edit the configuration using the supplied query
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param query the edit config operation
* \param target the target database name
* \param checker the results checker.
*/
template< class Checker >
void tryEditConfig( std::shared_ptr<AbstractNCSession> session,
const std::string& query,
const std::string& target,
Checker& checker )
{
const std::string queryStr =
messageBuilder_->buildEditConfigMessage(
query, target, session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Try a custom RPC Query.
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param query the edit config operation
* \param checker the results checker.
*/
template< class Checker >
void tryCustomRPC( std::shared_ptr<AbstractNCSession> session,
const std::string& query,
Checker& checker )
{
const std::string queryStr =
messageBuilder_->buildRPCMessage(
query, session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Copy the configuration
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param target the target database name
* \param source the source database name
* \param checker the results checker.
*/
template< class Checker >
void tryCopyConfig( std::shared_ptr<AbstractNCSession> session,
const std::string& target,
const std::string& source,
Checker& checker )
{
const std::string queryStr =
messageBuilder_->buildCopyConfigMessage(
target, source, session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Delete the configuration
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param target the target database name
* \param checker the results checker.
*/
template< class Checker >
void tryDeleteConfig( std::shared_ptr<AbstractNCSession> session,
const std::string& target,
Checker& checker )
{
const std::string queryStr =
messageBuilder_->buildDeleteConfigMessage(
target, session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Set the log verbosity to the supplied level
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param logLevelStr the log level to apply
* \param checker the results checker.
*/
template< class Checker >
void trySetLogLevel( std::shared_ptr<AbstractNCSession> session,
const std::string& logLevelStr,
Checker& checker )
{
// build a set log level message for test.yang
const std::string queryStr =
messageBuilder_->buildSetLogLevelMessage(
logLevelStr, session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Discard changes
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param checker the results checker.
*/
template< class Checker >
void tryDiscardChanges( std::shared_ptr<AbstractNCSession> session,
Checker& checker )
{
// build a discard-changes message for test.yang
const std::string queryStr =
messageBuilder_->buildDiscardChangesMessage(
session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Get my session
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param checker the results checker.
*/
template< class Checker >
void tryGetMySession( std::shared_ptr<AbstractNCSession> session,
Checker& checker )
{
// build a get my session message for test.yang
const std::string queryStr =
messageBuilder_->buildGetMySessionMessage(
session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Set my session
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param indent the indent to be set.
* \param linesize the linesize to be set.
* \param withDefaults the with-defaults setting to be set.
* \param checker the results checker.
*/
template< class Checker >
void trySetMySession( std::shared_ptr<AbstractNCSession> session,
const std::string& indent,
const std::string& linesize,
const std::string& withDefaults,
Checker& checker )
{
// build a set my session message for test.yang
const std::string queryStr =
messageBuilder_->buildSetMySessionMessage(
indent, linesize, withDefaults, session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Kill session
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param sessionId the id of the session to be killed.
* \param checker the results checker.
*/
template< class Checker >
void tryKillSession( std::shared_ptr<AbstractNCSession> session,
uint16_t sessionId,
Checker& checker )
{
// build a kill-session message for test.yang
const std::string queryStr =
messageBuilder_->buildKillSessionMessage(
sessionId, session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Close session
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param checker the results checker.
*/
template< class Checker >
void tryCloseSession( std::shared_ptr<AbstractNCSession> session,
Checker& checker )
{
// build a close-session message for test.yang
const std::string queryStr =
messageBuilder_->buildCloseSessionMessage(
session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Shutdown
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param checker the results checker.
*/
template< class Checker >
void tryShutdown( std::shared_ptr<AbstractNCSession> session,
Checker& checker )
{
// build a shutdown message for test.yang
const std::string queryStr =
messageBuilder_->buildShutdownMessage(
session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Restart
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param checker the results checker.
*/
template< class Checker >
void tryRestart( std::shared_ptr<AbstractNCSession> session,
Checker& checker )
{
// build a restart message for test.yang
const std::string queryStr =
messageBuilder_->buildRestartMessage(
session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Get the data model definition files from the server
*
* \tparam the type of results checker
* \param session the session to use for injecting the message.
* \param xPathFilterStr the XPath filter to apply
* \param target the target database name
* \param checker the results checker.
*/
template< class Checker >
void tryGetSchema( std::shared_ptr<AbstractNCSession> session,
const std::string& schemaIdStr,
Checker& checker )
{
// build a get-schema message for device_test.yang
const std::string queryStr =
messageBuilder_->buildGetSchemaMessage(
schemaIdStr, session->allocateMessageId() );
runQuery( session, queryStr, checker );
}
/**
* Utility function for locking the database.
*
* \param session the session to use for injecting the message.
* \param target the target database name
*/
void unlock( std::shared_ptr<AbstractNCSession> session,
const std::string& target );
/**
* Utility function for unlocking the database.
*
* \param session the session to use for injecting the message.
* \param target the target database name
*/
void lock( std::shared_ptr<AbstractNCSession> session,
const std::string& target );
/**
* Utility function for loading a module.
*
* \param session the session to use for injecting the message.
* \param moduleName the name of the module to load
*/
void loadModule( std::shared_ptr<AbstractNCSession> session,
const std::string& moduleName );
/**
* Send a commit message.
*
* \param session the session to use for injecting the message.
*/
void commit( std::shared_ptr<AbstractNCSession> session );
/**
* Send a commit message that is expected to fail.
*
* \param session the session to use for injecting the message.
*/
void commitFailure( std::shared_ptr<AbstractNCSession> session );
/**
* Send a confirmed-commit message.
*
* \param session the session to use for injecting the message.
* \param timeout the confirm-timeout in seconds.
*/
void confirmedCommit( std::shared_ptr<AbstractNCSession> session,
const int timeout );
};
// ---------------------------------------------------------------------------|
/**
* RAII Lock guard for locking and unlocking of a database during
* testing. Use this lock guard to ensure that the database is left
* unlocked when the test exits even on test failure.
*/
class NCDbScopedLock
{
public:
/** Constructor. This issues a lock command to the database.
*
* \param engine shared_ptr to the query-test-engine.
* \param session shared_ptr to the session.
* \param target the target database name
*/
NCDbScopedLock( std::shared_ptr< NCQueryTestEngine > engine,
std::shared_ptr< AbstractNCSession > session,
const std::string& target );
/**
* Destructor.
*/
~NCDbScopedLock();
private:
/** The engine that issues lock / unlock requests */
std::shared_ptr< NCQueryTestEngine > engine_;
/** The session locking / unlocking the database */
std::shared_ptr< AbstractNCSession > session_;
/** The name of the target database */
std::string target_;
};
} // namespace YumaTest
#endif // __YUMA_TEST_TRANSFORM_ENGINE_H
|