UpdateTableTest.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?php
  2. namespace Aliyun\OTS\Tests;
  3. use Aliyun\OTS;
  4. use Aliyun\OTS\ColumnTypeConst;
  5. require __DIR__ . "/TestBase.php";
  6. require __DIR__ . "/../../../vendor/autoload.php";
  7. $usedTables = array (
  8. "myTable1",
  9. "myTable2",
  10. "myTable3"
  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" => 10,
  24. "write" => 20
  25. )
  26. )
  27. ));
  28. SDKTestBase::createInitialTable (array (
  29. "table_meta" => array (
  30. "table_name" => $usedTables[1],
  31. "primary_key_schema" => array (
  32. "PK1" => ColumnTypeConst::CONST_INTEGER,
  33. "PK2" => ColumnTypeConst::CONST_STRING
  34. )
  35. ),
  36. "reserved_throughput" => array (
  37. "capacity_unit" => array (
  38. "read" => 10,
  39. "write" => 20
  40. )
  41. )
  42. ));
  43. SDKTestBase::createInitialTable (array (
  44. "table_meta" => array (
  45. "table_name" => $usedTables[2],
  46. "primary_key_schema" => array (
  47. "PK1" => ColumnTypeConst::CONST_INTEGER,
  48. "PK2" => ColumnTypeConst::CONST_STRING
  49. )
  50. ),
  51. "reserved_throughput" => array (
  52. "capacity_unit" => array (
  53. "read" => 10,
  54. "write" => 20
  55. )
  56. )
  57. ));
  58. SDKTestBase::waitForCUAdjustmentInterval ();
  59. class UpdateTableTest extends SDKTestBase {
  60. /*
  61. *
  62. * UpdateTable
  63. * 创建一个表,CU为(10,20),UpdateTable指定CU为(5,30),DescribeTable期望返回CU为(5, 30)。
  64. */
  65. public function testUpdateTable() {
  66. global $usedTables;
  67. $name['table_name'] = $usedTables[0];
  68. $tablename = array (
  69. "table_name" => $usedTables[0],
  70. "reserved_throughput" => array (
  71. "capacity_unit" => array (
  72. "read" => 5,
  73. "write" => 30
  74. )
  75. )
  76. );
  77. $this->otsClient->updateTable ($tablename);
  78. $capacity_unit = $this->otsClient->describeTable ($name);
  79. $this->assertEquals ($capacity_unit['capacity_unit_details']['capacity_unit'], $tablename['reserved_throughput']['capacity_unit']);
  80. }
  81. /*
  82. * CUReadOnly
  83. * 只更新 Read CU,DescribeTable 校验返回符合预期。
  84. */
  85. public function testCUReadOnly() {
  86. global $usedTables;
  87. $name['table_name'] = $usedTables[1];
  88. $tablename = array (
  89. "table_name" => $usedTables[1],
  90. "reserved_throughput" => array (
  91. "capacity_unit" => array (
  92. "read" => 100
  93. )
  94. )
  95. );
  96. $this->otsClient->updateTable ($tablename);
  97. $capacity_unit = $this->otsClient->describeTable ($name);
  98. $this->assertEquals ($capacity_unit['capacity_unit_details']['capacity_unit']['read'], 100);
  99. $this->assertEquals ($capacity_unit['capacity_unit_details']['capacity_unit']['write'], 20);
  100. }
  101. /*
  102. * CUWriteOnly
  103. * 只更新 Write CU,DescribeTable 校验返回符合预期。
  104. */
  105. public function testCUWriteOnly() {
  106. global $usedTables;
  107. $name['table_name'] = $usedTables[2];
  108. $tablename = array (
  109. "table_name" => $usedTables[2],
  110. "reserved_throughput" => array (
  111. "capacity_unit" => array (
  112. "write" => 300
  113. )
  114. )
  115. );
  116. $this->otsClient->updateTable ($tablename);
  117. $capacity_unit = $this->otsClient->describeTable ($name);
  118. $this->assertEquals ($capacity_unit['capacity_unit_details']['capacity_unit']['read'], 10);
  119. $this->assertEquals ($capacity_unit['capacity_unit_details']['capacity_unit'] ['write'], 300 );
  120. }
  121. }