summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Query/ResultPrinters/FeedExportPrinterTest.php
blob: d8a1fe3ff8f8ba4803c8c161cbd8722b042a8cd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php

namespace SMW\Tests\Query\ResultPrinters;

use ReflectionClass;
use SMW\Query\ResultPrinters\FeedExportPrinter;

/**
 * @covers \SMW\Query\ResultPrinters\FeedExportPrinter
 *
 * @license GNU GPL v2+
 * @since   1.9
 *
 * @author mwjames
 */
class FeedExportPrinterTest extends \PHPUnit_Framework_TestCase {

	public function testCanConstruct() {

		$this->assertInstanceOf(
			FeedExportPrinter::class,
			new FeedExportPrinter( 'feed' )
		);
	}

	/**
	 * @dataProvider textDataProvider
	 */
	public function testFeedItemDescription( $setup, $expected, $message ) {

		$instance = new FeedExportPrinter( 'feed' );

		$reflector = new ReflectionClass( '\SMW\Query\ResultPrinters\FeedExportPrinter' );
		$method = $reflector->getMethod( 'feedItemDescription' );
		$method->setAccessible( true );

		$this->assertEquals(
			$expected['text'],
			$method->invoke( $instance, $setup['items'], $setup['pageContent'] )
		);
	}

	/**
	 * @return array
	 */
	public function textDataProvider() {

		$provider = [];

		// #0
		// https://web.archive.org/web/20160802052417/http://www.utexas.edu/learn/html/spchar.html
		$provider[] = [
			[
				'items'       => [],
				'pageContent' => 'Semantic MediaWiki Conference, have been announced: it will be held at' .
					'[http://www.aohostels.com/en/tagungen/tagungen-berlin/ A&O Berlin Hauptbahnhof]' .
					'&¢©«»—¡¿,åÃãÆç'
			],
			[
				'text'        => 'Semantic MediaWiki Conference, have been announced: it will be held at' .
					'[http://www.aohostels.com/en/tagungen/tagungen-berlin/ A&O Berlin Hauptbahnhof]' .
					'&¢©«»—¡¿,åÃãÆç'
			],
			[ 'info'     => 'text encoding including html special characters' ]
		];

		return $provider;

	}


}