123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427 |
- <?php
- namespace Aliyun\OTS\Tests;
- use Aliyun\OTS;
- use Aliyun\OTS\ComparatorTypeConst;
- use Aliyun\OTS\RowExistenceExpectationConst;
- use Aliyun\OTS\ColumnTypeConst;
- require __DIR__ . "/TestBase.php";
- require __DIR__ . "/../../../vendor/autoload.php";
- $usedTables = array (
- "myTable"
- );
- 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::waitForTableReady ();
- class UpdateRowTest extends SDKTestBase {
-
- /*
- *
- * PutOnlyInUpdateRow
- * UpdateRow包含4个属性列的put操作的情况。
- */
- public function testPutOnlyInUpdateRow() {
- global $usedTables;
- $updateRow = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "attribute_columns_to_put" => array (
- "att1" => 'Zhon',
- "att2" => 256,
- "att3" => "cc",
- "att4" => 123
- )
- );
- $this->otsClient->updateRow ($updateRow);
- $body = array (
- "table_name" => $usedTables[0],
- "primary_key" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "columns_to_get" => array ()
- );
- $getrow = $this->otsClient->getRow ($body);
-
- // print_r($updateRow['attribute_columns_to_put']);
- // print_r($getrow);
- // die;
- $this->assertEquals ($getrow['row']['attribute_columns'], $updateRow['attribute_columns_to_put']);
- }
-
- /*
- * DeleteOnlyInUpdateRow
- * UpdateRow包含4个属性列的delete操作的情况。
- */
- public function testDeleteOnlyInUpdateRow() {
- global $usedTables;
- $tablename = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "attribute_columns" => array (
- "test1" => "name1",
- "test2" => 256,
- "test3" => "name2",
- "test4" => "name3"
- )
- );
- $this->otsClient->putRow ($tablename);
- $updateRow = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "attribute_columns_to_delete" => array (
- "att1",
- "att2",
- "att3",
- "att4"
- )
- );
- $this->otsClient->updateRow ($updateRow);
- $body = array (
- "table_name" => $usedTables[0],
- "primary_key" => array (
- "PK1" => 1,
- "PK2" => "a1"
- ),
- "columns_to_get" => array ()
- );
- $getrow = $this->otsClient->getRow ($body);
- // print_r($getrow);die;
- $this->assertArrayNotHasKey ("att1", $getrow['row']['attribute_columns']);
- $this->assertArrayNotHasKey ("att2", $getrow['row']['attribute_columns']);
- $this->assertArrayNotHasKey ("att3", $getrow['row']['attribute_columns']);
- $this->assertArrayNotHasKey ("att4", $getrow['row']['attribute_columns']);
- }
-
- /*
- * EmptyUpdateRow
- * UpdateRow没有包含任何操作的情况
- */
- public function testEmptyUpdateRow() {
- global $usedTables;
- $updateRow = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => 3,
- "PK2" => "a3"
- ),
- "attribute_columns_to_put" => array (),
- "attribute_columns_to_put" => array ()
- );
- try {
- $this->otsClient->updateRow ($updateRow);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "No column specified while updating row.";
- $this->assertEquals ($c, $exc->getOTSErrorMessage ());
- }
- }
-
- /*
- * 4PutAnd4DeleteInUpdateRow
- * UpdateRow中包含4个put操作和4个delete操作的情况。
- */
- public function testPutAndDelete4InUpdateRow() {
- global $usedTables;
-
- $updateRow = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => 3,
- "PK2" => "a3"
- ),
- "attribute_columns_to_put" => array (
- "att5" => "cc",
- "att6" => "Zhon",
- "att7" => 1,
- "att8" => 123
- ),
- "attribute_columns_to_delete" => array (
- "att1",
- "att2",
- "att3",
- "att4"
- )
- );
- $this->otsClient->updateRow ($updateRow);
- $body = array (
- "table_name" => $usedTables[0],
- "primary_key" => array (
- "PK1" => 3,
- "PK2" => "a3"
- )
- );
- $getrow = $this->otsClient->getRow ($body);
- $this->assertEquals ($updateRow['attribute_columns_to_put'], $getrow['row']['attribute_columns']);
- // $getrowlist = $this->otsClient->getRow($body);
- }
-
- /*
- * DuplicateDeleteInUpdateRow
- * UpdateRow中包含2个delete操作列名相同的情况,期望返回服务端错误 Duplicated attribute column name: 'att1' while updating row.
- */
- public function testDuplicateDeleteInUpdateRow() {
- global $usedTables;
- $updateRow = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => 3,
- "PK2" => "a3"
- ),
- "attribute_columns_to_put" => array (
- "att1" => "cc"
- ),
- "attribute_columns_to_delete" => array (
- "att1"
- )
- );
- try {
- $this->otsClient->updateRow ($updateRow);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "Duplicated attribute column name: 'att1' while updating row.";
- $this->assertEquals ($c, $exc->getOTSErrorMessage ());
- }
- }
-
- /*
- * PutAndDelete1000InUpdateRow
- * UpdateRow中包含1000个put和1000个delete的情况,期望返回服务端错误 The number of columns from the request exceeded the limit.
- */
- public function testPutAndDelete1000InUpdateRow() {
- global $usedTables;
- for($i = 1; $i < 1001; $i ++) {
- $put['a' . $i] = "cc" . $i;
- $delete[] = 'aa' . $i;
- }
- $updateRow = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => 3,
- "PK2" => "a3"
- ),
- "attribute_columns_to_put" => $put,
- "attribute_columns_to_delete" => $delete
- );
- try {
- $this->otsClient->updateRow ($updateRow);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "The number of columns from the request exceeded the limit.";
- $this->assertEquals ($c, $exc->getOTSErrorMessage ());
- }
- }
-
- /*
- * 上面测试已近包含
- * IgnoreConditionWhenRowNotExist
- * 测试行不存在的条件下,写操作的Condition为IGNORE,期望操作成功。
- * IgnoreConditionWhenRowExist
- * 测试行不存在的条件下,写操作的Condition为IGNORE,期望操作成功。
- */
-
- // ============================================================================//
- /*
- * ExpectExistConditionWhenRowNotExist
- * 测试行不存在的条件下,写操作的Condition为EXPECT_EXIST,期望服务端返回 Invalid Condition。
- */
- public function testExpectExistConditionWhenRowNotExist() {
- global $usedTables;
- $updateRow = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_EXPECT_EXIST,
- "primary_key" => array (
- "PK1" => 30,
- "PK2" => "a30"
- ),
- "attribute_columns_to_put" => array (
- "att1" => "cc"
- ),
- "attribute_columns_to_delete" => array (
- "att2"
- )
- );
- // print_r($this->otsClient->updateRow($updateRow));die;
- try {
- $this->otsClient->updateRow ($updateRow);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "Condition check failed.";
- $this->assertEquals ($c, $exc->getOTSErrorMessage ());
- }
- }
-
- /*
- * ExpectExistConditionWhenRowExist
- * 测试行存在的条件下,写操作的Condition为EXPECT_EXIST,期望操作成功。
- */
- public function testExpectExistConditionWhenRowExist() {
- global $usedTables;
- $tablename = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => 100,
- "PK2" => "a100"
- ),
- "attribute_columns" => array (
- "test1" => "name1",
- "test2" => 256,
- "test3" => "name2",
- "test4" => "name3"
- )
- );
- $this->otsClient->putRow ($tablename);
- $updateRow = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_EXPECT_EXIST,
- "primary_key" => array (
- "PK1" => 100,
- "PK2" => "a100"
- ),
- "attribute_columns_to_put" => array (
- "test1" => "cc"
- ),
- "attribute_columns_to_delete" => array (
- "att2"
- )
- );
- $this->otsClient->updateRow ($updateRow);
- // print_r($a);die;
- $body = array (
- "table_name" => $usedTables[0],
- "primary_key" => array (
- "PK1" => 100,
- "PK2" => "a100"
- ),
- "columns_to_get" => array ()
- );
- $c = $this->otsClient->getRow ($body);
- $this->assertEquals ($c['row']['attribute_columns']['test1'], $updateRow['attribute_columns_to_put']['test1']);
- }
-
- /**
- * 测试在使用ColumnCondition的情况下,更新数据行是否成功。
- */
- public function testUpdateRowWithColumnCondition() {
- global $usedTables;
- $put_query = array (
- "table_name" => $usedTables[0],
- "condition" => RowExistenceExpectationConst::CONST_IGNORE,
- "primary_key" => array (
- "PK1" => 100,
- "PK2" => "a100"
- ),
- "attribute_columns" => array (
- "test1" => "name1",
- "test2" => 256,
- "test3" => "name2",
- "test4" => "name3"
- )
- );
- $this->otsClient->putRow ($put_query);
-
- $update_query = array (
- "table_name" => $usedTables[0],
- "condition" => array (
- "row_existence" => RowExistenceExpectationConst::CONST_EXPECT_EXIST,
- "column_filter" => array (
- "column_name" => "test1",
- "value" => "name1",
- "comparator" => ComparatorTypeConst::CONST_EQUAL
- )
- ),
- "primary_key" => array (
- "PK1" => 100,
- "PK2" => "a100"
- ),
- "attribute_columns_to_put" => array (
- "test5" => "cc"
- )
- );
- $this->otsClient->updateRow ($update_query);
-
- $get_query = array (
- "table_name" => $usedTables[0],
- "primary_key" => array (
- "PK1" => 100,
- "PK2" => "a100"
- ),
- "columns_to_get" => array (
- "test1",
- "test2",
- "test3",
- "test4",
- "test5"
- )
- );
- $get_row_res = $this->otsClient->getRow ($get_query);
- $this->assertEquals ($get_row_res['row']['attribute_columns']['test1'], "name1");
- $this->assertEquals ($get_row_res['row']['attribute_columns']['test2'], 256);
- $this->assertEquals ($get_row_res['row']['attribute_columns']['test3'], "name2");
- $this->assertEquals ($get_row_res['row']['attribute_columns']['test4'], "name3");
- $this->assertEquals ($get_row_res['row']['attribute_columns']['test5'], "cc");
-
- $update_query2 = array (
- "table_name" => $usedTables[0],
- "condition" => array (
- "row_existence" => RowExistenceExpectationConst::CONST_EXPECT_EXIST,
- "column_filter" => array (
- "column_name" => "test1",
- "value" => "name1",
- "comparator" => ComparatorTypeConst::CONST_NOT_EQUAL
- )
- ),
- "primary_key" => array (
- "PK1" => 100,
- "PK2" => "a100"
- ),
- "attribute_columns_to_put" => array (
- "test6" => "ddcc"
- )
- );
- try {
- $this->otsClient->updateRow ($update_query2);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "Condition check failed.";
- $this->assertEquals ( $c, $exc->getOTSErrorMessage () );
- }
- }
- }
|