summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/TableBuilder/TableTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/TableBuilder/TableTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/TableBuilder/TableTest.php145
1 files changed, 145 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/TableBuilder/TableTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/TableBuilder/TableTest.php
new file mode 100644
index 00000000..275fdc55
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/TableBuilder/TableTest.php
@@ -0,0 +1,145 @@
+<?php
+
+namespace SMW\Tests\SQLStore\TableBuilder;
+
+use SMW\SQLStore\TableBuilder\Table;
+use SMW\Tests\PHPUnitCompat;
+
+/**
+ * @covers \SMW\SQLStore\TableBuilder\Table
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+class TableTest extends \PHPUnit_Framework_TestCase {
+
+ use PHPUnitCompat;
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ Table::class,
+ new Table( 'Foo' )
+ );
+ }
+
+ public function testAddColumn() {
+
+ $instance = new Table( 'Foo' );
+
+ $instance->addColumn( 'b', 'integer' );
+
+ $expected = [
+ 'fields' => [
+ 'b' => 'integer'
+ ]
+ ];
+
+ $this->assertEquals(
+ $expected,
+ $instance->getAttributes()
+ );
+ }
+
+ public function testAddIndex() {
+
+ $instance = new Table( 'Foo' );
+
+ $instance->addIndex( 'bar' );
+
+ $expected = [
+ 'indices' => [
+ 'bar'
+ ]
+ ];
+
+ $this->assertEquals(
+ $expected,
+ $instance->getAttributes()
+ );
+
+ $this->assertInternalType(
+ 'string',
+ $instance->getHash()
+ );
+ }
+
+ public function testAddIndexWithKey() {
+
+ $instance = new Table( 'Foo' );
+
+ $instance->addIndex( [ 'foobar' ], 'bar' );
+
+ $expected = [
+ 'indices' => [
+ 'bar' => [ 'foobar' ]
+ ]
+ ];
+
+ $this->assertEquals(
+ $expected,
+ $instance->getAttributes()
+ );
+ }
+
+ public function testAddOption() {
+
+ $instance = new Table( 'Foo' );
+
+ $instance->addOption( 'bar', [ 'foobar' ] );
+
+ $expected = [
+ 'bar' => [ 'foobar' ]
+ ];
+
+ $this->assertEquals(
+ $expected,
+ $instance->getAttributes()
+ );
+
+ $this->assertEquals(
+ [ 'foobar' ],
+ $instance->get( 'bar' )
+ );
+ }
+
+ public function testGetOnUnregsiteredKeyThrowsException() {
+
+ $instance = new Table( 'Foo' );
+
+ $this->setExpectedException( 'RuntimeException' );
+ $instance->get( 'bar' );
+ }
+
+ /**
+ * @dataProvider invalidOptionsProvider
+ */
+ public function testAddOptionOnReservedOptionKeyThrowsException( $key ) {
+
+ $instance = new Table( 'Foo' );
+
+ $this->setExpectedException( 'RuntimeException' );
+ $instance->addOption( $key, [] );
+ }
+
+ public function invalidOptionsProvider() {
+
+ $provider[] = [
+ 'fields'
+ ];
+
+ $provider[] = [
+ 'indices'
+ ];
+
+ $provider[] = [
+ 'defaults'
+ ];
+
+ return $provider;
+ }
+
+}