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

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 "NDBT_Test.hpp"
  14. #include "NDBT_ReturnCodes.h"
  15. #include "HugoTransactions.hpp"
  16. #include "HugoAsynchTransactions.hpp"
  17. #include "UtilTransactions.hpp"
  18. #define GETNDB(ps) ((NDBT_NdbApiStep*)ps)->getNdb()
  19. int runLoadTable(NDBT_Context* ctx, NDBT_Step* step){
  20.   int records = ctx->getNumRecords();
  21.   int batchSize = ctx->getProperty("BatchSize", 1);
  22.   int transactions = (records / 100) + 1;
  23.   int operations = (records / transactions) + 1;
  24.   HugoAsynchTransactions hugoTrans(*ctx->getTab());
  25.   if (hugoTrans.loadTableAsynch(GETNDB(step), records, batchSize, 
  26. transactions, operations) != 0){
  27.     return NDBT_FAILED;
  28.   }
  29.   return NDBT_OK;
  30. }
  31. int runInsert(NDBT_Context* ctx, NDBT_Step* step){
  32.   int records = ctx->getNumRecords();
  33.   int batchSize = ctx->getProperty("BatchSize", 1);
  34.   int transactions = (records / 100) + 1;
  35.   int operations = (records / transactions) + 1;
  36.   HugoAsynchTransactions hugoTrans(*ctx->getTab());
  37.   // Insert records, dont allow any 
  38.   // errors(except temporary) while inserting
  39.   if (hugoTrans.loadTableAsynch(GETNDB(step), records, batchSize, 
  40. transactions, operations) != 0){
  41.     return NDBT_FAILED;
  42.   }
  43.   return NDBT_OK;
  44. }
  45. int runVerifyInsert(NDBT_Context* ctx, NDBT_Step* step){
  46.   int records = ctx->getNumRecords();
  47.   int batchSize = ctx->getProperty("BatchSize", 1);
  48.   int transactions = (records / 100) + 1;
  49.   int operations = (records / transactions) + 1;
  50.   HugoAsynchTransactions hugoTrans(*ctx->getTab());
  51.   if (hugoTrans.pkDelRecordsAsynch(GETNDB(step),  records, batchSize, 
  52.    transactions, operations) != 0){
  53.     return NDBT_FAILED;
  54.   }
  55.   return NDBT_OK;
  56. }
  57. int runClearTable(NDBT_Context* ctx, NDBT_Step* step){
  58.   int records = ctx->getNumRecords();
  59.   int batchSize = ctx->getProperty("BatchSize", 1);
  60.   int transactions = (records / 100) + 1;
  61.   int operations = (records / transactions) + 1;
  62.   
  63.   HugoAsynchTransactions hugoTrans(*ctx->getTab());
  64.   if (hugoTrans.pkDelRecordsAsynch(GETNDB(step),  records, batchSize, 
  65.    transactions, operations) != 0){
  66.     return NDBT_FAILED;
  67.   }
  68.   return NDBT_OK;
  69. }
  70. int runPkDelete(NDBT_Context* ctx, NDBT_Step* step){
  71.   int loops = ctx->getNumLoops();
  72.   int records = ctx->getNumRecords();
  73.   int batchSize = ctx->getProperty("BatchSize", 1);
  74.   int transactions = (records / 100) + 1;
  75.   int operations = (records / transactions) + 1;
  76.   int i = 0;
  77.   HugoAsynchTransactions hugoTrans(*ctx->getTab());
  78.   while (i<loops) {
  79.     ndbout << i << ": ";
  80.     if (hugoTrans.pkDelRecordsAsynch(GETNDB(step),  records, batchSize,
  81.      transactions, operations) != 0){
  82.       return NDBT_FAILED;
  83.     }
  84.     // Load table, don't allow any primary key violations
  85.     if (hugoTrans.loadTableAsynch(GETNDB(step), records, batchSize, 
  86.   transactions, operations) != 0){
  87.       return NDBT_FAILED;
  88.     }
  89.     i++;
  90.   }  
  91.   return NDBT_OK;
  92. }
  93. int runPkRead(NDBT_Context* ctx, NDBT_Step* step){
  94.   int loops = ctx->getNumLoops();
  95.   int records = ctx->getNumRecords();
  96.   int batchSize = ctx->getProperty("BatchSize", 1);
  97.   int transactions = (records / 100) + 1;
  98.   int operations = (records / transactions) + 1;
  99.   int i = 0;
  100.   HugoAsynchTransactions hugoTrans(*ctx->getTab());
  101.   while (i<loops) {
  102.     ndbout << i << ": ";
  103.     if (hugoTrans.pkReadRecordsAsynch(GETNDB(step), records, batchSize, 
  104.       transactions, operations) != NDBT_OK){
  105.       return NDBT_FAILED;
  106.     }
  107.     i++;
  108.   }
  109.   return NDBT_OK;
  110. }
  111. int runPkUpdate(NDBT_Context* ctx, NDBT_Step* step){
  112.   int loops = ctx->getNumLoops();
  113.   int records = ctx->getNumRecords();
  114.   int batchSize = ctx->getProperty("BatchSize", 1);
  115.   int transactions = (records / 100) + 1;
  116.   int operations = (records / transactions) + 1;
  117.   int i = 0;
  118.   HugoAsynchTransactions hugoTrans(*ctx->getTab());
  119.   while (i<loops) {
  120.     ndbout << i << ": ";
  121.     if (hugoTrans.pkUpdateRecordsAsynch(GETNDB(step), records, 
  122. batchSize, transactions, 
  123. operations) != 0){
  124.       return NDBT_FAILED;
  125.     }
  126.     i++;
  127.   }
  128.   return NDBT_OK;
  129. }
  130. NDBT_TESTSUITE(testBasicAsynch);
  131. TESTCASE("PkInsertAsynch", 
  132.  "Verify that we can insert and delete from this table using PK"
  133.  " NOTE! No errors are allowed!" ){
  134.   INITIALIZER(runInsert);
  135.   VERIFIER(runVerifyInsert);
  136. }
  137. TESTCASE("PkReadAsynch", 
  138.  "Verify that we can insert, read and delete from this table"
  139.  " using PK"){
  140.   INITIALIZER(runLoadTable);
  141.   STEP(runPkRead);
  142.   FINALIZER(runClearTable);
  143. }
  144. TESTCASE("PkUpdateAsynch", 
  145.  "Verify that we can insert, update and delete from this table"
  146.  " using PK"){
  147.   INITIALIZER(runLoadTable);
  148.   STEP(runPkUpdate);
  149.   FINALIZER(runClearTable);
  150. }
  151. TESTCASE("PkDeleteAsynch", 
  152.  "Verify that we can delete from this table using PK"){
  153.   INITIALIZER(runLoadTable);
  154.   STEP(runPkDelete);
  155.   FINALIZER(runClearTable);
  156. }
  157. NDBT_TESTSUITE_END(testBasicAsynch);
  158. int main(int argc, const char** argv){
  159.   ndb_init();
  160.   return testBasicAsynch.execute(argc, argv);
  161. }