UpdateRowTest.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. <?php
  2. namespace Aliyun\OTS\Tests;
  3. use Aliyun\OTS;
  4. use Aliyun\OTS\ComparatorTypeConst;
  5. use Aliyun\OTS\RowExistenceExpectationConst;
  6. use Aliyun\OTS\ColumnTypeConst;
  7. require __DIR__ . "/TestBase.php";
  8. require __DIR__ . "/../../../vendor/autoload.php";
  9. $usedTables = array (
  10. "myTable"
  11. );
  12. SDKTestBase::cleanUp ($usedTables);
  13. SDKTestBase::createInitialTable (array (
  14. "table_meta" => array (
  15. "table_name" => $usedTables[0],
  16. "primary_key_schema" => array (
  17. "PK1" => ColumnTypeConst::CONST_INTEGER,
  18. "PK2" => ColumnTypeConst::CONST_STRING
  19. )
  20. ),
  21. "reserved_throughput" => array (
  22. "capacity_unit" => array (
  23. "read" => 0,
  24. "write" => 0
  25. )
  26. )
  27. ));
  28. SDKTestBase::waitForTableReady ();
  29. class UpdateRowTest extends SDKTestBase {
  30. /*
  31. *
  32. * PutOnlyInUpdateRow
  33. * UpdateRow包含4个属性列的put操作的情况。
  34. */
  35. public function testPutOnlyInUpdateRow() {
  36. global $usedTables;
  37. $updateRow = array (
  38. "table_name" => $usedTables[0],
  39. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  40. "primary_key" => array (
  41. "PK1" => 1,
  42. "PK2" => "a1"
  43. ),
  44. "attribute_columns_to_put" => array (
  45. "att1" => 'Zhon',
  46. "att2" => 256,
  47. "att3" => "cc",
  48. "att4" => 123
  49. )
  50. );
  51. $this->otsClient->updateRow ($updateRow);
  52. $body = array (
  53. "table_name" => $usedTables[0],
  54. "primary_key" => array (
  55. "PK1" => 1,
  56. "PK2" => "a1"
  57. ),
  58. "columns_to_get" => array ()
  59. );
  60. $getrow = $this->otsClient->getRow ($body);
  61. // print_r($updateRow['attribute_columns_to_put']);
  62. // print_r($getrow);
  63. // die;
  64. $this->assertEquals ($getrow['row']['attribute_columns'], $updateRow['attribute_columns_to_put']);
  65. }
  66. /*
  67. * DeleteOnlyInUpdateRow
  68. * UpdateRow包含4个属性列的delete操作的情况。
  69. */
  70. public function testDeleteOnlyInUpdateRow() {
  71. global $usedTables;
  72. $tablename = array (
  73. "table_name" => $usedTables[0],
  74. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  75. "primary_key" => array (
  76. "PK1" => 1,
  77. "PK2" => "a1"
  78. ),
  79. "attribute_columns" => array (
  80. "test1" => "name1",
  81. "test2" => 256,
  82. "test3" => "name2",
  83. "test4" => "name3"
  84. )
  85. );
  86. $this->otsClient->putRow ($tablename);
  87. $updateRow = array (
  88. "table_name" => $usedTables[0],
  89. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  90. "primary_key" => array (
  91. "PK1" => 1,
  92. "PK2" => "a1"
  93. ),
  94. "attribute_columns_to_delete" => array (
  95. "att1",
  96. "att2",
  97. "att3",
  98. "att4"
  99. )
  100. );
  101. $this->otsClient->updateRow ($updateRow);
  102. $body = array (
  103. "table_name" => $usedTables[0],
  104. "primary_key" => array (
  105. "PK1" => 1,
  106. "PK2" => "a1"
  107. ),
  108. "columns_to_get" => array ()
  109. );
  110. $getrow = $this->otsClient->getRow ($body);
  111. // print_r($getrow);die;
  112. $this->assertArrayNotHasKey ("att1", $getrow['row']['attribute_columns']);
  113. $this->assertArrayNotHasKey ("att2", $getrow['row']['attribute_columns']);
  114. $this->assertArrayNotHasKey ("att3", $getrow['row']['attribute_columns']);
  115. $this->assertArrayNotHasKey ("att4", $getrow['row']['attribute_columns']);
  116. }
  117. /*
  118. * EmptyUpdateRow
  119. * UpdateRow没有包含任何操作的情况
  120. */
  121. public function testEmptyUpdateRow() {
  122. global $usedTables;
  123. $updateRow = array (
  124. "table_name" => $usedTables[0],
  125. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  126. "primary_key" => array (
  127. "PK1" => 3,
  128. "PK2" => "a3"
  129. ),
  130. "attribute_columns_to_put" => array (),
  131. "attribute_columns_to_put" => array ()
  132. );
  133. try {
  134. $this->otsClient->updateRow ($updateRow);
  135. $this->fail ('An expected exception has not been raised.');
  136. } catch (\Aliyun\OTS\OTSServerException $exc) {
  137. $c = "No column specified while updating row.";
  138. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  139. }
  140. }
  141. /*
  142. * 4PutAnd4DeleteInUpdateRow
  143. * UpdateRow中包含4个put操作和4个delete操作的情况。
  144. */
  145. public function testPutAndDelete4InUpdateRow() {
  146. global $usedTables;
  147. $updateRow = array (
  148. "table_name" => $usedTables[0],
  149. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  150. "primary_key" => array (
  151. "PK1" => 3,
  152. "PK2" => "a3"
  153. ),
  154. "attribute_columns_to_put" => array (
  155. "att5" => "cc",
  156. "att6" => "Zhon",
  157. "att7" => 1,
  158. "att8" => 123
  159. ),
  160. "attribute_columns_to_delete" => array (
  161. "att1",
  162. "att2",
  163. "att3",
  164. "att4"
  165. )
  166. );
  167. $this->otsClient->updateRow ($updateRow);
  168. $body = array (
  169. "table_name" => $usedTables[0],
  170. "primary_key" => array (
  171. "PK1" => 3,
  172. "PK2" => "a3"
  173. )
  174. );
  175. $getrow = $this->otsClient->getRow ($body);
  176. $this->assertEquals ($updateRow['attribute_columns_to_put'], $getrow['row']['attribute_columns']);
  177. // $getrowlist = $this->otsClient->getRow($body);
  178. }
  179. /*
  180. * DuplicateDeleteInUpdateRow
  181. * UpdateRow中包含2个delete操作列名相同的情况,期望返回服务端错误 Duplicated attribute column name: 'att1' while updating row.
  182. */
  183. public function testDuplicateDeleteInUpdateRow() {
  184. global $usedTables;
  185. $updateRow = array (
  186. "table_name" => $usedTables[0],
  187. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  188. "primary_key" => array (
  189. "PK1" => 3,
  190. "PK2" => "a3"
  191. ),
  192. "attribute_columns_to_put" => array (
  193. "att1" => "cc"
  194. ),
  195. "attribute_columns_to_delete" => array (
  196. "att1"
  197. )
  198. );
  199. try {
  200. $this->otsClient->updateRow ($updateRow);
  201. $this->fail ('An expected exception has not been raised.');
  202. } catch (\Aliyun\OTS\OTSServerException $exc) {
  203. $c = "Duplicated attribute column name: 'att1' while updating row.";
  204. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  205. }
  206. }
  207. /*
  208. * PutAndDelete1000InUpdateRow
  209. * UpdateRow中包含1000个put和1000个delete的情况,期望返回服务端错误 The number of columns from the request exceeded the limit.
  210. */
  211. public function testPutAndDelete1000InUpdateRow() {
  212. global $usedTables;
  213. for($i = 1; $i < 1001; $i ++) {
  214. $put['a' . $i] = "cc" . $i;
  215. $delete[] = 'aa' . $i;
  216. }
  217. $updateRow = array (
  218. "table_name" => $usedTables[0],
  219. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  220. "primary_key" => array (
  221. "PK1" => 3,
  222. "PK2" => "a3"
  223. ),
  224. "attribute_columns_to_put" => $put,
  225. "attribute_columns_to_delete" => $delete
  226. );
  227. try {
  228. $this->otsClient->updateRow ($updateRow);
  229. $this->fail ('An expected exception has not been raised.');
  230. } catch (\Aliyun\OTS\OTSServerException $exc) {
  231. $c = "The number of columns from the request exceeded the limit.";
  232. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  233. }
  234. }
  235. /*
  236. * 上面测试已近包含
  237. * IgnoreConditionWhenRowNotExist
  238. * 测试行不存在的条件下,写操作的Condition为IGNORE,期望操作成功。
  239. * IgnoreConditionWhenRowExist
  240. * 测试行不存在的条件下,写操作的Condition为IGNORE,期望操作成功。
  241. */
  242. // ============================================================================//
  243. /*
  244. * ExpectExistConditionWhenRowNotExist
  245. * 测试行不存在的条件下,写操作的Condition为EXPECT_EXIST,期望服务端返回 Invalid Condition。
  246. */
  247. public function testExpectExistConditionWhenRowNotExist() {
  248. global $usedTables;
  249. $updateRow = array (
  250. "table_name" => $usedTables[0],
  251. "condition" => RowExistenceExpectationConst::CONST_EXPECT_EXIST,
  252. "primary_key" => array (
  253. "PK1" => 30,
  254. "PK2" => "a30"
  255. ),
  256. "attribute_columns_to_put" => array (
  257. "att1" => "cc"
  258. ),
  259. "attribute_columns_to_delete" => array (
  260. "att2"
  261. )
  262. );
  263. // print_r($this->otsClient->updateRow($updateRow));die;
  264. try {
  265. $this->otsClient->updateRow ($updateRow);
  266. $this->fail ('An expected exception has not been raised.');
  267. } catch (\Aliyun\OTS\OTSServerException $exc) {
  268. $c = "Condition check failed.";
  269. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  270. }
  271. }
  272. /*
  273. * ExpectExistConditionWhenRowExist
  274. * 测试行存在的条件下,写操作的Condition为EXPECT_EXIST,期望操作成功。
  275. */
  276. public function testExpectExistConditionWhenRowExist() {
  277. global $usedTables;
  278. $tablename = array (
  279. "table_name" => $usedTables[0],
  280. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  281. "primary_key" => array (
  282. "PK1" => 100,
  283. "PK2" => "a100"
  284. ),
  285. "attribute_columns" => array (
  286. "test1" => "name1",
  287. "test2" => 256,
  288. "test3" => "name2",
  289. "test4" => "name3"
  290. )
  291. );
  292. $this->otsClient->putRow ($tablename);
  293. $updateRow = array (
  294. "table_name" => $usedTables[0],
  295. "condition" => RowExistenceExpectationConst::CONST_EXPECT_EXIST,
  296. "primary_key" => array (
  297. "PK1" => 100,
  298. "PK2" => "a100"
  299. ),
  300. "attribute_columns_to_put" => array (
  301. "test1" => "cc"
  302. ),
  303. "attribute_columns_to_delete" => array (
  304. "att2"
  305. )
  306. );
  307. $this->otsClient->updateRow ($updateRow);
  308. // print_r($a);die;
  309. $body = array (
  310. "table_name" => $usedTables[0],
  311. "primary_key" => array (
  312. "PK1" => 100,
  313. "PK2" => "a100"
  314. ),
  315. "columns_to_get" => array ()
  316. );
  317. $c = $this->otsClient->getRow ($body);
  318. $this->assertEquals ($c['row']['attribute_columns']['test1'], $updateRow['attribute_columns_to_put']['test1']);
  319. }
  320. /**
  321. * 测试在使用ColumnCondition的情况下,更新数据行是否成功。
  322. */
  323. public function testUpdateRowWithColumnCondition() {
  324. global $usedTables;
  325. $put_query = array (
  326. "table_name" => $usedTables[0],
  327. "condition" => RowExistenceExpectationConst::CONST_IGNORE,
  328. "primary_key" => array (
  329. "PK1" => 100,
  330. "PK2" => "a100"
  331. ),
  332. "attribute_columns" => array (
  333. "test1" => "name1",
  334. "test2" => 256,
  335. "test3" => "name2",
  336. "test4" => "name3"
  337. )
  338. );
  339. $this->otsClient->putRow ($put_query);
  340. $update_query = array (
  341. "table_name" => $usedTables[0],
  342. "condition" => array (
  343. "row_existence" => RowExistenceExpectationConst::CONST_EXPECT_EXIST,
  344. "column_filter" => array (
  345. "column_name" => "test1",
  346. "value" => "name1",
  347. "comparator" => ComparatorTypeConst::CONST_EQUAL
  348. )
  349. ),
  350. "primary_key" => array (
  351. "PK1" => 100,
  352. "PK2" => "a100"
  353. ),
  354. "attribute_columns_to_put" => array (
  355. "test5" => "cc"
  356. )
  357. );
  358. $this->otsClient->updateRow ($update_query);
  359. $get_query = array (
  360. "table_name" => $usedTables[0],
  361. "primary_key" => array (
  362. "PK1" => 100,
  363. "PK2" => "a100"
  364. ),
  365. "columns_to_get" => array (
  366. "test1",
  367. "test2",
  368. "test3",
  369. "test4",
  370. "test5"
  371. )
  372. );
  373. $get_row_res = $this->otsClient->getRow ($get_query);
  374. $this->assertEquals ($get_row_res['row']['attribute_columns']['test1'], "name1");
  375. $this->assertEquals ($get_row_res['row']['attribute_columns']['test2'], 256);
  376. $this->assertEquals ($get_row_res['row']['attribute_columns']['test3'], "name2");
  377. $this->assertEquals ($get_row_res['row']['attribute_columns']['test4'], "name3");
  378. $this->assertEquals ($get_row_res['row']['attribute_columns']['test5'], "cc");
  379. $update_query2 = array (
  380. "table_name" => $usedTables[0],
  381. "condition" => array (
  382. "row_existence" => RowExistenceExpectationConst::CONST_EXPECT_EXIST,
  383. "column_filter" => array (
  384. "column_name" => "test1",
  385. "value" => "name1",
  386. "comparator" => ComparatorTypeConst::CONST_NOT_EQUAL
  387. )
  388. ),
  389. "primary_key" => array (
  390. "PK1" => 100,
  391. "PK2" => "a100"
  392. ),
  393. "attribute_columns_to_put" => array (
  394. "test6" => "ddcc"
  395. )
  396. );
  397. try {
  398. $this->otsClient->updateRow ($update_query2);
  399. $this->fail ('An expected exception has not been raised.');
  400. } catch (\Aliyun\OTS\OTSServerException $exc) {
  401. $c = "Condition check failed.";
  402. $this->assertEquals ( $c, $exc->getOTSErrorMessage () );
  403. }
  404. }
  405. }