123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 |
- <?php
- namespace Aliyun\OTS\Tests;
- use Aliyun\OTS;
- use Aliyun\OTS\ColumnTypeConst;
- require __DIR__ . "/TestBase.php";
- require __DIR__ . "/../../../vendor/autoload.php";
- $usedTables = array (
- "myTable",
- "test2",
- "test3",
- "test4",
- "test",
- "test5"
- );
- class CreateTableTest extends SDKTestBase {
- public function setup() {
- global $usedTables;
- $table_name = $usedTables;
- for($i = 0; $i < count ($table_name); $i ++) {
- $request = array (
- "table_name" => $table_name[$i]
- );
- try {
- $this->otsClient->deleteTable ($request);
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- if ($exc->getOTSErrorCode() == 'OTSObjectNotExist')
- continue;
- }
- }
- }
-
- /*
- *
- * CreateTable
- * 创建一个表,然后DescribeTable校验TableMeta和ReservedThroughput与建表时的参数一致
- */
- public function testCreateTable() {
- global $usedTables;
- $tablebody = array (
- "table_meta" => array (
- "table_name" => $usedTables[0],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_STRING,
- "PK2" => ColumnTypeConst::CONST_INTEGER,
- "PK3" => ColumnTypeConst::CONST_STRING,
- "PK4" => ColumnTypeConst::CONST_INTEGER
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
- $this->otsClient->createTable ($tablebody);
- $tablename = array (
- $usedTables[0]
- );
- // $tablename['mytable'] = 111;
- $this->assertEquals ($this->otsClient->listTable (array ()), $tablename);
- // $this->assertContains();
- $table_name['table_name'] = $usedTables[0];
- $teturn = array (
- "table_name" => $usedTables[0],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_STRING,
- "PK2" => ColumnTypeConst::CONST_INTEGER,
- "PK3" => ColumnTypeConst::CONST_STRING,
- "PK4" => ColumnTypeConst::CONST_INTEGER
- )
- );
- $table_meta = $this->otsClient->describeTable ($table_name);
- $this->assertEquals ($teturn, $table_meta['table_meta']);
- // $this->otsClient->deleteTable($table_name);
- }
-
- /*
- * TableNameOfZeroLength
- * 表名长度为0的情况,期望返回错误消息:Invalid table name: ''. 中包含的TableName与输入一致
- */
- public function testTableNameOfZeroLength() {
- $tablebody = array (
- "table_meta" => array (
- "table_name" => "",
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_STRING,
- "PK2" => ColumnTypeConst::CONST_INTEGER,
- "PK3" => ColumnTypeConst::CONST_STRING,
- "PK4" => ColumnTypeConst::CONST_INTEGER
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
- try {
- $this->otsClient->createTable ($tablebody);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "Invalid table name: ''.";
- $this->assertEquals ($c, $exc->getOTSErrorMessage ());
- }
- }
-
- /*
- * TableNameWithUnicode
- * 表名包含Unicode,期望返回错误信息:Invalid table name: '{TableName}'. 中包含的TableName与输入一致
- */
- public function testTableNameWithUnicode() {
- $tablebody = array (
- "table_meta" => array (
- "table_name" => "testU+0053",
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_STRING,
- "PK2" => ColumnTypeConst::CONST_INTEGER,
- "PK3" => ColumnTypeConst::CONST_STRING,
- "PK4" => ColumnTypeConst::CONST_INTEGER
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
- try {
- $this->otsClient->createTable ($tablebody);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "Invalid table name: '{$tablebody['table_meta']['table_name']}'.";
- $this->assertEquals ($c, $exc->getOTSErrorMessage ());
- }
- }
-
- /*
- * 1KBTableName
- * 表名长度为1KB,期望返回错误信息:Invalid table name: '{TableName}'. 中包含的TableName与输入一致
- */
- public function testTableName1KB() {
- $name = "";
- for($i = 1; $i < 1025; $i ++) {
- $name .= "a";
- }
- $tablebody = array (
- "table_meta" => array (
- "table_name" => $name,
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_STRING,
- "PK2" => ColumnTypeConst::CONST_INTEGER,
- "PK3" => ColumnTypeConst::CONST_STRING,
- "PK4" => ColumnTypeConst::CONST_INTEGER
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
- try {
- $this->otsClient->createTable ($tablebody);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "Invalid table name: '{$tablebody['table_meta']['table_name']}'.";
- $this->assertEquals ($c, $exc->getOTSErrorMessage ());
- }
- }
-
- /*
- * NoPKInSchema
- * 测试CreateTable在TableMeta包含0个PK时的情况,期望返回错误消息:Failed to parse the ProtoBuf message
- */
- public function testNoPKInSchema() {
- global $usedTables;
- $tablebody = array (
- "table_meta" => array (
- "table_name" => $usedTables[1],
- "primary_key_schema" => array ()
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
- try {
- $this->otsClient->createTable ($tablebody);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "The number of primary key columns must be in range: [1, 4]."; // TODO make right expect
- $this->assertEquals ($c, $exc->getOTSErrorMessage ());
- }
- }
-
- /*
- * OnePKInSchema
- * 测试CreateTable和DescribeTable在TableMeta包含1个PK时的情况
- */
- public function testOnePKInSchema() {
- global $usedTables;
- $tablebody = array (
- "table_meta" => array (
- "table_name" => $usedTables[2],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_STRING
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
- $this->assertEmpty ($this->otsClient->createTable ($tablebody));
- $tablename['table_name'] = $tablebody['table_meta']['table_name'];
- $teturn = array (
- "table_name" => $tablebody['table_meta']['table_name'],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_STRING
- )
- );
- $table_meta = $this->otsClient->describeTable ($tablename);
- $this->assertEquals ($teturn, $table_meta['table_meta']);
- }
-
- /*
- * FourPKInSchema
- * 测试CreateTable和DescribeTable在TableMeta包含4个PK时的情况
- */
- public function testFourPKInSchema() {
- global $usedTables;
- $tablebody = array (
- "table_meta" => array (
- "table_name" => $usedTables[3],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_STRING,
- "PK2" => ColumnTypeConst::CONST_INTEGER,
- "PK3" => ColumnTypeConst::CONST_STRING,
- "PK4" => ColumnTypeConst::CONST_INTEGER
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
-
- $this->assertEmpty ($this->otsClient->createTable ($tablebody));
- $tablename['table_name'] = $tablebody['table_meta']['table_name'];
- $teturn = array (
- "table_name" => $tablebody['table_meta']['table_name'],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_STRING,
- "PK2" => ColumnTypeConst::CONST_INTEGER,
- "PK3" => ColumnTypeConst::CONST_STRING,
- "PK4" => ColumnTypeConst::CONST_INTEGER
- )
- );
- $table_meta = $this->otsClient->describeTable ($tablename);
- $this->assertEquals ($teturn, $table_meta['table_meta']);
- }
-
- /*
- * TooMuchPKInSchema
- * 测试TableMeta包含1000个PK的情况,CreateTable期望返回错误消息:The number of primary key columns must be in range: [1, 4].
- */
- public function testTooMuchPKInSchema() {
- global $usedTables;
- $key = array ();
- for($i = 1; $i < 1001; $i ++) {
- $key['a' . $i] = ColumnTypeConst::CONST_INTEGER;
- }
- // print_r($key);die;
- $tablebody = array (
- "table_meta" => array (
- "table_name" => $usedTables[4],
- "primary_key_schema" => $key
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
- try {
- $this->otsClient->createTable ($tablebody);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "The number of primary key columns must be in range: [1, 4].";
- $this->assertEquals ($c, $exc->getOTSErrorMessage ());
- }
- }
-
- /*
- * IntegerPKInSchema
- * 测试CreateTable和DescribeTable在TableMeta包含2个PK,类型为 INTEGER 的情况。
- */
- public function testIntegerPKInSchema() {
- global $usedTables;
- $tablebody = array (
- "table_meta" => array (
- "table_name" => $usedTables[5],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_INTEGER,
- "PK2" => ColumnTypeConst::CONST_INTEGER
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
- $this->assertEmpty ($this->otsClient->createTable ($tablebody));
- $tablename['table_name'] = $tablebody['table_meta']['table_name'];
- $teturn = array (
- "table_name" => $tablebody['table_meta']['table_name'],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_INTEGER,
- "PK2" => ColumnTypeConst::CONST_INTEGER
- )
- );
- $table_meta = $this->otsClient->describeTable ($tablename);
- $this->assertEquals ($teturn, $table_meta['table_meta']);
- }
-
- /*
- * StringPKInSchema
- * 测试CreateTable和DescribeTable在TableMeta包含2个PK,类型为 STRING 的情况。
- */
- public function testStringPKInSchema() {
- global $usedTables;
- $tablebody = array (
- "table_meta" => array (
- "table_name" => $usedTables[5],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_STRING,
- "PK2" => ColumnTypeConst::CONST_STRING
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
- $this->assertEmpty ($this->otsClient->createTable ($tablebody));
- $tablename['table_name'] = $tablebody['table_meta']['table_name'];
- $teturn = array (
- "table_name" => $tablebody['table_meta']['table_name'],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_STRING,
- "PK2" => ColumnTypeConst::CONST_STRING
- )
- );
- $table_meta = $this->otsClient->describeTable ($tablename);
- $this->assertEquals ($teturn, $table_meta['table_meta']);
- }
-
- /*
- * InvalidPKInSchema
- * 测试CreateTable和DescribeTable在TableMeta包含2个PK,
- * 类型为 DOUBLE / BOOELAN / BINARY / INF_MIN / INF_MAX 的情况,期望返回错误
- */
- public function testInvalidPKInSchema() {
- global $usedTables;
- $tablebody1 = array (
- "table_meta" => array (
- "table_name" => $usedTables[4],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_DOUBLE,
- "PK2" => ColumnTypeConst::CONST_DOUBLE
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
- $tablebody2 = array (
- "table_meta" => array (
- "table_name" => $usedTables[4],
- "primary_key_schema" => array (
- "PK1" => ColumnTypeConst::CONST_BOOLEAN,
- "PK2" => ColumnTypeConst::CONST_BOOLEAN
- )
- ),
- "reserved_throughput" => array (
- "capacity_unit" => array (
- "read" => 0,
- "write" => 0
- )
- )
- );
- try {
- $this->otsClient->createTable ($tablebody1);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "DOUBLE is an invalid type for the primary key.";
- $this->assertEquals ($c, $exc->getOTSErrorMessage ());
- }
- try {
- $this->otsClient->createTable ($tablebody2);
- $this->fail ('An expected exception has not been raised.');
- } catch (\Aliyun\OTS\OTSClientException $exc) {
- $c = "Column type must be one of 'INTEGER', 'STRING', 'BOOLEAN', 'DOUBLE', 'BINARY', 'INF_MIN', or 'INF_MAX'.";
- $this->assertEquals ($c, $exc->getMessage ());
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- $c = "BOOLEAN is an invalid type for the primary key.";
- $this->assertContains ($c, $exc->getMessage ());
- }
- }
-
- public function tearDown() {
- global $usedTables;
- $table_name = $usedTables;
- for($i = 0; $i < count ($table_name); $i ++) {
- $request = array (
- "table_name" => $table_name[$i]
- );
- try {
- $this->otsClient->deleteTable ($request);
- } catch (\Aliyun\OTS\OTSServerException $exc) {
- if ($exc->getOTSErrorCode() == 'OTSObjectNotExist')
- continue;
- }
- }
- }
- }
|