testRequestor.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include "testRequestor.hpp"
  14. #define TEST_REQUIRE(X);  if (!(X)) { 
  15.   ndbout_c("Test failed in line %d", __LINE__); testPassed = false; }
  16. struct Result {
  17.   Uint32 nodeGrp;
  18.   Uint32 first;
  19.   Uint32 last;
  20.   Uint32 force;
  21. };
  22. Result result;
  23. /** Callbacks ****************************************************************/
  24. void 
  25. f_transfer(void *, Signal* signal, Uint32 nodeGrp, Uint32 first, Uint32 last) 
  26. {
  27.   result.nodeGrp = nodeGrp;
  28.   result.first = first;
  29.   result.last = last;
  30.   result.force = 0;
  31.   ndbout_c("Transfer: %d:[%d-%d] ", nodeGrp, first, last);
  32. }
  33. void 
  34. f_apply(void *, Signal* signal, Uint32 nodeGrp, 
  35. Uint32 first, Uint32 last, Uint32 force)
  36. {
  37.   result.nodeGrp = nodeGrp;
  38.   result.first = first;
  39.   result.last = last;
  40.   result.force = force;
  41.   ndbout_c("Apply: %d:[%d-%d] (Force:%d)", nodeGrp, first, last, force);
  42. }
  43. void 
  44. f_deletePS(void *, Signal* signal, Uint32 nodeGrp, Uint32 first, Uint32 last) 
  45. {
  46.   result.nodeGrp = nodeGrp;
  47.   result.first = first;
  48.   result.last = last;
  49.   result.force = 0;
  50.   ndbout_c("DeletePS: %d:[%d-%d] ", nodeGrp, first, last);
  51. }
  52. void 
  53. f_deleteSS(void *, Signal* signal, Uint32 nodeGrp, Uint32 first, Uint32 last) 
  54. {
  55.   result.nodeGrp = nodeGrp;
  56.   result.first = first;
  57.   result.last = last;
  58.   result.force = 0;
  59.   ndbout_c("DeleteSS: %d:[%d-%d] ", nodeGrp, first, last);
  60. }
  61. void
  62. requestStartMetaLog(void * cbObj, Signal * signal) 
  63.   ndbout_c("StartMetaLog:");
  64. }
  65. void
  66. requestStartDataLog(void * cbObj, Signal * signal) 
  67.   ndbout_c("StartDataLog:");
  68. }
  69. void 
  70. requestStartMetaScan(void * cbObj, Signal* signal) 
  71. {
  72.   ndbout_c("StartMetaScan:");
  73. }
  74. void 
  75. requestStartDataScan(void * cbObj, Signal* signal) 
  76. {
  77.   ndbout_c("StartDataScan:");
  78. }
  79. /** Compare ****************************************************************/
  80. bool compare(Uint32 nodeGrp, Uint32 first, Uint32 last, Uint32 force) 
  81. {
  82.   return (result.nodeGrp == nodeGrp && result.first == first &&
  83.   result.last == last && result.force == force);
  84. }
  85. /** Main *******************************************************************/
  86. void
  87. testRequestor() 
  88. {
  89.   Signal * signal;
  90.   bool testPassed = true;
  91.   Requestor requestor;
  92.   requestor.setObject(0);
  93.   requestor.setIntervalRequests(&f_transfer, 
  94. &f_apply, 
  95. &f_deletePS, 
  96. &f_deleteSS);
  97.   requestor.setStartRequests(&requestStartMetaLog,
  98.      &requestStartDataLog,
  99.      &requestStartMetaScan,
  100.      &requestStartDataScan);
  101.   requestor.setNoOfNodeGroups(1);
  102.   requestor.enable();
  103.   requestor.enableTransfer();
  104.   requestor.enableDelete();
  105.   requestor.enableApply();
  106.   requestor.m_state = Requestor::LOG;
  107.   requestor.printStatus();
  108.   /**
  109.    *  First transfer
  110.    */
  111.   Interval i(12,13);
  112.   requestor.add(RepState::PS, 0, i);
  113.   requestor.execute(signal);
  114.   TEST_REQUIRE(compare(0, 12, 13, 0));
  115.   requestor.printStatus();
  116.   /**
  117.    *  State transtion test
  118.    */
  119.   /**
  120.    *  First apply
  121.    */
  122.   /**
  123.    *  Test end
  124.    */
  125.   if (testPassed) {
  126.     ndbout << "Test passed!" << endl;
  127.   } else {
  128.     ndbout << "Test FAILED!" << endl;
  129.   }
  130. }
  131. int
  132. main () {
  133.   testRequestor();
  134. }