GetRangeTest.php 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202
  1. <?php
  2. namespace Aliyun\OTS\Tests;
  3. use Aliyun\OTS;
  4. use Aliyun\OTS\RowExistenceExpectationConst;
  5. use Aliyun\OTS\DirectionConst;
  6. use Aliyun\OTS\ColumnTypeConst;
  7. require __DIR__ . "/TestBase.php";
  8. require __DIR__ . "/../../../vendor/autoload.php";
  9. $usedTables = array (
  10. "myTable",
  11. "myTablexx",
  12. "myTablexx2",
  13. "myTable1"
  14. );
  15. SDKTestBase::cleanUp ($usedTables);
  16. SDKTestBase::createInitialTable (array (
  17. "table_meta" => array (
  18. "table_name" => $usedTables[0],
  19. "primary_key_schema" => array (
  20. "PK1" => ColumnTypeConst::CONST_INTEGER,
  21. "PK2" => ColumnTypeConst::CONST_STRING
  22. )
  23. ),
  24. "reserved_throughput" => array (
  25. "capacity_unit" => array (
  26. "read" => 0,
  27. "write" => 0
  28. )
  29. )
  30. ));
  31. SDKTestBase::createInitialTable (array (
  32. "table_meta" => array (
  33. "table_name" => $usedTables[1],
  34. "primary_key_schema" => array (
  35. "PK1" => ColumnTypeConst::CONST_INTEGER
  36. )
  37. ),
  38. "reserved_throughput" => array (
  39. "capacity_unit" => array (
  40. "read" => 0,
  41. "write" => 0
  42. )
  43. )
  44. ));
  45. SDKTestBase::createInitialTable (array (
  46. "table_meta" => array (
  47. "table_name" => $usedTables[2],
  48. "primary_key_schema" => array (
  49. "PK1" => ColumnTypeConst::CONST_INTEGER
  50. )
  51. ),
  52. "reserved_throughput" => array (
  53. "capacity_unit" => array (
  54. "read" => 0,
  55. "write" => 0
  56. )
  57. )
  58. ));
  59. SDKTestBase::createInitialTable (array (
  60. "table_meta" => array (
  61. "table_name" => $usedTables[3],
  62. "primary_key_schema" => array (
  63. "PK1" => ColumnTypeConst::CONST_INTEGER,
  64. "PK2" => ColumnTypeConst::CONST_STRING,
  65. "PK3" => ColumnTypeConst::CONST_INTEGER,
  66. "PK4" => ColumnTypeConst::CONST_STRING
  67. )
  68. ),
  69. "reserved_throughput" => array (
  70. "capacity_unit" => array (
  71. "read" => 0,
  72. "write" => 0
  73. )
  74. )
  75. ));
  76. SDKTestBase::waitForTableReady ();
  77. class GetRangeTest extends SDKTestBase {
  78. /*
  79. *
  80. * GetRangeForward
  81. * 先写入两行,PK分别为1和2,GetRange,方向为Forward,期望顺序得到1和2两行。
  82. */
  83. public function testGetRangeForward() {
  84. global $usedTables;
  85. for($i = 1; $i < 3; $i ++) {
  86. $tablename = array (
  87. "table_name" => $usedTables[0],
  88. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  89. "primary_key" => array (
  90. "PK1" => $i,
  91. "PK2" => "a" . $i
  92. ),
  93. "attribute_columns" => array (
  94. "att1" => $i,
  95. "att2" => "att" . $i
  96. )
  97. );
  98. $this->otsClient->putRow ($tablename);
  99. }
  100. $getRange = array (
  101. "table_name" => $usedTables[0],
  102. "direction" => DirectionConst::CONST_FORWARD,
  103. "limit" => 10,
  104. "inclusive_start_primary_key" => array (
  105. "PK1" => 1,
  106. "PK2" => "a1"
  107. ),
  108. "exclusive_end_primary_key" => array (
  109. "PK1" => 3,
  110. "PK2" => "a3"
  111. )
  112. );
  113. $rowone = array (
  114. "primary_key_columns" => array (
  115. "PK1" => 1,
  116. "PK2" => "a1"
  117. ),
  118. "attribute_columns" => array (
  119. "att1" => 1,
  120. "att2" => "att1"
  121. )
  122. );
  123. $rowtwo = array (
  124. "primary_key_columns" => array (
  125. "PK1" => 2,
  126. "PK2" => "a2"
  127. ),
  128. "attribute_columns" => array (
  129. "att1" => 2,
  130. "att2" => "att2"
  131. )
  132. );
  133. $tables = $this->otsClient->getRange ($getRange);
  134. $this->assertEmpty ($tables['next_start_primary_key']);
  135. $this->assertEquals ($tables['rows'][0], $rowone);
  136. $this->assertEquals ($tables['rows'][1], $rowtwo);
  137. }
  138. /*
  139. *
  140. * GetRangeBackward
  141. * 先写入两行,PK分别为1和2,GetRange,方向为Backward,期望顺序得到2和1两行。
  142. */
  143. public function testGetRangeBackward() {
  144. global $usedTables;
  145. for($i = 1; $i < 3; $i ++) {
  146. $tablename = array (
  147. "table_name" => $usedTables[0],
  148. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  149. "primary_key" => array (
  150. "PK1" => $i,
  151. "PK2" => "a" . $i
  152. ),
  153. "attribute_columns" => array (
  154. "att1" => $i,
  155. "att2" => "att" . $i
  156. )
  157. );
  158. $this->otsClient->putRow ($tablename);
  159. }
  160. $getRange = array (
  161. "table_name" => $usedTables[0],
  162. "direction" => DirectionConst::CONST_BACKWARD,
  163. "limit" => 10,
  164. "inclusive_start_primary_key" => array (
  165. "PK1" => 2,
  166. "PK2" => "a2"
  167. ),
  168. "exclusive_end_primary_key" => array (
  169. "PK1" => 0,
  170. "PK2" => "a0"
  171. )
  172. );
  173. $rowone = array (
  174. "primary_key_columns" => array (
  175. "PK1" => 1,
  176. "PK2" => "a1"
  177. ),
  178. "attribute_columns" => array (
  179. "att1" => 1,
  180. "att2" => "att1"
  181. )
  182. );
  183. $rowtwo = array (
  184. "primary_key_columns" => array (
  185. "PK1" => 2,
  186. "PK2" => "a2"
  187. ),
  188. "attribute_columns" => array (
  189. "att1" => 2,
  190. "att2" => "att2"
  191. )
  192. );
  193. $tables = $this->otsClient->getRange ($getRange);
  194. // print_r($tables);die;
  195. $this->assertEmpty ($tables['next_start_primary_key']);
  196. $this->assertEquals ($tables['rows'][0], $rowtwo);
  197. $this->assertEquals ($tables['rows'][1], $rowone);
  198. }
  199. /*
  200. *
  201. * InfMinInRange
  202. * 先写入2行,PK分别为1和2,GetRange,方向为Forward,范围为 [INF_MIN, 2) 或者 [1, INF_MIN),期望顺序得到0和1两行,或者返回服务端错误
  203. */
  204. public function testInfMinInRange() {
  205. global $usedTables;
  206. for($i = 1; $i < 3; $i ++) {
  207. $tablename = array (
  208. "table_name" => $usedTables[0],
  209. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  210. "primary_key" => array (
  211. "PK1" => $i,
  212. "PK2" => "a" . $i
  213. ),
  214. "attribute_columns" => array (
  215. "att1" => $i,
  216. "att2" => "att" . $i
  217. )
  218. );
  219. $this->otsClient->putRow ($tablename);
  220. }
  221. $getRange = array (
  222. "table_name" => $usedTables[0],
  223. "direction" => DirectionConst::CONST_FORWARD,
  224. "columns_to_get" => array (),
  225. "limit" => 10,
  226. "inclusive_start_primary_key" => array (
  227. "PK1" => array (
  228. 'type' => ColumnTypeConst::CONST_INF_MIN
  229. ),
  230. "PK2" => array (
  231. 'type' => ColumnTypeConst::CONST_INF_MIN
  232. )
  233. ),
  234. "exclusive_end_primary_key" => array (
  235. "PK1" => 10,
  236. "PK2" => "a10"
  237. )
  238. );
  239. $rowone = array (
  240. "primary_key_columns" => array (
  241. "PK1" => 1,
  242. "PK2" => "a1"
  243. ),
  244. "attribute_columns" => array (
  245. "att1" => 1,
  246. "att2" => "att1"
  247. )
  248. );
  249. $rowtwo = array (
  250. "primary_key_columns" => array (
  251. "PK1" => 2,
  252. "PK2" => "a2"
  253. ),
  254. "attribute_columns" => array (
  255. "att1" => 2,
  256. "att2" => "att2"
  257. )
  258. );
  259. $tables = $this->otsClient->getRange ($getRange);
  260. // print_r($tables);die;
  261. $this->assertEmpty ($tables['next_start_primary_key']);
  262. $this->assertEquals ($tables['rows'][0], $rowone);
  263. $this->assertEquals ($tables['rows'][1], $rowtwo);
  264. }
  265. /*
  266. *
  267. * InfMinInRange
  268. * 先写入2行,PK分别为0, 1和2,GetRange,方向为Backward,范围为 [INF_MAX, 2) 或者 [1, INF_MAX),顺序得到2和1两行
  269. */
  270. public function testInfMaxInRange() {
  271. global $usedTables;
  272. for($i = 1; $i < 3; $i ++) {
  273. $tablename = array (
  274. "table_name" => $usedTables[0],
  275. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  276. "primary_key" => array (
  277. "PK1" => $i,
  278. "PK2" => "a" . $i
  279. ),
  280. "attribute_columns" => array (
  281. "att1" => $i,
  282. "att2" => "att" . $i
  283. )
  284. );
  285. $this->otsClient->putRow ($tablename);
  286. }
  287. $getRange = array (
  288. "table_name" => $usedTables[0],
  289. "direction" => DirectionConst::CONST_BACKWARD,
  290. "limit" => 10,
  291. "inclusive_start_primary_key" => array (
  292. "PK1" => array (
  293. 'type' => ColumnTypeConst::CONST_INF_MAX
  294. ),
  295. "PK2" => array (
  296. 'type' => ColumnTypeConst::CONST_INF_MAX
  297. )
  298. ),
  299. "exclusive_end_primary_key" => array (
  300. "PK1" => 0,
  301. "PK2" => "a0"
  302. )
  303. );
  304. $rowone = array (
  305. "primary_key_columns" => array (
  306. "PK1" => 1,
  307. "PK2" => "a1"
  308. ),
  309. "attribute_columns" => array (
  310. "att1" => 1,
  311. "att2" => "att1"
  312. )
  313. );
  314. $rowtwo = array (
  315. "primary_key_columns" => array (
  316. "PK1" => 2,
  317. "PK2" => "a2"
  318. ),
  319. "attribute_columns" => array (
  320. "att1" => 2,
  321. "att2" => "att2"
  322. )
  323. );
  324. $tables = $this->otsClient->getRange ($getRange);
  325. // print_r($tables);die;
  326. $this->assertEmpty ($tables['next_start_primary_key']);
  327. $this->assertEquals ($tables['rows'][0], $rowtwo);
  328. $this->assertEquals ($tables['rows'][1], $rowone);
  329. }
  330. /*
  331. *
  332. * GetRangeWithDefaultColumnsToGet
  333. * 先PutRow包含4个主键列,4个属性列,然后GetRange请求ColumnsToGet参数属性列,期望读出所有4个属性列。
  334. */
  335. public function testGetRangeWithDefaultColumnsToGet() {
  336. global $usedTables;
  337. for($i = 1; $i < 3; $i ++) {
  338. $tablename = array (
  339. "table_name" => $usedTables[3],
  340. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  341. "primary_key" => array (
  342. "PK1" => $i,
  343. "PK2" => "a" . $i,
  344. "PK3" => $i,
  345. "PK4" => "b" . $i
  346. ),
  347. "attribute_columns" => array (
  348. "att1" => $i,
  349. "att2" => "att" . $i,
  350. "att3" => $i,
  351. "att4" => "att" . $i
  352. )
  353. );
  354. $this->otsClient->putRow ($tablename);
  355. }
  356. $getRange = array (
  357. "table_name" => $usedTables[3],
  358. "direction" => DirectionConst::CONST_BACKWARD,
  359. "columns_to_get" => array (
  360. "att1",
  361. "att2",
  362. "att3",
  363. "att4"
  364. ),
  365. "limit" => 10,
  366. "inclusive_start_primary_key" => array (
  367. "PK1" => array (
  368. 'type' => ColumnTypeConst::CONST_INF_MAX
  369. ),
  370. "PK2" => array (
  371. 'type' => ColumnTypeConst::CONST_INF_MAX
  372. ),
  373. "PK3" => array (
  374. 'type' => ColumnTypeConst::CONST_INF_MAX
  375. ),
  376. "PK4" => array (
  377. 'type' => ColumnTypeConst::CONST_INF_MAX
  378. )
  379. ),
  380. "exclusive_end_primary_key" => array (
  381. "PK1" => 0,
  382. "PK2" => "a0",
  383. "PK3" => 1,
  384. "PK4" => "a0"
  385. )
  386. );
  387. $rowone = // "primary_key_columns" => array("PK1" => 1, "PK2" => "a1"),
  388. array (
  389. "att1" => 2,
  390. "att2" => "att2",
  391. "att3" => 2,
  392. "att4" => "att2"
  393. );
  394. $rowtwo = // "primary_key_columns" => array("PK1" => 2, "PK2" => "a2"),
  395. array (
  396. "att1" => 1,
  397. "att2" => "att1",
  398. "att3" => 1,
  399. "att4" => "att1"
  400. );
  401. $tables = $this->otsClient->getRange ($getRange);
  402. // print_r($tables);die;
  403. $this->assertEmpty ($tables['next_start_primary_key']);
  404. $this->assertEmpty ($tables['rows'][0]['primary_key_columns']);
  405. $this->assertEmpty ($tables['rows'][1]['primary_key_columns']);
  406. $this->assertEquals ($tables['rows'][0]['attribute_columns'], $rowone);
  407. $this->assertEquals ($tables['rows'][1]['attribute_columns'], $rowtwo);
  408. }
  409. /*
  410. *
  411. * GetRangeWith0ColumsToGet
  412. * 先PutRow包含4个主键列,4个属性列,然后GetRange请求ColumnsToGet为空数组,期望读出所有数据。
  413. */
  414. public function testGetRangeWith0ColumsToGet() {
  415. global $usedTables;
  416. for($i = 1; $i < 3; $i ++) {
  417. $tablename = array (
  418. "table_name" => $usedTables[3],
  419. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  420. "primary_key" => array (
  421. "PK1" => $i,
  422. "PK2" => "a" . $i,
  423. "PK3" => $i,
  424. "PK4" => "b" . $i
  425. ),
  426. "attribute_columns" => array (
  427. "att1" => $i,
  428. "att2" => "att" . $i,
  429. "att3" => $i,
  430. "att4" => "att" . $i
  431. )
  432. );
  433. $this->otsClient->putRow ($tablename);
  434. }
  435. $getRange = array (
  436. "table_name" => $usedTables[3],
  437. "direction" => DirectionConst::CONST_BACKWARD,
  438. "columns_to_get" => array (),
  439. "limit" => 10,
  440. "inclusive_start_primary_key" => array (
  441. "PK1" => array (
  442. 'type' => ColumnTypeConst::CONST_INF_MAX
  443. ),
  444. "PK2" => array (
  445. 'type' => ColumnTypeConst::CONST_INF_MAX
  446. ),
  447. "PK3" => array (
  448. 'type' => ColumnTypeConst::CONST_INF_MAX
  449. ),
  450. "PK4" => array (
  451. 'type' => ColumnTypeConst::CONST_INF_MAX
  452. )
  453. ),
  454. "exclusive_end_primary_key" => array (
  455. "PK1" => 0,
  456. "PK2" => "a0",
  457. "PK3" => 1,
  458. "PK4" => "a0"
  459. )
  460. );
  461. $rowone = array (
  462. "primary_key_columns" => array (
  463. "PK1" => 1,
  464. "PK2" => "a1",
  465. "PK3" => 1,
  466. "PK4" => "b1"
  467. ),
  468. "attribute_columns" => array (
  469. "att1" => 1,
  470. "att2" => "att1",
  471. "att3" => 1,
  472. "att4" => "att1"
  473. )
  474. );
  475. $rowtwo = array (
  476. "primary_key_columns" => array (
  477. "PK1" => 2,
  478. "PK2" => "a2",
  479. "PK3" => 2,
  480. "PK4" => "b2"
  481. ),
  482. "attribute_columns" => array (
  483. "att1" => 2,
  484. "att2" => "att2",
  485. "att3" => 2,
  486. "att4" => "att2"
  487. )
  488. );
  489. $tables = $this->otsClient->getRange ($getRange);
  490. $this->assertEmpty ($tables['next_start_primary_key']);
  491. $this->assertEquals ($tables['rows'][0], $rowtwo);
  492. $this->assertEquals ($tables['rows'][1], $rowone);
  493. }
  494. /*
  495. *
  496. * GetRangeWith4ColumnsToGet
  497. * 先PutRow包含4个主键列,4个属性列,然后GetRange请求ColumnsToGet包含其中2个主键列,2个属性列,期望返回数据包含参数中指定的列。
  498. */
  499. public function testGetRangeWith4ColumnsToGet() {
  500. global $usedTables;
  501. for($i = 1; $i < 3; $i ++) {
  502. $tablename = array (
  503. "table_name" => $usedTables[3],
  504. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  505. "primary_key" => array (
  506. "PK1" => $i,
  507. "PK2" => "a" . $i,
  508. "PK3" => $i,
  509. "PK4" => "b" . $i
  510. ),
  511. "attribute_columns" => array (
  512. "att1" => $i,
  513. "att2" => "att" . $i,
  514. "att3" => $i,
  515. "att4" => "att" . $i
  516. )
  517. );
  518. $this->otsClient->putRow ($tablename);
  519. }
  520. $getRange = array (
  521. "table_name" => $usedTables[3],
  522. "direction" => DirectionConst::CONST_BACKWARD,
  523. "columns_to_get" => array (
  524. "PK1",
  525. "PK2",
  526. "att1",
  527. "att2"
  528. ),
  529. "limit" => 10,
  530. "inclusive_start_primary_key" => array (
  531. "PK1" => array (
  532. 'type' => ColumnTypeConst::CONST_INF_MAX
  533. ),
  534. "PK2" => array (
  535. 'type' => ColumnTypeConst::CONST_INF_MAX
  536. ),
  537. "PK3" => array (
  538. 'type' => ColumnTypeConst::CONST_INF_MAX
  539. ),
  540. "PK4" => array (
  541. 'type' => ColumnTypeConst::CONST_INF_MAX
  542. )
  543. ),
  544. "exclusive_end_primary_key" => array (
  545. "PK1" => 0,
  546. "PK2" => "a0",
  547. "PK3" => 1,
  548. "PK4" => "a0"
  549. )
  550. );
  551. $rowone = array (
  552. "primary_key_columns" => array (
  553. "PK1" => 1,
  554. "PK2" => "a1"
  555. ),
  556. "attribute_columns" => array (
  557. "att1" => 1,
  558. "att2" => "att1"
  559. )
  560. );
  561. $rowtwo = array (
  562. "primary_key_columns" => array (
  563. "PK1" => 2,
  564. "PK2" => "a2"
  565. ),
  566. "attribute_columns" => array (
  567. "att1" => 2,
  568. "att2" => "att2"
  569. )
  570. );
  571. $tables = $this->otsClient->getRange ($getRange);
  572. $this->assertEmpty ($tables['next_start_primary_key']);
  573. $this->assertEquals ($tables['rows'][0], $rowtwo);
  574. $this->assertEquals ($tables['rows'][1], $rowone);
  575. }
  576. /*
  577. *
  578. * GetRangeWith1000ColumnsToGet
  579. * GetRange请求ColumnsToGet包含1000个不重复的列名,期望返回服务端错误?
  580. */
  581. public function testGetRangeWith1000ColumnsToGet() {
  582. global $usedTables;
  583. for($i = 1; $i < 3; $i ++) {
  584. $tablename = array (
  585. "table_name" => $usedTables[0],
  586. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  587. "primary_key" => array (
  588. "PK1" => $i,
  589. "PK2" => "a" . $i
  590. ),
  591. "attribute_columns" => array (
  592. "att1" => $i,
  593. "att2" => "att" . $i
  594. )
  595. );
  596. $this->otsClient->putRow ($tablename);
  597. }
  598. for($i = 0; $i < 1001; $i ++) {
  599. $a[] = 'a' . $i;
  600. }
  601. $getRange = array (
  602. "table_name" => $usedTables[0],
  603. "direction" => DirectionConst::CONST_FORWARD,
  604. "columns_to_get" => $a,
  605. "limit" => 10,
  606. "inclusive_start_primary_key" => array (
  607. "PK1" => 1,
  608. "PK2" => "a1"
  609. ),
  610. "exclusive_end_primary_key" => array (
  611. "PK1" => 3,
  612. "PK2" => "a3"
  613. )
  614. );
  615. $this->otsClient->getRange ($getRange);
  616. }
  617. /*
  618. *
  619. * GetRangeWithDuplicateColumnsToGet
  620. * GetRange请求ColumnsToGet包含2个重复的列名,成功读取指定信息
  621. */
  622. public function testGetRangeWithDuplicateColumnsToGet() {
  623. global $usedTables;
  624. for($i = 1; $i < 3; $i ++) {
  625. $tablename = array (
  626. "table_name" => $usedTables[0],
  627. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  628. "primary_key" => array (
  629. "PK1" => $i,
  630. "PK2" => "a" . $i
  631. ),
  632. "attribute_columns" => array (
  633. "att1" => $i,
  634. "att2" => "att" . $i
  635. )
  636. );
  637. $this->otsClient->putRow ($tablename);
  638. }
  639. $getRange = array (
  640. "table_name" => $usedTables[0],
  641. "direction" => DirectionConst::CONST_FORWARD,
  642. "columns_to_get" => array (
  643. "att1",
  644. "att1"
  645. ),
  646. "limit" => 10,
  647. "inclusive_start_primary_key" => array (
  648. "PK1" => 1,
  649. "PK2" => "a1"
  650. ),
  651. "exclusive_end_primary_key" => array (
  652. "PK1" => 3,
  653. "PK2" => "a3"
  654. )
  655. );
  656. $tables = $this->otsClient->getRange ($getRange);
  657. $this->assertEmpty ($tables['next_start_primary_key']);
  658. $this->assertEmpty ($tables['rows'][0]['primary_key_columns']);
  659. $this->assertEmpty ($tables['rows'][1]['primary_key_columns']);
  660. $this->assertEquals ($tables['rows'][0]['attribute_columns']['att1'], 1);
  661. $this->assertEquals ($tables['rows'][1]['attribute_columns']['att1'], 2);
  662. }
  663. /*
  664. *
  665. * GetRangeWithLimit10
  666. * 先写入20行,GetRange Limit=10,期望返回10行,并校验 NextPK。
  667. */
  668. public function testGetRangeWithLimit10() {
  669. global $usedTables;
  670. for($i = 1; $i < 21; $i ++) {
  671. $tablename = array (
  672. "table_name" => $usedTables[0],
  673. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  674. "primary_key" => array (
  675. "PK1" => $i,
  676. "PK2" => "a" . $i
  677. ),
  678. "attribute_columns" => array (
  679. "att1" => $i
  680. )
  681. );
  682. $this->otsClient->putRow ($tablename);
  683. }
  684. $getRange = array (
  685. "table_name" => $usedTables[0],
  686. "direction" => DirectionConst::CONST_FORWARD,
  687. "columns_to_get" => array (),
  688. "limit" => 10,
  689. "inclusive_start_primary_key" => array (
  690. "PK1" => 1,
  691. "PK2" => "a1"
  692. ),
  693. "exclusive_end_primary_key" => array (
  694. "PK1" => array (
  695. 'type' => ColumnTypeConst::CONST_INF_MAX
  696. ),
  697. "PK2" => array (
  698. 'type' => ColumnTypeConst::CONST_INF_MAX
  699. )
  700. )
  701. );
  702. $tables = $this->otsClient->getRange ($getRange);
  703. for($i = 1; $i < 11; $i ++) {
  704. $row[] = array (
  705. "primary_key_columns" => array (
  706. "PK1" => $i,
  707. "PK2" => "a" . $i
  708. ),
  709. "attribute_columns" => array (
  710. "att1" => $i
  711. )
  712. );
  713. }
  714. for($i = 0; $i < count ($tables['rows']); $i ++) {
  715. $this->assertEquals ($tables['rows'][$i], $row[$i]);
  716. }
  717. $primary = array (
  718. "PK1" => 11,
  719. "PK2" => "a11"
  720. );
  721. $this->assertEquals ($tables['next_start_primary_key'], $primary);
  722. $this->assertEquals (count ($tables['rows']), 10);
  723. }
  724. /*
  725. *
  726. * GetRangeIteratorWith1Row
  727. * GetRangeIterator 返回1行的情况。
  728. */
  729. public function testGetRangeIteratorWith1Row() {
  730. global $usedTables;
  731. for($i = 1; $i < 2; $i ++) {
  732. $tablename = array (
  733. "table_name" => $usedTables[0],
  734. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  735. "primary_key" => array (
  736. "PK1" => $i,
  737. "PK2" => "a" . $i
  738. ),
  739. "attribute_columns" => array (
  740. "att1" => $i
  741. )
  742. );
  743. $this->otsClient->putRow ($tablename);
  744. }
  745. $getRange = array (
  746. "table_name" => $usedTables[0],
  747. "direction" => DirectionConst::CONST_FORWARD,
  748. "columns_to_get" => array (),
  749. "limit" => 1,
  750. "inclusive_start_primary_key" => array (
  751. "PK1" => 1,
  752. "PK2" => "a1"
  753. ),
  754. "exclusive_end_primary_key" => array (
  755. "PK1" => array (
  756. 'type' => ColumnTypeConst::CONST_INF_MAX
  757. ),
  758. "PK2" => array (
  759. 'type' => ColumnTypeConst::CONST_INF_MAX
  760. )
  761. )
  762. );
  763. $tables = $this->otsClient->getRange ($getRange);
  764. $row = array (
  765. "primary_key_columns" => array (
  766. "PK1" => 1,
  767. "PK2" => "a1"
  768. ),
  769. "attribute_columns" => array (
  770. "att1" => 1
  771. )
  772. );
  773. $this->assertEquals ($tables['rows'][0], $row);
  774. }
  775. /*
  776. * TableNameOfZeroLength
  777. * 表名长度为0的情况,期望返回错误消息:Invalid table name: ''. 中包含的TableName与输入一致
  778. */
  779. public function testTableNameOfZeroLength() {
  780. $tablebody = array (
  781. "table_meta" => array (
  782. "table_name" => "",
  783. "primary_key_schema" => array (
  784. "PK1" => ColumnTypeConst::CONST_STRING,
  785. "PK2" => ColumnTypeConst::CONST_INTEGER,
  786. "PK3" => ColumnTypeConst::CONST_STRING,
  787. "PK4" => ColumnTypeConst::CONST_INTEGER
  788. )
  789. ),
  790. "reserved_throughput" => array (
  791. "capacity_unit" => array (
  792. "read" => 0,
  793. "write" => 0
  794. )
  795. )
  796. );
  797. try {
  798. $this->otsClient->createTable ($tablebody);
  799. $this->fail ('An expected exception has not been raised.');
  800. } catch (\Aliyun\OTS\OTSServerException $exc) {
  801. $c = "Invalid table name: ''.";
  802. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  803. }
  804. }
  805. /*
  806. * TableNameWithUnicode
  807. * 表名包含Unicode,期望返回错误信息:Invalid table name: '{TableName}'. 中包含的TableName与输入一致
  808. */
  809. public function testTableNameWithUnicode() {
  810. $tablebody = array (
  811. "table_meta" => array (
  812. "table_name" => "testU+0053",
  813. "primary_key_schema" => array (
  814. "PK1" => ColumnTypeConst::CONST_STRING,
  815. "PK2" => ColumnTypeConst::CONST_INTEGER,
  816. "PK3" => ColumnTypeConst::CONST_STRING,
  817. "PK4" => ColumnTypeConst::CONST_INTEGER
  818. )
  819. ),
  820. "reserved_throughput" => array (
  821. "capacity_unit" => array (
  822. "read" => 0,
  823. "write" => 0
  824. )
  825. )
  826. );
  827. try {
  828. $this->otsClient->createTable ($tablebody);
  829. $this->fail ('An expected exception has not been raised.');
  830. } catch (\Aliyun\OTS\OTSServerException $exc) {
  831. $c = "Invalid table name: '{$tablebody['table_meta']['table_name']}'.";
  832. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  833. }
  834. }
  835. /*
  836. *
  837. * GetRangeIteratorWith5000Rows
  838. * GetRangeIterator 返回5000行的情况,这时正好不发生第二次GetRange。
  839. */
  840. public function testGetRangeIteratorWith5000Rows() {
  841. global $usedTables;
  842. for($i = 1; $i < 5001; $i ++) {
  843. $tablename = array (
  844. "table_name" => $usedTables[1],
  845. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  846. "primary_key" => array (
  847. "PK1" => $i
  848. ),
  849. "attribute_columns" => array ()
  850. );
  851. $this->otsClient->putRow ($tablename);
  852. }
  853. $getRange = array (
  854. "table_name" => $usedTables[1],
  855. "direction" => DirectionConst::CONST_FORWARD,
  856. "columns_to_get" => array (),
  857. "limit" => 5000,
  858. "inclusive_start_primary_key" => array (
  859. "PK1" => 1
  860. ),
  861. "exclusive_end_primary_key" => array (
  862. "PK1" => array (
  863. 'type' => ColumnTypeConst::CONST_INF_MAX
  864. )
  865. )
  866. );
  867. $tables = $this->otsClient->getRange ($getRange);
  868. $this->assertEmpty ($tables['next_start_primary_key']);
  869. }
  870. /*
  871. *
  872. * GetRangeIteratorWith5001Rows
  873. * GetRangeIterator 返回5001行的情况,这时正好发生第二次GetRange。
  874. */
  875. public function testGetRangeIteratorWith5001Rows() {
  876. global $usedTables;
  877. for($i = 1; $i < 5002; $i ++) {
  878. $tablename = array (
  879. "table_name" => $usedTables[1],
  880. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  881. "primary_key" => array (
  882. "PK1" => $i
  883. ),
  884. "attribute_columns" => array ()
  885. );
  886. $this->otsClient->putRow ($tablename);
  887. }
  888. $getRange = array (
  889. "table_name" => $usedTables[1],
  890. "direction" => DirectionConst::CONST_FORWARD,
  891. "columns_to_get" => array (),
  892. "limit" => 5000,
  893. "inclusive_start_primary_key" => array (
  894. "PK1" => 1
  895. ),
  896. "exclusive_end_primary_key" => array (
  897. "PK1" => array (
  898. 'type' => ColumnTypeConst::CONST_INF_MAX
  899. )
  900. )
  901. );
  902. $tables = $this->otsClient->getRange ($getRange);
  903. $this->assertNotEmpty ($tables['next_start_primary_key']);
  904. }
  905. /*
  906. *
  907. * GetRangeIteratorWith15001Rows
  908. * GetRangeIterator 返回15001行的情况,这时共发生4次GetRange。
  909. */
  910. public function testGetRangeIteratorWith15001Rows() {
  911. global $usedTables;
  912. for($i = 1; $i < 15001; $i ++) {
  913. $tablename = array (
  914. "table_name" => $usedTables[1],
  915. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  916. "primary_key" => array (
  917. "PK1" => $i
  918. ),
  919. "attribute_columns" => array ()
  920. );
  921. $this->otsClient->putRow ($tablename);
  922. }
  923. $getRange = array (
  924. "table_name" => $usedTables[1],
  925. "direction" => DirectionConst::CONST_FORWARD,
  926. "columns_to_get" => array (),
  927. "limit" => 5000,
  928. "inclusive_start_primary_key" => array (
  929. "PK1" => 1
  930. ),
  931. "exclusive_end_primary_key" => array (
  932. "PK1" => array (
  933. 'type' => ColumnTypeConst::CONST_INF_MAX
  934. )
  935. )
  936. );
  937. $this->otsClient->getRange ($getRange);
  938. $getRange1 = array (
  939. "table_name" => $usedTables[1],
  940. "direction" => DirectionConst::CONST_FORWARD,
  941. "columns_to_get" => array (),
  942. "limit" => 5000,
  943. "inclusive_start_primary_key" => array (
  944. "PK1" => 5001
  945. ),
  946. "exclusive_end_primary_key" => array (
  947. "PK1" => array (
  948. 'type' => ColumnTypeConst::CONST_INF_MAX
  949. )
  950. )
  951. );
  952. $this->otsClient->getRange ($getRange1);
  953. $getRange2 = array (
  954. "table_name" => $usedTables[1],
  955. "direction" => DirectionConst::CONST_FORWARD,
  956. "columns_to_get" => array (),
  957. "limit" => 5000,
  958. "inclusive_start_primary_key" => array (
  959. "PK1" => 10001
  960. ),
  961. "exclusive_end_primary_key" => array (
  962. "PK1" => array (
  963. 'type' => ColumnTypeConst::CONST_INF_MAX
  964. )
  965. )
  966. );
  967. $this->otsClient->getRange ($getRange2);
  968. $getRange3 = array (
  969. "table_name" => $usedTables[1],
  970. "direction" => DirectionConst::CONST_FORWARD,
  971. "columns_to_get" => array (),
  972. "limit" => 5000,
  973. "inclusive_start_primary_key" => array (
  974. "PK1" => 15001
  975. ),
  976. "exclusive_end_primary_key" => array (
  977. "PK1" => array (
  978. 'type' => ColumnTypeConst::CONST_INF_MAX
  979. )
  980. )
  981. );
  982. $tables = $this->otsClient->getRange ($getRange3);
  983. $this->assertEmpty ($tables['next_start_primary_key']);
  984. }
  985. /*
  986. *
  987. * GetRangeWithDefaultLimit
  988. * 先写入10000行,GetRange Limit为默认,期望2次返回全部行。
  989. */
  990. public function testGetRangeWithDefaultLimit() {
  991. global $usedTables;
  992. for($i = 1; $i < 10001; $i ++) {
  993. $tablename = array (
  994. "table_name" => $usedTables[2],
  995. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  996. "primary_key" => array (
  997. "PK1" => $i
  998. ),
  999. "attribute_columns" => array ()
  1000. );
  1001. $this->otsClient->putRow ($tablename);
  1002. }
  1003. $getRange = array (
  1004. "table_name" => $usedTables[2],
  1005. "direction" => DirectionConst::CONST_FORWARD,
  1006. "columns_to_get" => array (),
  1007. "limit" => 5000,
  1008. "inclusive_start_primary_key" => array (
  1009. "PK1" => 1
  1010. ),
  1011. "exclusive_end_primary_key" => array (
  1012. "PK1" => array (
  1013. 'type' => ColumnTypeConst::CONST_INF_MAX
  1014. )
  1015. )
  1016. );
  1017. $this->otsClient->getRange ($getRange);
  1018. // $primary = array("PK1" => 5001);
  1019. // $this->assertEquals($tables['next_start_primary_key'], $primary);
  1020. $getRange1 = array (
  1021. "table_name" => $usedTables[2],
  1022. "direction" => DirectionConst::CONST_FORWARD,
  1023. "columns_to_get" => array (),
  1024. "limit" => 5000,
  1025. "inclusive_start_primary_key" => array (
  1026. "PK1" => 5001
  1027. ),
  1028. "exclusive_end_primary_key" => array (
  1029. "PK1" => array (
  1030. 'type' => ColumnTypeConst::CONST_INF_MAX
  1031. )
  1032. )
  1033. );
  1034. $tables = $this->otsClient->getRange ($getRange1);
  1035. $this->assertEmpty ($tables['next_start_primary_key']);
  1036. }
  1037. /**
  1038. * 测试在使用ColumnCondition的过滤条件下,使用GetRange扫描数据是否成功。
  1039. */
  1040. public function getGetRangeWithSingleCompositeCondition() {
  1041. global $usedTables;
  1042. for($i = 1; $i < 10001; $i ++) {
  1043. $putdata = array (
  1044. "table_name" => $usedTables[2],
  1045. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  1046. "primary_key" => array (
  1047. "PK1" => $i
  1048. ),
  1049. "attribute_columns" => array (
  1050. "att1" => $i,
  1051. "att2" => "att" . $i
  1052. )
  1053. );
  1054. $this->otsClient->putRow ($putdata);
  1055. }
  1056. $getRange = array (
  1057. "table_name" => $usedTables[2],
  1058. "direction" => DirectionConst::CONST_FORWARD,
  1059. "columns_to_get" => array (
  1060. "att1",
  1061. "att2"
  1062. ),
  1063. "limit" => 5000,
  1064. "inclusive_start_primary_key" => array (
  1065. "PK1" => 1
  1066. ),
  1067. "exclusive_end_primary_key" => array (
  1068. "PK1" => array (
  1069. 'type' => ColumnTypeConst::CONST_INF_MAX
  1070. )
  1071. ),
  1072. "column_filter" => array (
  1073. "logical_operator" => LogicalOperatorConst::CONST_AND,
  1074. "sub_conditions" => array (
  1075. array (
  1076. "column_name" => "attr1",
  1077. "value" => 10,
  1078. "comparator" => ComparatorTypeConst::CONST_GREATER_THAN
  1079. ),
  1080. array (
  1081. "column_name" => "attr2",
  1082. "value" => "att10001",
  1083. "comparator" => ComparatorTypeConst::CONST_LESS_THAN
  1084. )
  1085. )
  1086. )
  1087. );
  1088. $getRangeRes = $this->otsClient->getRange ($getRange);
  1089. $this->assertNotEmpty ($tables['next_start_primary_key']);
  1090. }
  1091. /**
  1092. * 测试在使用ColumnCondition的过滤条件下以及多重逻辑判读条件下,使用GetRange扫描数据是否成功。
  1093. */
  1094. public function getGetRangeWithMultipleCompositeCondition() {
  1095. global $usedTables;
  1096. for($i = 1; $i < 10001; $i ++) {
  1097. $putdata = array (
  1098. "table_name" => $usedTables[2],
  1099. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  1100. "primary_key" => array (
  1101. "PK1" => $i
  1102. ),
  1103. "attribute_columns" => array (
  1104. "att1" => $i,
  1105. "att2" => "att" . $i
  1106. )
  1107. );
  1108. $this->otsClient->putRow ($putdata);
  1109. }
  1110. $getRange = array (
  1111. "table_name" => $usedTables[2],
  1112. "direction" => DirectionConst::CONST_BACKWARD,
  1113. "columns_to_get" => array (
  1114. "att1",
  1115. "att2"
  1116. ),
  1117. "limit" => 5000,
  1118. "inclusive_start_primary_key" => array (
  1119. "PK1" => 1
  1120. ),
  1121. "exclusive_end_primary_key" => array (
  1122. "PK1" => array (
  1123. 'type' => ColumnTypeConst::CONST_INF_MAX
  1124. )
  1125. ),
  1126. "column_filter" => array (
  1127. "logical_operator" => LogicalOperatorConst::CONST_OR,
  1128. "sub_conditions" => array (
  1129. array (
  1130. "logical_operator" => LogicalOperatorConst::CONST_AND,
  1131. "sub_conditions" => array (
  1132. array (
  1133. "column_name" => "attr1",
  1134. "value" => 10,
  1135. "comparator" => ComparatorTypeConst::CONST_GREATER_THAN
  1136. ),
  1137. array (
  1138. "column_name" => "attr1",
  1139. "value" => 20000,
  1140. "comparator" => ComparatorTypeConst::CONST_LESS_THAN
  1141. )
  1142. )
  1143. ),
  1144. array (
  1145. "logical_operator" => LogicalOperatorConst::CONST_AND,
  1146. "sub_conditions" => array (
  1147. array (
  1148. "column_name" => "attr2",
  1149. "value" => "att1001",
  1150. "comparator" => ComparatorTypeConst::CONST_GREATER_THAN
  1151. ),
  1152. array (
  1153. "column_name" => "attr2",
  1154. "value" => "att1002",
  1155. "comparator" => ComparatorTypeConst::CONST_LESS_EQUAL
  1156. )
  1157. )
  1158. )
  1159. )
  1160. )
  1161. );
  1162. $getRangeRes = $this->otsClient->getRange ($getRange);
  1163. $this->assertNotEmpty ($tables['next_start_primary_key']);
  1164. }
  1165. }