summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/ChangeOp/FieldChangeOpTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/ChangeOp/FieldChangeOpTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/ChangeOp/FieldChangeOpTest.php66
1 files changed, 66 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/ChangeOp/FieldChangeOpTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/ChangeOp/FieldChangeOpTest.php
new file mode 100644
index 00000000..690084c8
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SQLStore/ChangeOp/FieldChangeOpTest.php
@@ -0,0 +1,66 @@
+<?php
+
+namespace SMW\Tests\SQLStore\ChangeOp;
+
+use SMW\SQLStore\ChangeOp\FieldChangeOp;
+use SMW\Tests\PHPUnitCompat;
+
+/**
+ * @covers \SMW\SQLStore\ChangeOp\FieldChangeOp
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.4
+ *
+ * @author mwjames
+ */
+class FieldChangeOpTest extends \PHPUnit_Framework_TestCase {
+
+ use PHPUnitCompat;
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ FieldChangeOp::class,
+ new FieldChangeOp()
+ );
+ }
+
+ public function testChangeOp() {
+
+ $op = [
+ 's_id' => 462,
+ 'o_serialized' => '1/2016/6/10/2/3/31/0',
+ 'o_sortkey' => '2457549.5857755',
+ ];
+
+ $instance = new FieldChangeOp(
+ $op
+ );
+
+ $this->assertFalse(
+ $instance->has( 'foo' )
+ );
+
+ $this->assertSame(
+ '1/2016/6/10/2/3/31/0',
+ $instance->get( 'o_serialized' )
+ );
+
+ $instance->set( 'foo', 'bar' );
+
+ $this->assertSame(
+ 'bar',
+ $instance->get( 'foo' )
+ );
+ }
+
+ public function testInvalidGetRequestThrowsException() {
+
+ $instance = new FieldChangeOp();
+
+ $this->setExpectedException( 'InvalidArgumentException' );
+ $instance->get( 'o_serialized' );
+ }
+
+}