Type hint against LinkTarget in WatchedItemStore
[lhc/web/wiklou.git] / tests / phpunit / includes / title / TitleValueTest.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @author Daniel Kinzler
20 */
21
22 /**
23 * @covers TitleValue
24 *
25 * @group Title
26 */
27 class TitleValueTest extends MediaWikiTestCase {
28
29 public function goodConstructorProvider() {
30 return [
31 [ NS_MAIN, '', 'fragment', '', true, false ],
32 [ NS_USER, 'TestThis', 'stuff', '', true, false ],
33 [ NS_USER, 'TestThis', '', 'baz', false, true ],
34 ];
35 }
36
37 /**
38 * @dataProvider goodConstructorProvider
39 */
40 public function testConstruction( $ns, $text, $fragment, $interwiki, $hasFragment,
41 $hasInterwiki
42 ) {
43 $title = new TitleValue( $ns, $text, $fragment, $interwiki );
44
45 $this->assertEquals( $ns, $title->getNamespace() );
46 $this->assertTrue( $title->inNamespace( $ns ) );
47 $this->assertEquals( $text, $title->getText() );
48 $this->assertEquals( $fragment, $title->getFragment() );
49 $this->assertEquals( $hasFragment, $title->hasFragment() );
50 $this->assertEquals( $interwiki, $title->getInterwiki() );
51 $this->assertEquals( $hasInterwiki, $title->isExternal() );
52 }
53
54 public function badConstructorProvider() {
55 return [
56 [ 'foo', 'title', 'fragment', '' ],
57 [ null, 'title', 'fragment', '' ],
58 [ 2.3, 'title', 'fragment', '' ],
59
60 [ NS_MAIN, 5, 'fragment', '' ],
61 [ NS_MAIN, null, 'fragment', '' ],
62 [ NS_USER, '', 'fragment', '' ],
63 [ NS_MAIN, 'foo bar', '', '' ],
64 [ NS_MAIN, 'bar_', '', '' ],
65 [ NS_MAIN, '_foo', '', '' ],
66 [ NS_MAIN, ' eek ', '', '' ],
67
68 [ NS_MAIN, 'title', 5, '' ],
69 [ NS_MAIN, 'title', null, '' ],
70 [ NS_MAIN, 'title', [], '' ],
71
72 [ NS_MAIN, 'title', '', 5 ],
73 [ NS_MAIN, 'title', null, 5 ],
74 [ NS_MAIN, 'title', [], 5 ],
75 ];
76 }
77
78 /**
79 * @dataProvider badConstructorProvider
80 */
81 public function testConstructionErrors( $ns, $text, $fragment, $interwiki ) {
82 $this->setExpectedException( InvalidArgumentException::class );
83 new TitleValue( $ns, $text, $fragment, $interwiki );
84 }
85
86 public function fragmentTitleProvider() {
87 return [
88 [ new TitleValue( NS_MAIN, 'Test' ), 'foo' ],
89 [ new TitleValue( NS_TALK, 'Test', 'foo' ), '' ],
90 [ new TitleValue( NS_CATEGORY, 'Test', 'foo' ), 'bar' ],
91 ];
92 }
93
94 /**
95 * @dataProvider fragmentTitleProvider
96 */
97 public function testCreateFragmentTitle( TitleValue $title, $fragment ) {
98 $fragmentTitle = $title->createFragmentTarget( $fragment );
99
100 $this->assertEquals( $title->getNamespace(), $fragmentTitle->getNamespace() );
101 $this->assertEquals( $title->getText(), $fragmentTitle->getText() );
102 $this->assertEquals( $fragment, $fragmentTitle->getFragment() );
103 }
104
105 public function getTextProvider() {
106 return [
107 [ 'Foo', 'Foo' ],
108 [ 'Foo_Bar', 'Foo Bar' ],
109 ];
110 }
111
112 /**
113 * @dataProvider getTextProvider
114 */
115 public function testGetText( $dbkey, $text ) {
116 $title = new TitleValue( NS_MAIN, $dbkey );
117
118 $this->assertEquals( $text, $title->getText() );
119 }
120
121 public function provideTestToString() {
122 yield [
123 new TitleValue( 0, 'Foo' ),
124 '0:Foo'
125 ];
126 yield [
127 new TitleValue( 1, 'Bar_Baz' ),
128 '1:Bar_Baz'
129 ];
130 yield [
131 new TitleValue( 9, 'JoJo', 'Frag' ),
132 '9:JoJo#Frag'
133 ];
134 yield [
135 new TitleValue( 200, 'tea', 'Fragment', 'wikicode' ),
136 'wikicode:200:tea#Fragment'
137 ];
138 }
139
140 /**
141 * @dataProvider provideTestToString
142 */
143 public function testToString( TitleValue $value, $expected ) {
144 $this->assertSame(
145 $expected,
146 $value->__toString()
147 );
148 }
149 }