12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202 |
- <?php
- namespace Aliyun\OTS\Tests;
- use Aliyun\OTS;
- use Aliyun\OTS\RowExistenceExpectationConst;
- use Aliyun\OTS\DirectionConst;
- use Aliyun\OTS\ColumnTypeConst;
- require __DIR__ . "/TestBase.php";
- require __DIR__ . "/../../../vendor/autoload.php";
- $usedTables = array (
- "myTable",
- "myTablexx",
- "myTablexx2",
- "myTable1"
- );
- SDKTestBase::cleanUp ($usedTables);
- SDKTestBase::createInitialTable (array (
- "table_meta" => array (
- "table_name" => $usedTables[0],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_INTEGER,
- "PK2" => ColumnTypeConst::CONST_STRING
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- ));
- SDKTestBase::createInitialTable (array (
- "table_meta" => array (
- "table_name" => $usedTables[1],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_INTEGER
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- ));
- SDKTestBase::createInitialTable (array (
- "table_meta" => array (
- "table_name" => $usedTables[2],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_INTEGER
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- ));
- SDKTestBase::createInitialTable (array (
- "table_meta" => array (
- "table_name" => $usedTables[3],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_INTEGER,
- "PK2" => ColumnTypeConst::CONST_STRING,
- "PK3" => ColumnTypeConst::CONST_INTEGER,
- "PK4" => ColumnTypeConst::CONST_STRING
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- ));
- SDKTestBase::waitForTableReady ();
- class GetRangeTest extends SDKTestBase {
-
- /*
- *
- * GetRangeForward
- * 先写入两行,PK分别为1和2,GetRange,方向为Forward,期望顺序得到1和2两行。
- */
- public function testGetRangeForward() {
- global $usedTables;
-
- for($i = 1; $i < 3; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i,
- "PK2" => "a" . $i
- ),
- "attribute_columns" => array (
- "att1" => $i,
- "att2" => "att" . $i
- )
- );
- $this->otsClient->putRow ($tablename);
- }
-
- $getRange = array (
- "table_name" => $usedTables[0],
- "direction" => DirectionConst::CONST_FORWARD,
- "limit" => 10,
- "inclusive_start_primary_key" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => 3,
- "PK2" => "a3"
- )
- );
- $rowone = array (
- "primary_key_columns" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "attribute_columns" => array (
- "att1" => 1,
- "att2" => "att1"
- )
- );
- $rowtwo = array (
- "primary_key_columns" => array (
- "PK1" => 2,
- "PK2" => "a2"
- ),
- "attribute_columns" => array (
- "att1" => 2,
- "att2" => "att2"
- )
- );
- $tables = $this->otsClient->getRange ($getRange);
- $this->assertEmpty ($tables['next_start_primary_key']);
- $this->assertEquals ($tables['rows'][0], $rowone);
- $this->assertEquals ($tables['rows'][1], $rowtwo);
- }
-
- /*
- *
- * GetRangeBackward
- * 先写入两行,PK分别为1和2,GetRange,方向为Backward,期望顺序得到2和1两行。
- */
- public function testGetRangeBackward() {
- global $usedTables;
-
- for($i = 1; $i < 3; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i,
- "PK2" => "a" . $i
- ),
- "attribute_columns" => array (
- "att1" => $i,
- "att2" => "att" . $i
- )
- );
- $this->otsClient->putRow ($tablename);
- }
- $getRange = array (
- "table_name" => $usedTables[0],
- "direction" => DirectionConst::CONST_BACKWARD,
- "limit" => 10,
- "inclusive_start_primary_key" => array (
- "PK1" => 2,
- "PK2" => "a2"
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => 0,
- "PK2" => "a0"
- )
- );
- $rowone = array (
- "primary_key_columns" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "attribute_columns" => array (
- "att1" => 1,
- "att2" => "att1"
- )
- );
- $rowtwo = array (
- "primary_key_columns" => array (
- "PK1" => 2,
- "PK2" => "a2"
- ),
- "attribute_columns" => array (
- "att1" => 2,
- "att2" => "att2"
- )
- );
- $tables = $this->otsClient->getRange ($getRange);
- // print_r($tables);die;
- $this->assertEmpty ($tables['next_start_primary_key']);
- $this->assertEquals ($tables['rows'][0], $rowtwo);
- $this->assertEquals ($tables['rows'][1], $rowone);
- }
-
- /*
- *
- * InfMinInRange
- * 先写入2行,PK分别为1和2,GetRange,方向为Forward,范围为 [INF_MIN, 2) 或者 [1, INF_MIN),期望顺序得到0和1两行,或者返回服务端错误
- */
- public function testInfMinInRange() {
- global $usedTables;
-
- for($i = 1; $i < 3; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i,
- "PK2" => "a" . $i
- ),
- "attribute_columns" => array (
- "att1" => $i,
- "att2" => "att" . $i
- )
- );
- $this->otsClient->putRow ($tablename);
- }
- $getRange = array (
- "table_name" => $usedTables[0],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => array (),
- "limit" => 10,
- "inclusive_start_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MIN
- ),
- "PK2" => array (
- 'type' => ColumnTypeConst::CONST_INF_MIN
- )
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => 10,
- "PK2" => "a10"
- )
- );
- $rowone = array (
- "primary_key_columns" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "attribute_columns" => array (
- "att1" => 1,
- "att2" => "att1"
- )
- );
- $rowtwo = array (
- "primary_key_columns" => array (
- "PK1" => 2,
- "PK2" => "a2"
- ),
- "attribute_columns" => array (
- "att1" => 2,
- "att2" => "att2"
- )
- );
- $tables = $this->otsClient->getRange ($getRange);
- // print_r($tables);die;
- $this->assertEmpty ($tables['next_start_primary_key']);
- $this->assertEquals ($tables['rows'][0], $rowone);
- $this->assertEquals ($tables['rows'][1], $rowtwo);
- }
-
- /*
- *
- * InfMinInRange
- * 先写入2行,PK分别为0, 1和2,GetRange,方向为Backward,范围为 [INF_MAX, 2) 或者 [1, INF_MAX),顺序得到2和1两行
- */
- public function testInfMaxInRange() {
- global $usedTables;
- for($i = 1; $i < 3; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i,
- "PK2" => "a" . $i
- ),
- "attribute_columns" => array (
- "att1" => $i,
- "att2" => "att" . $i
- )
- );
- $this->otsClient->putRow ($tablename);
- }
- $getRange = array (
- "table_name" => $usedTables[0],
- "direction" => DirectionConst::CONST_BACKWARD,
- "limit" => 10,
- "inclusive_start_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- ),
- "PK2" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => 0,
- "PK2" => "a0"
- )
- );
- $rowone = array (
- "primary_key_columns" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "attribute_columns" => array (
- "att1" => 1,
- "att2" => "att1"
- )
- );
- $rowtwo = array (
- "primary_key_columns" => array (
- "PK1" => 2,
- "PK2" => "a2"
- ),
- "attribute_columns" => array (
- "att1" => 2,
- "att2" => "att2"
- )
- );
- $tables = $this->otsClient->getRange ($getRange);
- // print_r($tables);die;
- $this->assertEmpty ($tables['next_start_primary_key']);
- $this->assertEquals ($tables['rows'][0], $rowtwo);
- $this->assertEquals ($tables['rows'][1], $rowone);
- }
-
- /*
- *
- * GetRangeWithDefaultColumnsToGet
- * 先PutRow包含4个主键列,4个属性列,然后GetRange请求ColumnsToGet参数属性列,期望读出所有4个属性列。
- */
- public function testGetRangeWithDefaultColumnsToGet() {
- global $usedTables;
- for($i = 1; $i < 3; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[3],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i,
- "PK2" => "a" . $i,
- "PK3" => $i,
- "PK4" => "b" . $i
- ),
- "attribute_columns" => array (
- "att1" => $i,
- "att2" => "att" . $i,
- "att3" => $i,
- "att4" => "att" . $i
- )
- );
- $this->otsClient->putRow ($tablename);
- }
- $getRange = array (
- "table_name" => $usedTables[3],
- "direction" => DirectionConst::CONST_BACKWARD,
- "columns_to_get" => array (
- "att1",
- "att2",
- "att3",
- "att4"
- ),
- "limit" => 10,
- "inclusive_start_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- ),
- "PK2" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- ),
- "PK3" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- ),
- "PK4" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => 0,
- "PK2" => "a0",
- "PK3" => 1,
- "PK4" => "a0"
- )
- );
- $rowone = // "primary_key_columns" => array("PK1" => 1, "PK2" => "a1"),
- array (
- "att1" => 2,
- "att2" => "att2",
- "att3" => 2,
- "att4" => "att2"
- );
- $rowtwo = // "primary_key_columns" => array("PK1" => 2, "PK2" => "a2"),
- array (
- "att1" => 1,
- "att2" => "att1",
- "att3" => 1,
- "att4" => "att1"
- );
- $tables = $this->otsClient->getRange ($getRange);
- // print_r($tables);die;
- $this->assertEmpty ($tables['next_start_primary_key']);
- $this->assertEmpty ($tables['rows'][0]['primary_key_columns']);
- $this->assertEmpty ($tables['rows'][1]['primary_key_columns']);
- $this->assertEquals ($tables['rows'][0]['attribute_columns'], $rowone);
- $this->assertEquals ($tables['rows'][1]['attribute_columns'], $rowtwo);
- }
-
- /*
- *
- * GetRangeWith0ColumsToGet
- * 先PutRow包含4个主键列,4个属性列,然后GetRange请求ColumnsToGet为空数组,期望读出所有数据。
- */
- public function testGetRangeWith0ColumsToGet() {
- global $usedTables;
- for($i = 1; $i < 3; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[3],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i,
- "PK2" => "a" . $i,
- "PK3" => $i,
- "PK4" => "b" . $i
- ),
- "attribute_columns" => array (
- "att1" => $i,
- "att2" => "att" . $i,
- "att3" => $i,
- "att4" => "att" . $i
- )
- );
- $this->otsClient->putRow ($tablename);
- }
- $getRange = array (
- "table_name" => $usedTables[3],
- "direction" => DirectionConst::CONST_BACKWARD,
- "columns_to_get" => array (),
- "limit" => 10,
- "inclusive_start_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- ),
- "PK2" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- ),
- "PK3" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- ),
- "PK4" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => 0,
- "PK2" => "a0",
- "PK3" => 1,
- "PK4" => "a0"
- )
- );
- $rowone = array (
- "primary_key_columns" => array (
- "PK1" => 1,
- "PK2" => "a1",
- "PK3" => 1,
- "PK4" => "b1"
- ),
- "attribute_columns" => array (
- "att1" => 1,
- "att2" => "att1",
- "att3" => 1,
- "att4" => "att1"
- )
- );
- $rowtwo = array (
- "primary_key_columns" => array (
- "PK1" => 2,
- "PK2" => "a2",
- "PK3" => 2,
- "PK4" => "b2"
- ),
- "attribute_columns" => array (
- "att1" => 2,
- "att2" => "att2",
- "att3" => 2,
- "att4" => "att2"
- )
- );
- $tables = $this->otsClient->getRange ($getRange);
- $this->assertEmpty ($tables['next_start_primary_key']);
- $this->assertEquals ($tables['rows'][0], $rowtwo);
- $this->assertEquals ($tables['rows'][1], $rowone);
- }
-
- /*
- *
- * GetRangeWith4ColumnsToGet
- * 先PutRow包含4个主键列,4个属性列,然后GetRange请求ColumnsToGet包含其中2个主键列,2个属性列,期望返回数据包含参数中指定的列。
- */
- public function testGetRangeWith4ColumnsToGet() {
- global $usedTables;
- for($i = 1; $i < 3; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[3],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i,
- "PK2" => "a" . $i,
- "PK3" => $i,
- "PK4" => "b" . $i
- ),
- "attribute_columns" => array (
- "att1" => $i,
- "att2" => "att" . $i,
- "att3" => $i,
- "att4" => "att" . $i
- )
- );
- $this->otsClient->putRow ($tablename);
- }
- $getRange = array (
- "table_name" => $usedTables[3],
- "direction" => DirectionConst::CONST_BACKWARD,
- "columns_to_get" => array (
- "PK1",
- "PK2",
- "att1",
- "att2"
- ),
- "limit" => 10,
- "inclusive_start_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- ),
- "PK2" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- ),
- "PK3" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- ),
- "PK4" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => 0,
- "PK2" => "a0",
- "PK3" => 1,
- "PK4" => "a0"
- )
- );
- $rowone = array (
- "primary_key_columns" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "attribute_columns" => array (
- "att1" => 1,
- "att2" => "att1"
- )
- );
- $rowtwo = array (
- "primary_key_columns" => array (
- "PK1" => 2,
- "PK2" => "a2"
- ),
- "attribute_columns" => array (
- "att1" => 2,
- "att2" => "att2"
- )
- );
- $tables = $this->otsClient->getRange ($getRange);
- $this->assertEmpty ($tables['next_start_primary_key']);
- $this->assertEquals ($tables['rows'][0], $rowtwo);
- $this->assertEquals ($tables['rows'][1], $rowone);
- }
-
- /*
- *
- * GetRangeWith1000ColumnsToGet
- * GetRange请求ColumnsToGet包含1000个不重复的列名,期望返回服务端错误?
- */
- public function testGetRangeWith1000ColumnsToGet() {
- global $usedTables;
- for($i = 1; $i < 3; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i,
- "PK2" => "a" . $i
- ),
- "attribute_columns" => array (
- "att1" => $i,
- "att2" => "att" . $i
- )
- );
- $this->otsClient->putRow ($tablename);
- }
- for($i = 0; $i < 1001; $i ++) {
- $a[] = 'a' . $i;
- }
- $getRange = array (
- "table_name" => $usedTables[0],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => $a,
- "limit" => 10,
- "inclusive_start_primary_key" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => 3,
- "PK2" => "a3"
- )
- );
-
- $this->otsClient->getRange ($getRange);
- }
-
- /*
- *
- * GetRangeWithDuplicateColumnsToGet
- * GetRange请求ColumnsToGet包含2个重复的列名,成功读取指定信息
- */
- public function testGetRangeWithDuplicateColumnsToGet() {
- global $usedTables;
- for($i = 1; $i < 3; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i,
- "PK2" => "a" . $i
- ),
- "attribute_columns" => array (
- "att1" => $i,
- "att2" => "att" . $i
- )
- );
- $this->otsClient->putRow ($tablename);
- }
- $getRange = array (
- "table_name" => $usedTables[0],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => array (
- "att1",
- "att1"
- ),
- "limit" => 10,
- "inclusive_start_primary_key" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => 3,
- "PK2" => "a3"
- )
- );
- $tables = $this->otsClient->getRange ($getRange);
- $this->assertEmpty ($tables['next_start_primary_key']);
- $this->assertEmpty ($tables['rows'][0]['primary_key_columns']);
- $this->assertEmpty ($tables['rows'][1]['primary_key_columns']);
- $this->assertEquals ($tables['rows'][0]['attribute_columns']['att1'], 1);
- $this->assertEquals ($tables['rows'][1]['attribute_columns']['att1'], 2);
- }
-
- /*
- *
- * GetRangeWithLimit10
- * 先写入20行,GetRange Limit=10,期望返回10行,并校验 NextPK。
- */
- public function testGetRangeWithLimit10() {
- global $usedTables;
- for($i = 1; $i < 21; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i,
- "PK2" => "a" . $i
- ),
- "attribute_columns" => array (
- "att1" => $i
- )
- );
- $this->otsClient->putRow ($tablename);
- }
- $getRange = array (
- "table_name" => $usedTables[0],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => array (),
- "limit" => 10,
- "inclusive_start_primary_key" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- ),
- "PK2" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- )
- );
- $tables = $this->otsClient->getRange ($getRange);
- for($i = 1; $i < 11; $i ++) {
- $row[] = array (
- "primary_key_columns" => array (
- "PK1" => $i,
- "PK2" => "a" . $i
- ),
- "attribute_columns" => array (
- "att1" => $i
- )
- );
- }
- for($i = 0; $i < count ($tables['rows']); $i ++) {
- $this->assertEquals ($tables['rows'][$i], $row[$i]);
- }
- $primary = array (
- "PK1" => 11,
- "PK2" => "a11"
- );
- $this->assertEquals ($tables['next_start_primary_key'], $primary);
- $this->assertEquals (count ($tables['rows']), 10);
- }
-
- /*
- *
- * GetRangeIteratorWith1Row
- * GetRangeIterator 返回1行的情况。
- */
- public function testGetRangeIteratorWith1Row() {
- global $usedTables;
- for($i = 1; $i < 2; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i,
- "PK2" => "a" . $i
- ),
- "attribute_columns" => array (
- "att1" => $i
- )
- );
- $this->otsClient->putRow ($tablename);
- }
- $getRange = array (
- "table_name" => $usedTables[0],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => array (),
- "limit" => 1,
- "inclusive_start_primary_key" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- ),
- "PK2" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- )
- );
- $tables = $this->otsClient->getRange ($getRange);
- $row = array (
- "primary_key_columns" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "attribute_columns" => array (
- "att1" => 1
- )
- );
- $this->assertEquals ($tables['rows'][0], $row);
- }
-
- /*
- * TableNameOfZeroLength
- * 表名长度为0的情况,期望返回错误消息:Invalid table name: ''. 中包含的TableName与输入一致
- */
- public function testTableNameOfZeroLength() {
- $tablebody = array (
- "table_meta" => array (
- "table_name" => "",
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_STRING,
- "PK2" => ColumnTypeConst::CONST_INTEGER,
- "PK3" => ColumnTypeConst::CONST_STRING,
- "PK4" => ColumnTypeConst::CONST_INTEGER
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
- try {
- $this->otsClient->createTable ($tablebody);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "Invalid table name: ''.";
- $this->assertEquals ($c, $exc->getOTSErrorMessage ());
- }
- }
-
- /*
- * TableNameWithUnicode
- * 表名包含Unicode,期望返回错误信息:Invalid table name: '{TableName}'. 中包含的TableName与输入一致
- */
- public function testTableNameWithUnicode() {
- $tablebody = array (
- "table_meta" => array (
- "table_name" => "testU+0053",
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_STRING,
- "PK2" => ColumnTypeConst::CONST_INTEGER,
- "PK3" => ColumnTypeConst::CONST_STRING,
- "PK4" => ColumnTypeConst::CONST_INTEGER
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
- try {
- $this->otsClient->createTable ($tablebody);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "Invalid table name: '{$tablebody['table_meta']['table_name']}'.";
- $this->assertEquals ($c, $exc->getOTSErrorMessage ());
- }
- }
-
- /*
- *
- * GetRangeIteratorWith5000Rows
- * GetRangeIterator 返回5000行的情况,这时正好不发生第二次GetRange。
- */
- public function testGetRangeIteratorWith5000Rows() {
- global $usedTables;
- for($i = 1; $i < 5001; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[1],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i
- ),
- "attribute_columns" => array ()
- );
- $this->otsClient->putRow ($tablename);
- }
- $getRange = array (
- "table_name" => $usedTables[1],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => array (),
- "limit" => 5000,
- "inclusive_start_primary_key" => array (
- "PK1" => 1
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- )
- );
- $tables = $this->otsClient->getRange ($getRange);
- $this->assertEmpty ($tables['next_start_primary_key']);
- }
-
- /*
- *
- * GetRangeIteratorWith5001Rows
- * GetRangeIterator 返回5001行的情况,这时正好发生第二次GetRange。
- */
- public function testGetRangeIteratorWith5001Rows() {
- global $usedTables;
- for($i = 1; $i < 5002; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[1],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i
- ),
- "attribute_columns" => array ()
- );
- $this->otsClient->putRow ($tablename);
- }
- $getRange = array (
- "table_name" => $usedTables[1],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => array (),
- "limit" => 5000,
- "inclusive_start_primary_key" => array (
- "PK1" => 1
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- )
- );
- $tables = $this->otsClient->getRange ($getRange);
- $this->assertNotEmpty ($tables['next_start_primary_key']);
- }
-
- /*
- *
- * GetRangeIteratorWith15001Rows
- * GetRangeIterator 返回15001行的情况,这时共发生4次GetRange。
- */
- public function testGetRangeIteratorWith15001Rows() {
- global $usedTables;
- for($i = 1; $i < 15001; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[1],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i
- ),
- "attribute_columns" => array ()
- );
- $this->otsClient->putRow ($tablename);
- }
- $getRange = array (
- "table_name" => $usedTables[1],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => array (),
- "limit" => 5000,
- "inclusive_start_primary_key" => array (
- "PK1" => 1
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- )
- );
- $this->otsClient->getRange ($getRange);
- $getRange1 = array (
- "table_name" => $usedTables[1],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => array (),
- "limit" => 5000,
- "inclusive_start_primary_key" => array (
- "PK1" => 5001
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- )
- );
- $this->otsClient->getRange ($getRange1);
- $getRange2 = array (
- "table_name" => $usedTables[1],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => array (),
- "limit" => 5000,
- "inclusive_start_primary_key" => array (
- "PK1" => 10001
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- )
- );
- $this->otsClient->getRange ($getRange2);
- $getRange3 = array (
- "table_name" => $usedTables[1],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => array (),
- "limit" => 5000,
- "inclusive_start_primary_key" => array (
- "PK1" => 15001
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- )
- );
- $tables = $this->otsClient->getRange ($getRange3);
- $this->assertEmpty ($tables['next_start_primary_key']);
- }
-
- /*
- *
- * GetRangeWithDefaultLimit
- * 先写入10000行,GetRange Limit为默认,期望2次返回全部行。
- */
- public function testGetRangeWithDefaultLimit() {
- global $usedTables;
- for($i = 1; $i < 10001; $i ++) {
- $tablename = array (
- "table_name" => $usedTables[2],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i
- ),
- "attribute_columns" => array ()
- );
- $this->otsClient->putRow ($tablename);
- }
- $getRange = array (
- "table_name" => $usedTables[2],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => array (),
- "limit" => 5000,
- "inclusive_start_primary_key" => array (
- "PK1" => 1
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- )
- );
- $this->otsClient->getRange ($getRange);
- // $primary = array("PK1" => 5001);
- // $this->assertEquals($tables['next_start_primary_key'], $primary);
- $getRange1 = array (
- "table_name" => $usedTables[2],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => array (),
- "limit" => 5000,
- "inclusive_start_primary_key" => array (
- "PK1" => 5001
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- )
- );
- $tables = $this->otsClient->getRange ($getRange1);
- $this->assertEmpty ($tables['next_start_primary_key']);
- }
-
- /**
- * 测试在使用ColumnCondition的过滤条件下,使用GetRange扫描数据是否成功。
- */
- public function getGetRangeWithSingleCompositeCondition() {
- global $usedTables;
- for($i = 1; $i < 10001; $i ++) {
- $putdata = array (
- "table_name" => $usedTables[2],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i
- ),
- "attribute_columns" => array (
- "att1" => $i,
- "att2" => "att" . $i
- )
- );
- $this->otsClient->putRow ($putdata);
- }
-
- $getRange = array (
- "table_name" => $usedTables[2],
- "direction" => DirectionConst::CONST_FORWARD,
- "columns_to_get" => array (
- "att1",
- "att2"
- ),
- "limit" => 5000,
- "inclusive_start_primary_key" => array (
- "PK1" => 1
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- ),
- "column_filter" => array (
- "logical_operator" => LogicalOperatorConst::CONST_AND,
- "sub_conditions" => array (
- array (
- "column_name" => "attr1",
- "value" => 10,
- "comparator" => ComparatorTypeConst::CONST_GREATER_THAN
- ),
- array (
- "column_name" => "attr2",
- "value" => "att10001",
- "comparator" => ComparatorTypeConst::CONST_LESS_THAN
- )
- )
- )
- );
- $getRangeRes = $this->otsClient->getRange ($getRange);
- $this->assertNotEmpty ($tables['next_start_primary_key']);
- }
-
- /**
- * 测试在使用ColumnCondition的过滤条件下以及多重逻辑判读条件下,使用GetRange扫描数据是否成功。
- */
- public function getGetRangeWithMultipleCompositeCondition() {
- global $usedTables;
- for($i = 1; $i < 10001; $i ++) {
- $putdata = array (
- "table_name" => $usedTables[2],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => $i
- ),
- "attribute_columns" => array (
- "att1" => $i,
- "att2" => "att" . $i
- )
- );
- $this->otsClient->putRow ($putdata);
- }
-
- $getRange = array (
- "table_name" => $usedTables[2],
- "direction" => DirectionConst::CONST_BACKWARD,
- "columns_to_get" => array (
- "att1",
- "att2"
- ),
- "limit" => 5000,
- "inclusive_start_primary_key" => array (
- "PK1" => 1
- ),
- "exclusive_end_primary_key" => array (
- "PK1" => array (
- 'type' => ColumnTypeConst::CONST_INF_MAX
- )
- ),
- "column_filter" => array (
- "logical_operator" => LogicalOperatorConst::CONST_OR,
- "sub_conditions" => array (
- array (
- "logical_operator" => LogicalOperatorConst::CONST_AND,
- "sub_conditions" => array (
- array (
- "column_name" => "attr1",
- "value" => 10,
- "comparator" => ComparatorTypeConst::CONST_GREATER_THAN
- ),
- array (
- "column_name" => "attr1",
- "value" => 20000,
- "comparator" => ComparatorTypeConst::CONST_LESS_THAN
- )
- )
- ),
- array (
- "logical_operator" => LogicalOperatorConst::CONST_AND,
- "sub_conditions" => array (
- array (
- "column_name" => "attr2",
- "value" => "att1001",
- "comparator" => ComparatorTypeConst::CONST_GREATER_THAN
- ),
- array (
- "column_name" => "attr2",
- "value" => "att1002",
- "comparator" => ComparatorTypeConst::CONST_LESS_EQUAL
- )
- )
- )
- )
- )
- );
- $getRangeRes = $this->otsClient->getRange ($getRange);
- $this->assertNotEmpty ($tables['next_start_primary_key']);
- }
- }
|