summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticResultFormats/tests/phpunit/Unit/BibTex/ItemTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticResultFormats/tests/phpunit/Unit/BibTex/ItemTest.php')
-rw-r--r--www/wiki/extensions/SemanticResultFormats/tests/phpunit/Unit/BibTex/ItemTest.php111
1 files changed, 111 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticResultFormats/tests/phpunit/Unit/BibTex/ItemTest.php b/www/wiki/extensions/SemanticResultFormats/tests/phpunit/Unit/BibTex/ItemTest.php
new file mode 100644
index 00000000..b2102f6a
--- /dev/null
+++ b/www/wiki/extensions/SemanticResultFormats/tests/phpunit/Unit/BibTex/ItemTest.php
@@ -0,0 +1,111 @@
+<?php
+
+namespace SRF\Tests\BibTex;
+
+use SRF\BibTex\Item;
+
+/**
+ * @covers \SRF\BibTex\Item
+ * @group semantic-result-formats
+ *
+ * @license GNU GPL v2+
+ * @since 3.1
+ *
+ * @author mwjames
+ */
+class ItemTest extends \PHPUnit_Framework_TestCase {
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ Item::class,
+ new Item()
+ );
+ }
+
+ /**
+ * @dataProvider fieldsProvider
+ */
+ public function testText( $fields, $expected ) {
+
+ $instance = new Item();
+
+ foreach ( $fields as $key => $value ) {
+ $instance->set( $key, $value );
+ }
+
+ $this->assertEquals(
+ $expected,
+ $instance->text()
+ );
+ }
+
+ /**
+ * @dataProvider formatterCallbackFieldsProvider
+ */
+ public function testFormatterCallback( $fields, $expected ) {
+
+ $instance = new Item();
+ $instance->setFormatterCallback( function( $key, $values ) {
+ return implode( '#', $values );
+ } );
+
+ foreach ( $fields as $key => $value ) {
+ $instance->set( $key, $value );
+ }
+
+ $this->assertEquals(
+ $expected,
+ $instance->text()
+ );
+ }
+
+ /**
+ * @dataProvider replaceTextProvider
+ */
+ public function testReplace( $key, $text, $expected ) {
+
+ $instance = new Item();
+
+ $this->assertEquals(
+ $expected,
+ $instance->replace( 'uri', $text )
+ );
+ }
+
+ public function fieldsProvider() {
+
+ yield [
+ [ 'foo' => 'test', 'author' => [ 'abc', 'def', '123' ] ],
+ "@Book{abc,\r\n author = \"abc, def, 123\", \r\n}"
+ ];
+
+ yield [
+ [ 'foo' => 'test', 'title' => 'foo bar', 'editor' => [ 'abc', 'def', '123' ] ],
+ "@Book{fb,\r\n editor = \"abc, def, 123\", \r\n title = \"foo bar\", \r\n}"
+ ];
+ }
+
+ public function formatterCallbackFieldsProvider() {
+
+ yield [
+ [ 'foo' => 'test', 'author' => [ 'abc', 'def', '123' ] ],
+ "@Book{abc,\r\n author = \"abc#def#123\", \r\n}"
+ ];
+
+ yield [
+ [ 'foo' => 'test', 'title' => 'foo bar', 'editor' => [ 'abc', 'def', '123' ] ],
+ "@Book{fb,\r\n editor = \"abc#def#123\", \r\n title = \"foo bar\", \r\n}"
+ ];
+ }
+
+ public function replaceTextProvider() {
+
+ yield [
+ 'uri',
+ 'abc-_+ÄäÖ',
+ 'abcAeaeOe'
+ ];
+ }
+
+}