summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticResultFormats/tests/phpunit/Unit/Outline/OutlineResultPrinterTest.php
blob: 523ecf9b480772c95bcf8f9b7fd23e027447c1d7 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php

namespace SRF\Tests\Outline;

use SRF\Outline\OutlineResultPrinter;

/**
 * @covers \SRF\Outline\OutlineResultPrinter
 * @group semantic-result-formats
 *
 * @license GNU GPL v2+
 * @since 3.1
 *
 * @author mwjames
 */
class OutlineResultPrinterTest extends \PHPUnit_Framework_TestCase {

	private $queryResult;

	protected function setUp() {
		parent::setUp();

		$this->queryResult = $this->getMockBuilder( '\SMWQueryResult' )
			->disableOriginalConstructor()
			->getMock();
	}

	public function testCanConstruct() {

		$this->assertInstanceOf(
			OutlineResultPrinter::class,
			new OutlineResultPrinter( 'outline' )
		);
	}

	public function testGetResult_LinkOnNonFileOutput() {

		$link = $this->getMockBuilder( '\SMWInfolink' )
			->disableOriginalConstructor()
			->getMock();

		$link->expects( $this->any() )
			->method( 'getText' )
			->will( $this->returnValue( 'foo_link' ) );

		$this->queryResult->expects( $this->any() )
			->method( 'getErrors' )
			->will( $this->returnValue( [] ) );

		$this->queryResult->expects( $this->any() )
			->method( 'getCount' )
			->will( $this->returnValue( 1 ) );

		$instance = new OutlineResultPrinter(
			'outline'
		);

		// IParam is an empty interface !!! so we use stdClass
		$outlineproperties = $this->getMockBuilder( '\stdClass' )
			->disableOriginalConstructor()
			->setMethods( [ 'getName', 'getValue' ] )
			->getMock();

		$outlineproperties->expects( $this->any() )
			->method( 'getName' )
			->will( $this->returnValue( 'outlineproperties' ) );

		$outlineproperties->expects( $this->any() )
			->method( 'getValue' )
			->will( $this->returnValue( [] ) );

		$template = $this->getMockBuilder( '\stdClass' )
			->disableOriginalConstructor()
			->setMethods( [ 'getName', 'getValue' ] )
			->getMock();

		$template->expects( $this->any() )
			->method( 'getName' )
			->will( $this->returnValue( 'template' ) );

		$template->expects( $this->any() )
			->method( 'getValue' )
			->will( $this->returnValue( '' ) );

		$parameters = [
			$outlineproperties,
			$template
		];

		$this->assertContains(
			"<ul>\n</ul>\n",
			$instance->getResult( $this->queryResult, $parameters, SMW_OUTPUT_HTML )
		);
	}

}