ListTableTest.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. "myTable",
  9. "myTable1"
  10. );
  11. class listTableTest extends SDKTestBase {
  12. public function setup() {
  13. global $usedTables;
  14. $this->cleanUp ($usedTables);
  15. }
  16. /*
  17. * ListTableWith0Table
  18. * 在没有表的情况下 ListTable,期望返回0个Table Name
  19. */
  20. public function testListTableWith0Table() {
  21. $this->assertEmpty ($this->otsClient->listTable (array ()));
  22. }
  23. /*
  24. * ListTableWith1Table
  25. * 在有1个表的情况下 ListTable,期望返回1个Table Name。
  26. */
  27. public function testListTableWith1Table() {
  28. global $usedTables;
  29. $tablebody = array (
  30. "table_meta" => array (
  31. "table_name" => $usedTables[0],
  32. "primary_key_schema" => array (
  33. "PK1" => ColumnTypeConst::CONST_STRING,
  34. "PK2" => ColumnTypeConst::CONST_INTEGER,
  35. "PK3" => ColumnTypeConst::CONST_STRING,
  36. "PK4" => ColumnTypeConst::CONST_INTEGER
  37. )
  38. ),
  39. "reserved_throughput" => array (
  40. "capacity_unit" => array (
  41. "read" => 0,
  42. "write" => 0
  43. )
  44. )
  45. );
  46. $this->otsClient->CreateTable ($tablebody);
  47. $table_name = array (
  48. $usedTables[0]
  49. );
  50. $this->assertEquals ($this->otsClient->listTable (array ()), $table_name);
  51. }
  52. /*
  53. * ListTableWith2Tables
  54. * 在有2个表的情况下 ListTable,期望返回2个Table Name。
  55. */
  56. public function testListTableWith2Tables() {
  57. global $usedTables;
  58. $tablebody = array (
  59. "table_meta" => array (
  60. "table_name" => $usedTables[0],
  61. "primary_key_schema" => array (
  62. "PK1" => ColumnTypeConst::CONST_STRING,
  63. "PK2" => ColumnTypeConst::CONST_INTEGER,
  64. "PK3" => ColumnTypeConst::CONST_STRING,
  65. "PK4" => ColumnTypeConst::CONST_INTEGER
  66. )
  67. ),
  68. "reserved_throughput" => array (
  69. "capacity_unit" => array (
  70. "read" => 0,
  71. "write" => 0
  72. )
  73. )
  74. );
  75. $tablebody1 = array (
  76. "table_meta" => array (
  77. "table_name" => $usedTables[1],
  78. "primary_key_schema" => array (
  79. "PK1" => ColumnTypeConst::CONST_STRING,
  80. "PK2" => ColumnTypeConst::CONST_INTEGER,
  81. "PK3" => ColumnTypeConst::CONST_STRING,
  82. "PK4" => ColumnTypeConst::CONST_INTEGER
  83. )
  84. ),
  85. "reserved_throughput" => array (
  86. "capacity_unit" => array (
  87. "read" => 0,
  88. "write" => 0
  89. )
  90. )
  91. );
  92. $this->otsClient->CreateTable ($tablebody);
  93. $this->otsClient->CreateTable ($tablebody1);
  94. $table_name = array (
  95. $usedTables[0],
  96. $usedTables[1]
  97. );
  98. $this->assertEquals ($this->otsClient->listTable (array ()), $table_name);
  99. }
  100. public function testListTable40Times() {
  101. for($i = 0; $i < 40; $i ++) {
  102. $this->otsClient->listTable (array () );
  103. }
  104. }
  105. }