summaryrefslogtreecommitdiff
path: root/www/wiki/skins/chameleon/tests/phpunit/Unit/Menu/MenuFromLinesTest.php
blob: cd8cbcc5e3c943918c3088d91a2ad5cfc710d4ad (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php
/**
 * File containing the MenuFromLinesTest class
 *
 * @copyright (C) 2013 - 2015, Stephan Gambke
 * @license   GNU General Public License, version 3 (or any later version)
 *
 * The Chameleon skin is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by the Free
 * Software Foundation, either version 3 of the License, or (at your option) any
 * later version.
 *
 * The Chameleon skin is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program. If not, see <http://www.gnu.org/licenses/>.
 *
 * @file
 * @ingroup Skins
 */

namespace Skins\Chameleon\Tests\Unit\Menu;
use Skins\Chameleon\Menu\MenuFromLines;

/**
 * Class MenuFromLinesTest
 *
 * @coversDefaultClass \Skins\Chameleon\Menu\MenuFromLines
 * @covers ::<private>
 * @covers ::<protected>
 *
 * @group   skins-chameleon
 * @group   mediawiki-databaseless
 *
 * @author  Stephan Gambke
 * @since   1.1.2
 * @ingroup Skins
 * @ingroup Test
 */
class MenuFromLinesTest extends \PHPUnit_Framework_TestCase {

	/**
	 * @covers ::__construct
	 */
	public function testCanConstruct() {

		$lines = array();

		/** @var MenuFromLines $instance */
		$instance = new MenuFromLines( $lines, true );

		$this->assertInstanceOf(
			'Skins\Chameleon\Menu\MenuFromLines',
			$instance
		);
	}

	/**
	 * @covers ::__construct
	 *
	 * Just checking that giving an item data parameter does not immediately
	 * break the constructor. No actual functionality beyond that is tested.
	 */
	public function testCanConstructWithItemData() {

		$lines = array();

		/** @var MenuFromLines $instance */
		$instance = new MenuFromLines( $lines, true, array(
			'text'  => 'foo',
			'href'  => 'bar',
			'depth' => 42
		) );

		$this->assertInstanceOf(
			'Skins\Chameleon\Menu\MenuFromLines',
			$instance
		);
	}

	/**
	 * @covers ::getHtml
	 * @covers ::parseLines
	 */
	public function testBuildEmptyMenu() {

		$lines = array(
			'',
			'* Foo',
			'** | FooBar',
			'*** http://foo.com | FooBarBaz',
			'*** # | FooBarQuok',
			'* Test | Bar',
		);

		$ap = $GLOBALS[ 'wgArticlePath' ];

		$expected =
			"\t<ul>\n" .
			"\t\t<li>\n" .
			"\t\t\t<a href=\"" . str_replace( '$1', 'Foo', $ap ) . "\">Foo</a>\n" .
			"\t\t\t<ul>\n" .
			"\t\t\t\t<li>\n" .
			"\t\t\t\t\t<a href=\"#" . "\">FooBar</a>\n" .
			"\t\t\t\t\t<ul>\n" .
			"\t\t\t\t\t\t<li><a href=\"http://foo.com\">FooBarBaz</a></li>\n" .
			"\t\t\t\t\t\t<li><a href=\"#\">FooBarQuok</a></li>\n" .
			"\t\t\t\t\t</ul>\n" .
			"\t\t\t\t</li>\n" .
			"\t\t\t</ul>\n" .
			"\t\t</li>\n" .
			"\t\t<li><a href=\"" . str_replace( '$1', 'Test', $ap ) . "\">Bar</a></li>\n" .
			"\t</ul>\n";

		/** @var MenuFromLines $instance */
		$instance = new MenuFromLines( $lines, true );

		$this->assertEquals(
			$expected,
			$instance->getHtml()
		);

	}
}