DescribeTableTest.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. "test5",
  9. "test"
  10. );
  11. SDKTestBase::cleanUp ($usedTables);
  12. class DescribeTableTest extends SDKTestBase {
  13. public function setup() {
  14. global $usedTables;
  15. $this->cleanUp ($usedTables);
  16. }
  17. /*
  18. * IntegerPKInSchema
  19. * 测试CreateTable和DescribeTable在TableMeta包含2个PK,类型为 INTEGER 的情况。
  20. */
  21. public function testIntegerPKInSchema() {
  22. global $usedTables;
  23. $tablebody = array (
  24. "table_meta" => array (
  25. "table_name" => $usedTables[0],
  26. "primary_key_schema" => array (
  27. "PK1" => ColumnTypeConst::CONST_INTEGER,
  28. "PK2" => ColumnTypeConst::CONST_INTEGER
  29. )
  30. ),
  31. "reserved_throughput" => array (
  32. "capacity_unit" => array (
  33. "read" => 0,
  34. "write" => 0
  35. )
  36. )
  37. );
  38. $this->assertEmpty ($this->otsClient->createTable ($tablebody));
  39. $tablename['table_name'] = $tablebody['table_meta']['table_name'];
  40. $teturn = array (
  41. "table_name" => $tablebody['table_meta']['table_name'],
  42. "primary_key_schema" => array (
  43. "PK1" => ColumnTypeConst::CONST_INTEGER,
  44. "PK2" => ColumnTypeConst::CONST_INTEGER
  45. )
  46. );
  47. $table_meta = $this->otsClient->describeTable ($tablename);
  48. $this->assertEquals ($teturn, $table_meta['table_meta']);
  49. }
  50. /*
  51. * StringPKInSchema
  52. * 测试CreateTable和DescribeTable在TableMeta包含2个PK,类型为 STRING 的情况。
  53. */
  54. public function testStringPKInSchema() {
  55. global $usedTables;
  56. $tablebody = array (
  57. "table_meta" => array (
  58. "table_name" => $usedTables[0],
  59. "primary_key_schema" => array (
  60. "PK1" => ColumnTypeConst::CONST_STRING,
  61. "PK2" => ColumnTypeConst::CONST_STRING
  62. )
  63. ),
  64. "reserved_throughput" => array (
  65. "capacity_unit" => array (
  66. "read" => 0,
  67. "write" => 0
  68. )
  69. )
  70. );
  71. $this->assertEmpty ($this->otsClient->createTable ($tablebody));
  72. $tablename['table_name'] = $tablebody['table_meta']['table_name'];
  73. $teturn = array (
  74. "table_name" => $tablebody['table_meta']['table_name'],
  75. "primary_key_schema" => array (
  76. "PK1" => ColumnTypeConst::CONST_STRING,
  77. "PK2" => ColumnTypeConst::CONST_STRING
  78. )
  79. );
  80. $table_meta = $this->otsClient->describeTable ($tablename);
  81. $this->assertEquals ($teturn, $table_meta['table_meta']);
  82. }
  83. /*
  84. * InvalidPKInSchema
  85. * 测试CreateTable和DescribeTable在TableMeta包含2个PK,
  86. * 类型为 DOUBLE / BOOLEAN / BINARY / INF_MIN / INF_MAX 的情况,期望返回错误
  87. */
  88. public function testInvalidPKInSchema() {
  89. global $usedTables;
  90. $invalidTypes = array (
  91. ColumnTypeConst::CONST_DOUBLE,
  92. ColumnTypeConst::CONST_BOOLEAN,
  93. ColumnTypeConst::CONST_INF_MIN,
  94. ColumnTypeConst::CONST_INF_MAX
  95. );
  96. foreach ($invalidTypes as $type) {
  97. $request = array (
  98. "table_meta" => array (
  99. "table_name" => $usedTables[1],
  100. "primary_key_schema" => array (
  101. "PK1" => $type
  102. )
  103. ),
  104. "reserved_throughput" => array (
  105. "capacity_unit" => array (
  106. "read" => 0,
  107. "write" => 0
  108. )
  109. )
  110. );
  111. try {
  112. $this->otsClient->createTable ($request);
  113. $this->fail ('An expected exception has not been raised.');
  114. } catch (\Aliyun\OTS\OTSServerException $e) {
  115. $c = "$type is an invalid type for the primary key.";
  116. $this->assertEquals ($c, $e->getOTSErrorMessage ());
  117. }
  118. }
  119. }
  120. }