BatchGetRowTest.php 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059
  1. <?php
  2. namespace Aliyun\OTS\Tests;
  3. use Aliyun\OTS;
  4. use Aliyun\OTS\RowExistenceExpectationConst;
  5. use Aliyun\OTS\LogicalOperatorConst;
  6. use Aliyun\OTS\ComparatorTypeConst;
  7. use Aliyun\OTS\ColumnTypeConst;
  8. require __DIR__ . "/TestBase.php";
  9. require __DIR__ . "/../../../vendor/autoload.php";
  10. $usedTables = array (
  11. "myTable",
  12. "myTable1",
  13. "test8",
  14. "test9"
  15. );
  16. SDKTestBase::cleanUp ($usedTables);
  17. SDKTestBase::createInitialTable (array (
  18. "table_meta" => array (
  19. "table_name" => $usedTables[0],
  20. "primary_key_schema" => array (
  21. "PK1" => ColumnTypeConst::CONST_INTEGER,
  22. "PK2" => ColumnTypeConst::CONST_STRING
  23. )
  24. ),
  25. "reserved_throughput" => array (
  26. "capacity_unit" => array (
  27. "read" => 0,
  28. "write" => 0
  29. )
  30. )
  31. ));
  32. SDKTestBase::waitForTableReady ();
  33. class BatchGetRowTest extends SDKTestBase {
  34. public function testmes() {
  35. global $usedTables;
  36. $tablename = array (
  37. "table_name" => $usedTables[0],
  38. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  39. "primary_key" => array (
  40. "PK1" => 1,
  41. "PK2" => "a1"
  42. ),
  43. "attribute_columns" => array (
  44. "attr1" => 1,
  45. "attr2" => "aa",
  46. "attr3" => "tas",
  47. "attr4" => 11
  48. )
  49. );
  50. $this->otsClient->putRow ($tablename);
  51. }
  52. /*
  53. *
  54. * EmptyBatchGetRow
  55. * BatchGetRow没有包含任何表的情况。
  56. */
  57. public function testEmptyBatchGetRow() {
  58. $batchGet = array ();
  59. try {
  60. $this->otsClient->batchGetRow ($batchGet);
  61. $this->fail ('An expected exception has not been raised.');
  62. } catch (\Aliyun\OTS\OTSServerException $exc) {
  63. $c = "No row specified in the request of BatchGetRow.";
  64. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  65. }
  66. }
  67. /*
  68. *
  69. * EmptyBatchGetRow
  70. * BatchGetRow没有包含任何表的情况。
  71. */
  72. public function testEmpty1BatchGetRow() {
  73. global $usedTables;
  74. $batchGet = array (
  75. "tables" => array (
  76. array (
  77. "table_name" => $usedTables[2]
  78. ),
  79. array (
  80. "table_name" => $usedTables[3]
  81. )
  82. )
  83. );
  84. // print_r();die;
  85. try {
  86. $this->otsClient->batchGetRow ($batchGet);
  87. $this->fail ('An expected exception has not been raised.');
  88. } catch (\Aliyun\OTS\OTSServerException $exc) {
  89. $c = "No row specified in table: '" . $usedTables[2] . "'.";
  90. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  91. }
  92. }
  93. /*
  94. *
  95. * 4ItemInBatchGetRow
  96. * BatchGetRow包含4个行。
  97. */
  98. public function testItemInBatchGetRow() {
  99. global $usedTables;
  100. for($i = 1; $i < 10; $i ++) {
  101. $tablename = array (
  102. "table_name" => $usedTables[0],
  103. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  104. "primary_key" => array (
  105. "PK1" => $i,
  106. "PK2" => "a" . $i
  107. ),
  108. "attribute_columns" => array (
  109. "attr1" => $i,
  110. "attr2" => "a" . $i
  111. )
  112. );
  113. $this->otsClient->putRow ($tablename);
  114. }
  115. $batchGet = array (
  116. "tables" => array (
  117. array (
  118. "table_name" => $usedTables[0],
  119. "columns_to_get" => array (),
  120. "rows" => array (
  121. array (
  122. "primary_key" => array (
  123. "PK1" => 1,
  124. "PK2" => "a1"
  125. )
  126. ),
  127. array (
  128. "primary_key" => array (
  129. "PK1" => 2,
  130. "PK2" => "a2"
  131. )
  132. ),
  133. array (
  134. "primary_key" => array (
  135. "PK1" => 3,
  136. "PK2" => "a3"
  137. )
  138. ),
  139. array (
  140. "primary_key" => array (
  141. "PK1" => 4,
  142. "PK2" => "a4"
  143. )
  144. )
  145. )
  146. )
  147. )
  148. );
  149. $getrow = $this->otsClient->batchGetRow ($batchGet);
  150. for($i = 0; $i < count ($batchGet['tables'][0]['rows']); $i ++) {
  151. $this->assertEquals ($getrow['tables'][0]['rows'][$i]['row']['primary_key_columns'], $batchGet['tables'][0]['rows'][$i]['primary_key']);
  152. }
  153. // print_r($getrow);die;
  154. }
  155. /**
  156. * EmptyTableInBatchGetRow
  157. * BatchGetRow包含2个表,其中有1个表有1行,另外一个表为空的情况。抛出异常
  158. */
  159. public function testEmptyTableInBatchGetRow() {
  160. global $usedTables;
  161. $batchGet = array (
  162. "tables" => array (
  163. array (
  164. "table_name" => $usedTables[0],
  165. "columns_to_get" => array (),
  166. "rows" => array (
  167. array (
  168. "primary_key" => array (
  169. "PK1" => 1,
  170. "PK2" => "a1"
  171. )
  172. )
  173. )
  174. ),
  175. array (
  176. "table_name" => $usedTables[1]
  177. )
  178. )
  179. );
  180. try {
  181. $this->otsClient->batchGetRow ($batchGet);
  182. $this->fail ('An expected exception has not been raised.');
  183. } catch (\Aliyun\OTS\OTSServerException $exc) {
  184. $c = "No row specified in table: '" . $usedTables[1] . "'.";
  185. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  186. }
  187. }
  188. /**
  189. * 1000ItemInBatchGetRow
  190. * BatchGetRow包含1000个行,期望返回服务端错误?
  191. */
  192. public function testItemIn1000BatchGetRow() {
  193. global $usedTables;
  194. for($i = 0; $i < 200; $i ++) {
  195. $a[] = array (
  196. "primary_key" => array (
  197. "PK1" => $i,
  198. "PK2" => "a" . $i
  199. )
  200. );
  201. }
  202. // print_r($a);die;
  203. $batchGet = array (
  204. "tables" => array (
  205. array (
  206. "table_name" => $usedTables[0],
  207. "columns_to_get" => array (),
  208. "rows" => $a
  209. )
  210. )
  211. );
  212. try {
  213. $this->otsClient->batchGetRow ($batchGet);
  214. $this->fail ('An expected exception has not been raised.');
  215. } catch (\Aliyun\OTS\OTSServerException $exc) {
  216. $c = "Rows count exceeds the upper limit";
  217. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  218. }
  219. }
  220. /*
  221. *
  222. * OneTableOneFailInBatchGetRow
  223. * BatchGetRow有一个表中的一行失败的情况
  224. */
  225. public function testOneTableOneFailInBatchGetRow() {
  226. global $usedTables;
  227. for($i = 1; $i < 10; $i ++) {
  228. $tablename = array (
  229. "table_name" => $usedTables[0],
  230. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  231. "primary_key" => array (
  232. "PK1" => $i,
  233. "PK2" => "a" . $i
  234. ),
  235. "attribute_columns" => array (
  236. "attr1" => $i,
  237. "attr2" => "a" . $i
  238. )
  239. );
  240. $this->otsClient->putRow ($tablename);
  241. }
  242. $batchGet = array (
  243. "tables" => array (
  244. array (
  245. "table_name" => $usedTables[0],
  246. "columns_to_get" => array (),
  247. "rows" => array (
  248. array (
  249. "primary_key" => array (
  250. "PK1" => 1,
  251. "PK2" => "a1"
  252. )
  253. ),
  254. array (
  255. "primary_key" => array (
  256. "PK1" => 2,
  257. "PK2" => "a2"
  258. )
  259. ),
  260. array (
  261. "primary_key" => array (
  262. "PK11" => 3,
  263. "PK12" => "a3"
  264. )
  265. )
  266. )
  267. )
  268. )
  269. );
  270. if (is_array ($this->otsClient->batchGetRow ($batchGet))) {
  271. $getrow = $this->otsClient->batchGetRow ($batchGet);
  272. // print_r($getrow);die;
  273. // print_r($getrow);die;
  274. $this->assertEquals ($getrow['tables'][0]['rows'][0]['row']['primary_key_columns'], $batchGet['tables'][0]['rows'][0]['primary_key']);
  275. $this->assertEquals ($getrow['tables'][0]['rows'][1]['row']['primary_key_columns'], $batchGet['tables'][0]['rows'][1]['primary_key']);
  276. $this->assertEquals ($getrow['tables'][0]['rows'][2]['is_ok'], 0);
  277. $error = array (
  278. "code" => "OTSInvalidPK",
  279. "message" => "Primary key schema mismatch."
  280. );
  281. $this->assertEquals ($getrow['tables'][0]['rows'][2]['error'], $error);
  282. // $this->sssertEquals()
  283. }
  284. }
  285. /**
  286. * OneTableTwoFailInBatchGetRow
  287. * BatchGetRow有一个表中的一行失败的情况
  288. */
  289. public function testOneTableTwoFailInBatchGetRow() {
  290. global $usedTables;
  291. for($i = 1; $i < 10; $i ++) {
  292. $tablename = array (
  293. "table_name" => $usedTables[0],
  294. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  295. "primary_key" => array (
  296. "PK1" => $i,
  297. "PK2" => "a" . $i
  298. ),
  299. "attribute_columns" => array (
  300. "attr1" => $i,
  301. "attr2" => "a" . $i
  302. )
  303. );
  304. $this->otsClient->putRow ($tablename);
  305. }
  306. $batchGet = array (
  307. "tables" => array (
  308. array (
  309. "table_name" => $usedTables[0],
  310. "columns_to_get" => array (),
  311. "rows" => array (
  312. array (
  313. "primary_key" => array (
  314. "PK1" => 1,
  315. "PK2" => "a1"
  316. )
  317. ),
  318. array (
  319. "primary_key" => array (
  320. "PK11" => 2,
  321. "PK22" => "a2"
  322. )
  323. ),
  324. array (
  325. "primary_key" => array (
  326. "PK11" => 3,
  327. "PK12" => "a3"
  328. )
  329. )
  330. )
  331. )
  332. )
  333. );
  334. if (is_array ($this->otsClient->batchGetRow ($batchGet))) {
  335. $getrow = $this->otsClient->batchGetRow ($batchGet);
  336. // print_r($getrow);die;
  337. // print_r($getrow);die;
  338. $this->assertEquals ($getrow['tables'][0]['rows'][0]['row']['primary_key_columns'], $batchGet['tables'][0]['rows'][0]['primary_key']);
  339. $this->assertEquals ($getrow['tables'][0]['rows'][1]['is_ok'], 0);
  340. $this->assertEquals ($getrow['tables'][0]['rows'][2]['is_ok'], 0);
  341. $error = array (
  342. "code" => "OTSInvalidPK",
  343. "message" => "Primary key schema mismatch."
  344. );
  345. $this->assertEquals ($getrow['tables'][0]['rows'][1]['error'], $error);
  346. $this->assertEquals ($getrow['tables'][0]['rows'][2]['error'], $error);
  347. // $this->sssertEquals()
  348. }
  349. }
  350. /*
  351. *
  352. * TwoTableOneFailInBatchGetRow
  353. * BatchGetRow有2个表各有1行失败的情况
  354. */
  355. public function testTwoTableOneFailInBatchGetRow() {
  356. global $usedTables;
  357. for($i = 1; $i < 10; $i ++) {
  358. $tablename = array (
  359. "table_name" => $usedTables[0],
  360. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  361. "primary_key" => array (
  362. "PK1" => $i,
  363. "PK2" => "a" . $i
  364. ),
  365. "attribute_columns" => array (
  366. "attr1" => $i,
  367. "attr2" => "a" . $i
  368. )
  369. );
  370. $this->otsClient->putRow ($tablename);
  371. }
  372. $tablebody = array (
  373. "table_meta" => array (
  374. "table_name" => $usedTables[1],
  375. "primary_key_schema" => array (
  376. "PK1" => ColumnTypeConst::CONST_INTEGER,
  377. "PK2" => ColumnTypeConst::CONST_STRING
  378. )
  379. ),
  380. "reserved_throughput" => array (
  381. "capacity_unit" => array (
  382. "read" => 0,
  383. "write" => 0
  384. )
  385. )
  386. );
  387. $this->otsClient->createTable ($tablebody);
  388. $table = array (
  389. "table_name" => $usedTables[1],
  390. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  391. "primary_key" => array (
  392. "PK1" => 1,
  393. "PK2" => "a1"
  394. ),
  395. "attribute_columns" => array (
  396. "attr1" => 1,
  397. "attr2" => "a1"
  398. )
  399. );
  400. $this->waitForTableReady ();
  401. $this->otsClient->putRow ($table);
  402. $batchGet = array (
  403. "tables" => array (
  404. array (
  405. "table_name" => $usedTables[0],
  406. "columns_to_get" => array (),
  407. "rows" => array (
  408. array (
  409. "primary_key" => array (
  410. "PK1" => 1,
  411. "PK2" => "a1"
  412. )
  413. ),
  414. array (
  415. "primary_key" => array (
  416. "PK11" => 2,
  417. "PK22" => "a2"
  418. )
  419. )
  420. )
  421. ),
  422. array (
  423. "table_name" => $usedTables[1],
  424. "columns_to_get" => array (),
  425. "rows" => array (
  426. array (
  427. "primary_key" => array (
  428. "PK1" => 1,
  429. "PK2" => "a1"
  430. )
  431. ),
  432. array (
  433. "primary_key" => array (
  434. "PK11" => 2,
  435. "PK22" => "a2"
  436. )
  437. )
  438. )
  439. )
  440. )
  441. );
  442. if (is_array ($this->otsClient->batchGetRow ($batchGet))) {
  443. $error = array (
  444. "code" => "OTSInvalidPK",
  445. "message" => "Primary key schema mismatch."
  446. );
  447. $getrow = $this->otsClient->batchGetRow ($batchGet);
  448. // print_r($getrow);die;
  449. $this->assertEquals ($getrow['tables'][0]['rows'][0]['row']['primary_key_columns'], $batchGet['tables'][0]['rows'][0]['primary_key']);
  450. $this->assertEquals ($getrow['tables'][0]['rows'][1]['is_ok'], 0);
  451. $this->assertEquals ($getrow['tables'][0]['rows'][1]['error'], $error);
  452. $this->assertEquals ($getrow['tables'][1]['rows'][0]['row']['primary_key_columns'], $batchGet['tables'][0]['rows'][0]['primary_key']);
  453. $this->assertEquals ($getrow['tables'][1]['rows'][1]['is_ok'], 0);
  454. $this->assertEquals ($getrow['tables'][1]['rows'][1]['error'], $error);
  455. }
  456. }
  457. /**
  458. * 测试在单表中和单一ColumnCondition过滤条件下,使用BatchGetRow接口进行批量读取数据的操作是否成功。
  459. */
  460. public function testSingleTableBatchGetRowWithSingleCondition() {
  461. global $usedTables;
  462. for($i = 1; $i < 100; $i ++) {
  463. $putdata = array (
  464. "table_name" => $usedTables[0],
  465. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  466. "primary_key" => array (
  467. "PK1" => $i,
  468. "PK2" => "a" . $i
  469. ),
  470. "attribute_columns" => array (
  471. "attr1" => $i,
  472. "attr2" => "a" . $i
  473. )
  474. );
  475. $this->otsClient->putRow ($putdata);
  476. }
  477. $batchGetQuery = array (
  478. "tables" => array (
  479. array (
  480. "table_name" => $usedTables[0],
  481. "columns_to_get" => array (),
  482. "rows" => array (
  483. array (
  484. "primary_key" => array (
  485. "PK1" => 1,
  486. "PK2" => "a1"
  487. )
  488. ),
  489. array (
  490. "primary_key" => array (
  491. "PK1" => 2,
  492. "PK2" => "a2"
  493. )
  494. ),
  495. array (
  496. "primary_key" => array (
  497. "PK1" => 3,
  498. "PK2" => "a3"
  499. )
  500. ),
  501. array (
  502. "primary_key" => array (
  503. "PK1" => 4,
  504. "PK2" => "a4"
  505. )
  506. )
  507. ),
  508. "column_filter" => array (
  509. "logical_operator" => LogicalOperatorConst::CONST_AND,
  510. "sub_conditions" => array (
  511. array (
  512. "column_name" => "attr1",
  513. "value" => 1,
  514. "comparator" => ComparatorTypeConst::CONST_GREATER_EQUAL
  515. ),
  516. array (
  517. "column_name" => "attr2",
  518. "value" => "a6",
  519. "comparator" => ComparatorTypeConst::CONST_LESS_THAN
  520. )
  521. )
  522. )
  523. )
  524. )
  525. );
  526. $batchGetQueryRes = $this->otsClient->batchGetRow ($batchGetQuery);
  527. $this->assertEquals (count ($batchGetQueryRes['tables'][0]['rows']), 4);
  528. for($i = 0; $i < count ($batchGetQueryRes['tables'][0]['rows']); $i ++) {
  529. $this->assertEquals ($batchGetQueryRes['tables'][0]['rows'][$i]['is_ok'], 1);
  530. $this->assertEquals ($batchGetQueryRes['tables'][0]['rows'][$i]['row']['primary_key_columns']['PK1'], $i + 1);
  531. $this->assertEquals ($batchGetQueryRes['tables'][0]['rows'][$i]['row']['primary_key_columns']['PK2'], "a" . ($i + 1));
  532. $this->assertEquals ($batchGetQueryRes['tables'][0]['rows'][$i]['row']['attribute_columns']['attr1'], $i + 1);
  533. $this->assertEquals ($batchGetQueryRes['tables'][0]['rows'][$i]['row']['attribute_columns']['attr2'], "a" . ($i + 1));
  534. }
  535. $batchGetQuery2 = array (
  536. "tables" => array (
  537. array (
  538. "table_name" => $usedTables[0],
  539. "columns_to_get" => array (),
  540. "rows" => array (
  541. array (
  542. "primary_key" => array (
  543. "PK1" => 1,
  544. "PK2" => "a1"
  545. )
  546. ),
  547. array (
  548. "primary_key" => array (
  549. "PK1" => 2,
  550. "PK2" => "a2"
  551. )
  552. ),
  553. array (
  554. "primary_key" => array (
  555. "PK1" => 3,
  556. "PK2" => "a3"
  557. )
  558. ),
  559. array (
  560. "primary_key" => array (
  561. "PK1" => 4,
  562. "PK2" => "a4"
  563. )
  564. )
  565. ),
  566. "column_filter" => array (
  567. "column_name" => "attr1",
  568. "value" => 100,
  569. "comparator" => ComparatorTypeConst::CONST_GREATER_EQUAL
  570. )
  571. )
  572. )
  573. );
  574. $batchGetQueryRes2 = $this->otsClient->batchGetRow ($batchGetQuery2);
  575. $this->assertEquals (count ($batchGetQueryRes2['tables'][0]['rows']), 4);
  576. for($i = 0; $i < count ($batchGetQueryRes2['tables'][0]['rows']); $i ++) {
  577. $this->assertEquals ($batchGetQueryRes2['tables'][0]['rows'][$i]['is_ok'], 1);
  578. $this->assertEquals (count ($batchGetQueryRes2['tables'][0]['rows'][$i]['row']['attribute_columns']), 0);
  579. }
  580. }
  581. /**
  582. * 测试在单表中使用多重ColumnCondition过滤条件下,使用BatchGetRow接口进行批量数据读取的操作是否成功。
  583. */
  584. public function testSingleTableBatchGetRowWithMultipleCondition() {
  585. global $usedTables;
  586. for($i = 1; $i < 100; $i ++) {
  587. $putdata = array (
  588. "table_name" => $usedTables[0],
  589. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  590. "primary_key" => array (
  591. "PK1" => $i,
  592. "PK2" => "a" . $i
  593. ),
  594. "attribute_columns" => array (
  595. "attr1" => $i,
  596. "attr2" => "a" . $i
  597. )
  598. );
  599. $this->otsClient->putRow ($putdata);
  600. }
  601. $batchGetQuery = array (
  602. "tables" => array (
  603. array (
  604. "table_name" => $usedTables[0],
  605. "columns_to_get" => array (
  606. "attr1",
  607. "attr2"
  608. ),
  609. "rows" => array (
  610. array (
  611. "primary_key" => array (
  612. "PK1" => 1,
  613. "PK2" => "a1"
  614. )
  615. ),
  616. array (
  617. "primary_key" => array (
  618. "PK1" => 2,
  619. "PK2" => "a2"
  620. )
  621. ),
  622. array (
  623. "primary_key" => array (
  624. "PK1" => 3,
  625. "PK2" => "a3"
  626. )
  627. ),
  628. array (
  629. "primary_key" => array (
  630. "PK1" => 4,
  631. "PK2" => "a4"
  632. )
  633. )
  634. ),
  635. "column_filter" => array (
  636. "logical_operator" => LogicalOperatorConst::CONST_AND,
  637. "sub_conditions" => array (
  638. array (
  639. "column_name" => "attr1",
  640. "value" => 1,
  641. "comparator" => ComparatorTypeConst::CONST_GREATER_EQUAL
  642. ),
  643. array (
  644. "column_name" => "attr2",
  645. "value" => "a6",
  646. "comparator" => ComparatorTypeConst::CONST_LESS_THAN
  647. ),
  648. array (
  649. "logical_operator" => LogicalOperatorConst::CONST_OR,
  650. "sub_conditions" => array (
  651. array (
  652. "column_name" => "attr1",
  653. "value" => 100,
  654. "comparator" => ComparatorTypeConst::CONST_GREATER_EQUAL
  655. ),
  656. array (
  657. "column_name" => "attr2",
  658. "value" => "a0",
  659. "comparator" => ComparatorTypeConst::CONST_LESS_EQUAL
  660. )
  661. )
  662. )
  663. )
  664. )
  665. )
  666. )
  667. );
  668. $batchGetQueryRes = $this->otsClient->batchGetRow ($batchGetQuery);
  669. $this->assertEquals (count ($batchGetQueryRes['tables'][0]['rows']), 4);
  670. for($i = 0; $i < count ($batchGetQueryRes['tables'][0]['rows']); $i ++) {
  671. $this->assertEquals ($batchGetQueryRes['tables'][0]['rows'][$i]['is_ok'], 1);
  672. $this->assertEquals (count ($batchGetQueryRes['tables'][0]['rows'][$i]['row']['attribute_columns']), 0);
  673. }
  674. }
  675. /**
  676. * 测试在多表中和单一ColumnCondition过滤条件下,使用BatchGetRow接口进行批量数据读取操作是否成功。
  677. */
  678. public function testMultipleTablesBatchGetRowWithSingleCondition() {
  679. global $usedTables;
  680. for($i = 1; $i < 100; $i ++) {
  681. $putdata = array (
  682. "table_name" => $usedTables[0],
  683. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  684. "primary_key" => array (
  685. "PK1" => $i,
  686. "PK2" => "a" . $i
  687. ),
  688. "attribute_columns" => array (
  689. "attr1" => $i,
  690. "attr2" => "a" . $i
  691. )
  692. );
  693. $this->otsClient->putRow ($putdata);
  694. }
  695. $allTables = $this->otsClient->listTable (array ());
  696. if (! in_array ($usedTables[1], $allTables))
  697. $this->otsClient->createTable (array (
  698. "table_meta" => array (
  699. "table_name" => $usedTables[1],
  700. "primary_key_schema" => array (
  701. "PK1" => ColumnTypeConst::CONST_INTEGER,
  702. "PK2" => ColumnTypeConst::CONST_STRING
  703. )
  704. ),
  705. "reserved_throughput" => array (
  706. "capacity_unit" => array (
  707. "read" => 0,
  708. "write" => 0
  709. )
  710. )
  711. ));
  712. for($i = 1; $i < 100; $i ++) {
  713. $putdata = array (
  714. "table_name" => $usedTables[1],
  715. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  716. "primary_key" => array (
  717. "PK1" => $i,
  718. "PK2" => "a" . $i
  719. ),
  720. "attribute_columns" => array (
  721. "attr1" => $i,
  722. "attr2" => "a" . $i
  723. )
  724. );
  725. $this->otsClient->putRow ($putdata);
  726. }
  727. $batchGetQuery = array (
  728. "tables" => array (
  729. array (
  730. "table_name" => $usedTables[0],
  731. "columns_to_get" => array (
  732. "attr1",
  733. "attr2"
  734. ),
  735. "rows" => array (
  736. array (
  737. "primary_key" => array (
  738. "PK1" => 1,
  739. "PK2" => "a1"
  740. )
  741. ),
  742. array (
  743. "primary_key" => array (
  744. "PK1" => 2,
  745. "PK2" => "a2"
  746. )
  747. ),
  748. array (
  749. "primary_key" => array (
  750. "PK1" => 3,
  751. "PK2" => "a3"
  752. )
  753. ),
  754. array (
  755. "primary_key" => array (
  756. "PK1" => 4,
  757. "PK2" => "a4"
  758. )
  759. )
  760. ),
  761. "column_filter" => array (
  762. "logical_operator" => LogicalOperatorConst::CONST_AND,
  763. "sub_conditions" => array (
  764. array (
  765. "column_name" => "attr1",
  766. "value" => 1,
  767. "comparator" => ComparatorTypeConst::CONST_GREATER_EQUAL
  768. ),
  769. array (
  770. "column_name" => "attr2",
  771. "value" => "a6",
  772. "comparator" => ComparatorTypeConst::CONST_LESS_THAN
  773. ),
  774. array (
  775. "logical_operator" => LogicalOperatorConst::CONST_OR,
  776. "sub_conditions" => array (
  777. array (
  778. "column_name" => "attr1",
  779. "value" => 100,
  780. "comparator" => ComparatorTypeConst::CONST_GREATER_EQUAL
  781. ),
  782. array (
  783. "column_name" => "attr2",
  784. "value" => "a0",
  785. "comparator" => ComparatorTypeConst::CONST_LESS_EQUAL
  786. )
  787. )
  788. )
  789. )
  790. )
  791. ),
  792. array (
  793. "table_name" => $usedTables[1],
  794. "columns_to_get" => array (
  795. "attr1",
  796. "attr2"
  797. ),
  798. "rows" => array (
  799. array (
  800. "primary_key" => array (
  801. "PK1" => 1,
  802. "PK2" => "a1"
  803. )
  804. ),
  805. array (
  806. "primary_key" => array (
  807. "PK1" => 2,
  808. "PK2" => "a2"
  809. )
  810. ),
  811. array (
  812. "primary_key" => array (
  813. "PK1" => 3,
  814. "PK2" => "a3"
  815. )
  816. ),
  817. array (
  818. "primary_key" => array (
  819. "PK1" => 4,
  820. "PK2" => "a4"
  821. )
  822. )
  823. ),
  824. "column_filter" => array (
  825. "column_name" => "attr1",
  826. "value" => 3,
  827. "comparator" => ComparatorTypeConst::CONST_GREATER_EQUAL
  828. )
  829. )
  830. )
  831. );
  832. $batchGetQueryRes = $this->otsClient->batchGetRow ($batchGetQuery);
  833. $this->assertEquals (count ($batchGetQueryRes['tables'][0]['rows']), 4);
  834. for($i = 0; $i < count ($batchGetQueryRes['tables'][0]['rows']); $i ++) {
  835. $this->assertEquals ($batchGetQueryRes['tables'][0]['rows'][$i]['is_ok'], 1);
  836. $this->assertEquals (count ($batchGetQueryRes['tables'][0]['rows'][$i]['row']['attribute_columns']), 0);
  837. }
  838. $this->assertEquals (count ($batchGetQueryRes['tables'][1]['rows']), 4);
  839. for($i = 0; $i < count ($batchGetQueryRes['tables'][1]['rows']); $i ++) {
  840. $this->assertEquals ($batchGetQueryRes['tables'][1]['rows'][$i]['is_ok'], 1);
  841. if ($i < 2)
  842. $this->assertEquals (count ($batchGetQueryRes['tables'][1]['rows'][$i]['row']['attribute_columns']), 0);
  843. else {
  844. $this->assertEquals (count ($batchGetQueryRes['tables'][1]['rows'][$i]['row']['attribute_columns']), 2);
  845. }
  846. }
  847. }
  848. /**
  849. * 测试在多表中和多重ColumnCondition过滤条件下,使用BatchGetRow接口进行批量数据读取的操作是否成功。
  850. */
  851. public function testMultipleTablesBatchGetRowWithMultipleConditions() {
  852. global $usedTables;
  853. for($i = 1; $i < 100; $i ++) {
  854. $putdata = array (
  855. "table_name" => $usedTables[0],
  856. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  857. "primary_key" => array (
  858. "PK1" => $i,
  859. "PK2" => "a" . $i
  860. ),
  861. "attribute_columns" => array (
  862. "attr1" => $i,
  863. "attr2" => "a" . $i
  864. )
  865. );
  866. $this->otsClient->putRow ($putdata);
  867. }
  868. $allTables = $this->otsClient->listTable (array ());
  869. if (! in_array ($usedTables[1], $allTables))
  870. $this->otsClient->createTable (array (
  871. "table_meta" => array (
  872. "table_name" => $usedTables[1],
  873. "primary_key_schema" => array (
  874. "PK1" => ColumnTypeConst::CONST_INTEGER,
  875. "PK2" => ColumnTypeConst::CONST_STRING
  876. )
  877. ),
  878. "reserved_throughput" => array (
  879. "capacity_unit" => array (
  880. "read" => 0,
  881. "write" => 0
  882. )
  883. )
  884. ));
  885. for($i = 1; $i < 100; $i ++) {
  886. $putdata = array (
  887. "table_name" => $usedTables[1],
  888. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  889. "primary_key" => array (
  890. "PK1" => $i,
  891. "PK2" => "a" . $i
  892. ),
  893. "attribute_columns" => array (
  894. "attr1" => $i,
  895. "attr2" => "a" . $i
  896. )
  897. );
  898. $this->otsClient->putRow ($putdata);
  899. }
  900. $batchGetQuery = array (
  901. "tables" => array (
  902. array (
  903. "table_name" => $usedTables[0],
  904. "columns_to_get" => array (
  905. "attr1",
  906. "attr2"
  907. ),
  908. "rows" => array (
  909. array (
  910. "primary_key" => array (
  911. "PK1" => 1,
  912. "PK2" => "a1"
  913. )
  914. ),
  915. array (
  916. "primary_key" => array (
  917. "PK1" => 2,
  918. "PK2" => "a2"
  919. )
  920. ),
  921. array (
  922. "primary_key" => array (
  923. "PK1" => 3,
  924. "PK2" => "a3"
  925. )
  926. ),
  927. array (
  928. "primary_key" => array (
  929. "PK1" => 4,
  930. "PK2" => "a4"
  931. )
  932. )
  933. ),
  934. "column_filter" => array (
  935. "logical_operator" => LogicalOperatorConst::CONST_AND,
  936. "sub_conditions" => array (
  937. array (
  938. "column_name" => "attr1",
  939. "value" => 1,
  940. "comparator" => ComparatorTypeConst::CONST_GREATER_EQUAL
  941. ),
  942. array (
  943. "column_name" => "attr2",
  944. "value" => "a6",
  945. "comparator" => ComparatorTypeConst::CONST_LESS_THAN
  946. ),
  947. array (
  948. "logical_operator" => LogicalOperatorConst::CONST_OR,
  949. "sub_conditions" => array (
  950. array (
  951. "column_name" => "attr1",
  952. "value" => 100,
  953. "comparator" => ComparatorTypeConst::CONST_GREATER_EQUAL
  954. ),
  955. array (
  956. "column_name" => "attr2",
  957. "value" => "a0",
  958. "comparator" => ComparatorTypeConst::CONST_LESS_EQUAL
  959. )
  960. )
  961. )
  962. )
  963. )
  964. ),
  965. array (
  966. "table_name" => $usedTables[1],
  967. "columns_to_get" => array (
  968. "attr1",
  969. "attr2"
  970. ),
  971. "rows" => array (
  972. array (
  973. "primary_key" => array (
  974. "PK1" => 1,
  975. "PK2" => "a1"
  976. )
  977. ),
  978. array (
  979. "primary_key" => array (
  980. "PK1" => 2,
  981. "PK2" => "a2"
  982. )
  983. ),
  984. array (
  985. "primary_key" => array (
  986. "PK1" => 3,
  987. "PK2" => "a3"
  988. )
  989. ),
  990. array (
  991. "primary_key" => array (
  992. "PK1" => 4,
  993. "PK2" => "a4"
  994. )
  995. )
  996. ),
  997. "column_filter" => array (
  998. "logical_operator" => LogicalOperatorConst::CONST_AND,
  999. "sub_conditions" => array (
  1000. array (
  1001. "column_name" => "attr1",
  1002. "value" => 3,
  1003. "comparator" => ComparatorTypeConst::CONST_GREATER_EQUAL
  1004. ),
  1005. array (
  1006. "logical_operator" => LogicalOperatorConst::CONST_NOT,
  1007. "sub_conditions" => array (
  1008. array (
  1009. "column_name" => "attr2",
  1010. "value" => "a9",
  1011. "comparator" => ComparatorTypeConst::CONST_LESS_EQUAL
  1012. )
  1013. )
  1014. )
  1015. )
  1016. )
  1017. )
  1018. )
  1019. );
  1020. $batchGetQueryRes = $this->otsClient->batchGetRow ($batchGetQuery);
  1021. $this->assertEquals (count ($batchGetQueryRes['tables'][0]['rows']), 4);
  1022. for($i = 0; $i < count ($batchGetQueryRes['tables'][0]['rows']); $i ++) {
  1023. $this->assertEquals ($batchGetQueryRes['tables'][0]['rows'][$i]['is_ok'], 1);
  1024. $this->assertEquals (count ($batchGetQueryRes['tables'][0]['rows'][$i]['row']['attribute_columns']), 0);
  1025. }
  1026. $this->assertEquals (count ($batchGetQueryRes['tables'][1]['rows']), 4);
  1027. for($i = 0; $i < count ($batchGetQueryRes['tables'][1]['rows']); $i ++) {
  1028. $this->assertEquals ($batchGetQueryRes['tables'][1]['rows'][$i]['is_ok'], 1);
  1029. $this->assertEquals (count ($batchGetQueryRes['tables'][1]['rows'][$i]['row']['attribute_columns']), 0);
  1030. }
  1031. }
  1032. }