CreateTableTest.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  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. "test2",
  10. "test3",
  11. "test4",
  12. "test",
  13. "test5"
  14. );
  15. class CreateTableTest extends SDKTestBase {
  16. public function setup() {
  17. global $usedTables;
  18. $table_name = $usedTables;
  19. for($i = 0; $i < count ($table_name); $i ++) {
  20. $request = array (
  21. "table_name" => $table_name[$i]
  22. );
  23. try {
  24. $this->otsClient->deleteTable ($request);
  25. } catch (\Aliyun\OTS\OTSServerException $exc) {
  26. if ($exc->getOTSErrorCode() == 'OTSObjectNotExist')
  27. continue;
  28. }
  29. }
  30. }
  31. /*
  32. *
  33. * CreateTable
  34. * 创建一个表,然后DescribeTable校验TableMeta和ReservedThroughput与建表时的参数一致
  35. */
  36. public function testCreateTable() {
  37. global $usedTables;
  38. $tablebody = array (
  39. "table_meta" => array (
  40. "table_name" => $usedTables[0],
  41. "primary_key_schema" => array (
  42. "PK1" => ColumnTypeConst::CONST_STRING,
  43. "PK2" => ColumnTypeConst::CONST_INTEGER,
  44. "PK3" => ColumnTypeConst::CONST_STRING,
  45. "PK4" => ColumnTypeConst::CONST_INTEGER
  46. )
  47. ),
  48. "reserved_throughput" => array (
  49. "capacity_unit" => array (
  50. "read" => 0,
  51. "write" => 0
  52. )
  53. )
  54. );
  55. $this->otsClient->createTable ($tablebody);
  56. $tablename = array (
  57. $usedTables[0]
  58. );
  59. // $tablename['mytable'] = 111;
  60. $this->assertEquals ($this->otsClient->listTable (array ()), $tablename);
  61. // $this->assertContains();
  62. $table_name['table_name'] = $usedTables[0];
  63. $teturn = array (
  64. "table_name" => $usedTables[0],
  65. "primary_key_schema" => array (
  66. "PK1" => ColumnTypeConst::CONST_STRING,
  67. "PK2" => ColumnTypeConst::CONST_INTEGER,
  68. "PK3" => ColumnTypeConst::CONST_STRING,
  69. "PK4" => ColumnTypeConst::CONST_INTEGER
  70. )
  71. );
  72. $table_meta = $this->otsClient->describeTable ($table_name);
  73. $this->assertEquals ($teturn, $table_meta['table_meta']);
  74. // $this->otsClient->deleteTable($table_name);
  75. }
  76. /*
  77. * TableNameOfZeroLength
  78. * 表名长度为0的情况,期望返回错误消息:Invalid table name: ''. 中包含的TableName与输入一致
  79. */
  80. public function testTableNameOfZeroLength() {
  81. $tablebody = array (
  82. "table_meta" => array (
  83. "table_name" => "",
  84. "primary_key_schema" => array (
  85. "PK1" => ColumnTypeConst::CONST_STRING,
  86. "PK2" => ColumnTypeConst::CONST_INTEGER,
  87. "PK3" => ColumnTypeConst::CONST_STRING,
  88. "PK4" => ColumnTypeConst::CONST_INTEGER
  89. )
  90. ),
  91. "reserved_throughput" => array (
  92. "capacity_unit" => array (
  93. "read" => 0,
  94. "write" => 0
  95. )
  96. )
  97. );
  98. try {
  99. $this->otsClient->createTable ($tablebody);
  100. $this->fail ('An expected exception has not been raised.');
  101. } catch (\Aliyun\OTS\OTSServerException $exc) {
  102. $c = "Invalid table name: ''.";
  103. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  104. }
  105. }
  106. /*
  107. * TableNameWithUnicode
  108. * 表名包含Unicode,期望返回错误信息:Invalid table name: '{TableName}'. 中包含的TableName与输入一致
  109. */
  110. public function testTableNameWithUnicode() {
  111. $tablebody = array (
  112. "table_meta" => array (
  113. "table_name" => "testU+0053",
  114. "primary_key_schema" => array (
  115. "PK1" => ColumnTypeConst::CONST_STRING,
  116. "PK2" => ColumnTypeConst::CONST_INTEGER,
  117. "PK3" => ColumnTypeConst::CONST_STRING,
  118. "PK4" => ColumnTypeConst::CONST_INTEGER
  119. )
  120. ),
  121. "reserved_throughput" => array (
  122. "capacity_unit" => array (
  123. "read" => 0,
  124. "write" => 0
  125. )
  126. )
  127. );
  128. try {
  129. $this->otsClient->createTable ($tablebody);
  130. $this->fail ('An expected exception has not been raised.');
  131. } catch (\Aliyun\OTS\OTSServerException $exc) {
  132. $c = "Invalid table name: '{$tablebody['table_meta']['table_name']}'.";
  133. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  134. }
  135. }
  136. /*
  137. * 1KBTableName
  138. * 表名长度为1KB,期望返回错误信息:Invalid table name: '{TableName}'. 中包含的TableName与输入一致
  139. */
  140. public function testTableName1KB() {
  141. $name = "";
  142. for($i = 1; $i < 1025; $i ++) {
  143. $name .= "a";
  144. }
  145. $tablebody = array (
  146. "table_meta" => array (
  147. "table_name" => $name,
  148. "primary_key_schema" => array (
  149. "PK1" => ColumnTypeConst::CONST_STRING,
  150. "PK2" => ColumnTypeConst::CONST_INTEGER,
  151. "PK3" => ColumnTypeConst::CONST_STRING,
  152. "PK4" => ColumnTypeConst::CONST_INTEGER
  153. )
  154. ),
  155. "reserved_throughput" => array (
  156. "capacity_unit" => array (
  157. "read" => 0,
  158. "write" => 0
  159. )
  160. )
  161. );
  162. try {
  163. $this->otsClient->createTable ($tablebody);
  164. $this->fail ('An expected exception has not been raised.');
  165. } catch (\Aliyun\OTS\OTSServerException $exc) {
  166. $c = "Invalid table name: '{$tablebody['table_meta']['table_name']}'.";
  167. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  168. }
  169. }
  170. /*
  171. * NoPKInSchema
  172. * 测试CreateTable在TableMeta包含0个PK时的情况,期望返回错误消息:Failed to parse the ProtoBuf message
  173. */
  174. public function testNoPKInSchema() {
  175. global $usedTables;
  176. $tablebody = array (
  177. "table_meta" => array (
  178. "table_name" => $usedTables[1],
  179. "primary_key_schema" => array ()
  180. ),
  181. "reserved_throughput" => array (
  182. "capacity_unit" => array (
  183. "read" => 0,
  184. "write" => 0
  185. )
  186. )
  187. );
  188. try {
  189. $this->otsClient->createTable ($tablebody);
  190. $this->fail ('An expected exception has not been raised.');
  191. } catch (\Aliyun\OTS\OTSServerException $exc) {
  192. $c = "The number of primary key columns must be in range: [1, 4]."; // TODO make right expect
  193. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  194. }
  195. }
  196. /*
  197. * OnePKInSchema
  198. * 测试CreateTable和DescribeTable在TableMeta包含1个PK时的情况
  199. */
  200. public function testOnePKInSchema() {
  201. global $usedTables;
  202. $tablebody = array (
  203. "table_meta" => array (
  204. "table_name" => $usedTables[2],
  205. "primary_key_schema" => array (
  206. "PK1" => ColumnTypeConst::CONST_STRING
  207. )
  208. ),
  209. "reserved_throughput" => array (
  210. "capacity_unit" => array (
  211. "read" => 0,
  212. "write" => 0
  213. )
  214. )
  215. );
  216. $this->assertEmpty ($this->otsClient->createTable ($tablebody));
  217. $tablename['table_name'] = $tablebody['table_meta']['table_name'];
  218. $teturn = array (
  219. "table_name" => $tablebody['table_meta']['table_name'],
  220. "primary_key_schema" => array (
  221. "PK1" => ColumnTypeConst::CONST_STRING
  222. )
  223. );
  224. $table_meta = $this->otsClient->describeTable ($tablename);
  225. $this->assertEquals ($teturn, $table_meta['table_meta']);
  226. }
  227. /*
  228. * FourPKInSchema
  229. * 测试CreateTable和DescribeTable在TableMeta包含4个PK时的情况
  230. */
  231. public function testFourPKInSchema() {
  232. global $usedTables;
  233. $tablebody = array (
  234. "table_meta" => array (
  235. "table_name" => $usedTables[3],
  236. "primary_key_schema" => array (
  237. "PK1" => ColumnTypeConst::CONST_STRING,
  238. "PK2" => ColumnTypeConst::CONST_INTEGER,
  239. "PK3" => ColumnTypeConst::CONST_STRING,
  240. "PK4" => ColumnTypeConst::CONST_INTEGER
  241. )
  242. ),
  243. "reserved_throughput" => array (
  244. "capacity_unit" => array (
  245. "read" => 0,
  246. "write" => 0
  247. )
  248. )
  249. );
  250. $this->assertEmpty ($this->otsClient->createTable ($tablebody));
  251. $tablename['table_name'] = $tablebody['table_meta']['table_name'];
  252. $teturn = array (
  253. "table_name" => $tablebody['table_meta']['table_name'],
  254. "primary_key_schema" => array (
  255. "PK1" => ColumnTypeConst::CONST_STRING,
  256. "PK2" => ColumnTypeConst::CONST_INTEGER,
  257. "PK3" => ColumnTypeConst::CONST_STRING,
  258. "PK4" => ColumnTypeConst::CONST_INTEGER
  259. )
  260. );
  261. $table_meta = $this->otsClient->describeTable ($tablename);
  262. $this->assertEquals ($teturn, $table_meta['table_meta']);
  263. }
  264. /*
  265. * TooMuchPKInSchema
  266. * 测试TableMeta包含1000个PK的情况,CreateTable期望返回错误消息:The number of primary key columns must be in range: [1, 4].
  267. */
  268. public function testTooMuchPKInSchema() {
  269. global $usedTables;
  270. $key = array ();
  271. for($i = 1; $i < 1001; $i ++) {
  272. $key['a' . $i] = ColumnTypeConst::CONST_INTEGER;
  273. }
  274. // print_r($key);die;
  275. $tablebody = array (
  276. "table_meta" => array (
  277. "table_name" => $usedTables[4],
  278. "primary_key_schema" => $key
  279. ),
  280. "reserved_throughput" => array (
  281. "capacity_unit" => array (
  282. "read" => 0,
  283. "write" => 0
  284. )
  285. )
  286. );
  287. try {
  288. $this->otsClient->createTable ($tablebody);
  289. $this->fail ('An expected exception has not been raised.');
  290. } catch (\Aliyun\OTS\OTSServerException $exc) {
  291. $c = "The number of primary key columns must be in range: [1, 4].";
  292. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  293. }
  294. }
  295. /*
  296. * IntegerPKInSchema
  297. * 测试CreateTable和DescribeTable在TableMeta包含2个PK,类型为 INTEGER 的情况。
  298. */
  299. public function testIntegerPKInSchema() {
  300. global $usedTables;
  301. $tablebody = array (
  302. "table_meta" => array (
  303. "table_name" => $usedTables[5],
  304. "primary_key_schema" => array (
  305. "PK1" => ColumnTypeConst::CONST_INTEGER,
  306. "PK2" => ColumnTypeConst::CONST_INTEGER
  307. )
  308. ),
  309. "reserved_throughput" => array (
  310. "capacity_unit" => array (
  311. "read" => 0,
  312. "write" => 0
  313. )
  314. )
  315. );
  316. $this->assertEmpty ($this->otsClient->createTable ($tablebody));
  317. $tablename['table_name'] = $tablebody['table_meta']['table_name'];
  318. $teturn = array (
  319. "table_name" => $tablebody['table_meta']['table_name'],
  320. "primary_key_schema" => array (
  321. "PK1" => ColumnTypeConst::CONST_INTEGER,
  322. "PK2" => ColumnTypeConst::CONST_INTEGER
  323. )
  324. );
  325. $table_meta = $this->otsClient->describeTable ($tablename);
  326. $this->assertEquals ($teturn, $table_meta['table_meta']);
  327. }
  328. /*
  329. * StringPKInSchema
  330. * 测试CreateTable和DescribeTable在TableMeta包含2个PK,类型为 STRING 的情况。
  331. */
  332. public function testStringPKInSchema() {
  333. global $usedTables;
  334. $tablebody = array (
  335. "table_meta" => array (
  336. "table_name" => $usedTables[5],
  337. "primary_key_schema" => array (
  338. "PK1" => ColumnTypeConst::CONST_STRING,
  339. "PK2" => ColumnTypeConst::CONST_STRING
  340. )
  341. ),
  342. "reserved_throughput" => array (
  343. "capacity_unit" => array (
  344. "read" => 0,
  345. "write" => 0
  346. )
  347. )
  348. );
  349. $this->assertEmpty ($this->otsClient->createTable ($tablebody));
  350. $tablename['table_name'] = $tablebody['table_meta']['table_name'];
  351. $teturn = array (
  352. "table_name" => $tablebody['table_meta']['table_name'],
  353. "primary_key_schema" => array (
  354. "PK1" => ColumnTypeConst::CONST_STRING,
  355. "PK2" => ColumnTypeConst::CONST_STRING
  356. )
  357. );
  358. $table_meta = $this->otsClient->describeTable ($tablename);
  359. $this->assertEquals ($teturn, $table_meta['table_meta']);
  360. }
  361. /*
  362. * InvalidPKInSchema
  363. * 测试CreateTable和DescribeTable在TableMeta包含2个PK,
  364. * 类型为 DOUBLE / BOOELAN / BINARY / INF_MIN / INF_MAX 的情况,期望返回错误
  365. */
  366. public function testInvalidPKInSchema() {
  367. global $usedTables;
  368. $tablebody1 = array (
  369. "table_meta" => array (
  370. "table_name" => $usedTables[4],
  371. "primary_key_schema" => array (
  372. "PK1" => ColumnTypeConst::CONST_DOUBLE,
  373. "PK2" => ColumnTypeConst::CONST_DOUBLE
  374. )
  375. ),
  376. "reserved_throughput" => array (
  377. "capacity_unit" => array (
  378. "read" => 0,
  379. "write" => 0
  380. )
  381. )
  382. );
  383. $tablebody2 = array (
  384. "table_meta" => array (
  385. "table_name" => $usedTables[4],
  386. "primary_key_schema" => array (
  387. "PK1" => ColumnTypeConst::CONST_BOOLEAN,
  388. "PK2" => ColumnTypeConst::CONST_BOOLEAN
  389. )
  390. ),
  391. "reserved_throughput" => array (
  392. "capacity_unit" => array (
  393. "read" => 0,
  394. "write" => 0
  395. )
  396. )
  397. );
  398. try {
  399. $this->otsClient->createTable ($tablebody1);
  400. $this->fail ('An expected exception has not been raised.');
  401. } catch (\Aliyun\OTS\OTSServerException $exc) {
  402. $c = "DOUBLE is an invalid type for the primary key.";
  403. $this->assertEquals ($c, $exc->getOTSErrorMessage ());
  404. }
  405. try {
  406. $this->otsClient->createTable ($tablebody2);
  407. $this->fail ('An expected exception has not been raised.');
  408. } catch (\Aliyun\OTS\OTSClientException $exc) {
  409. $c = "Column type must be one of 'INTEGER', 'STRING', 'BOOLEAN', 'DOUBLE', 'BINARY', 'INF_MIN', or 'INF_MAX'.";
  410. $this->assertEquals ($c, $exc->getMessage ());
  411. } catch (\Aliyun\OTS\OTSServerException $exc) {
  412. $c = "BOOLEAN is an invalid type for the primary key.";
  413. $this->assertContains ($c, $exc->getMessage ());
  414. }
  415. }
  416. public function tearDown() {
  417. global $usedTables;
  418. $table_name = $usedTables;
  419. for($i = 0; $i < count ($table_name); $i ++) {
  420. $request = array (
  421. "table_name" => $table_name[$i]
  422. );
  423. try {
  424. $this->otsClient->deleteTable ($request);
  425. } catch (\Aliyun\OTS\OTSServerException $exc) {
  426. if ($exc->getOTSErrorCode() == 'OTSObjectNotExist')
  427. continue;
  428. }
  429. }
  430. }
  431. }