MediaWiki REL1_30
TitleValueTest.php
Go to the documentation of this file.
1<?php
28
29 public function goodConstructorProvider() {
30 return [
31 [ NS_USER, 'TestThis', 'stuff', '', true, false ],
32 [ NS_USER, 'TestThis', '', 'baz', false, true ],
33 ];
34 }
35
39 public function testConstruction( $ns, $text, $fragment, $interwiki, $hasFragment,
40 $hasInterwiki
41 ) {
42 $title = new TitleValue( $ns, $text, $fragment, $interwiki );
43
44 $this->assertEquals( $ns, $title->getNamespace() );
45 $this->assertTrue( $title->inNamespace( $ns ) );
46 $this->assertEquals( $text, $title->getText() );
47 $this->assertEquals( $fragment, $title->getFragment() );
48 $this->assertEquals( $hasFragment, $title->hasFragment() );
49 $this->assertEquals( $interwiki, $title->getInterwiki() );
50 $this->assertEquals( $hasInterwiki, $title->isExternal() );
51 }
52
53 public function badConstructorProvider() {
54 return [
55 [ 'foo', 'title', 'fragment', '' ],
56 [ null, 'title', 'fragment', '' ],
57 [ 2.3, 'title', 'fragment', '' ],
58
59 [ NS_MAIN, 5, 'fragment', '' ],
60 [ NS_MAIN, null, 'fragment', '' ],
61 [ NS_MAIN, '', 'fragment', '' ],
62 [ NS_MAIN, 'foo bar', '', '' ],
63 [ NS_MAIN, 'bar_', '', '' ],
64 [ NS_MAIN, '_foo', '', '' ],
65 [ NS_MAIN, ' eek ', '', '' ],
66
67 [ NS_MAIN, 'title', 5, '' ],
68 [ NS_MAIN, 'title', null, '' ],
69 [ NS_MAIN, 'title', [], '' ],
70
71 [ NS_MAIN, 'title', '', 5 ],
72 [ NS_MAIN, 'title', null, 5 ],
73 [ NS_MAIN, 'title', [], 5 ],
74 ];
75 }
76
80 public function testConstructionErrors( $ns, $text, $fragment, $interwiki ) {
81 $this->setExpectedException( 'InvalidArgumentException' );
82 new TitleValue( $ns, $text, $fragment, $interwiki );
83 }
84
85 public function fragmentTitleProvider() {
86 return [
87 [ new TitleValue( NS_MAIN, 'Test' ), 'foo' ],
88 [ new TitleValue( NS_TALK, 'Test', 'foo' ), '' ],
89 [ new TitleValue( NS_CATEGORY, 'Test', 'foo' ), 'bar' ],
90 ];
91 }
92
96 public function testCreateFragmentTitle( TitleValue $title, $fragment ) {
97 $fragmentTitle = $title->createFragmentTarget( $fragment );
98
99 $this->assertEquals( $title->getNamespace(), $fragmentTitle->getNamespace() );
100 $this->assertEquals( $title->getText(), $fragmentTitle->getText() );
101 $this->assertEquals( $fragment, $fragmentTitle->getFragment() );
102 }
103
104 public function getTextProvider() {
105 return [
106 [ 'Foo', 'Foo' ],
107 [ 'Foo_Bar', 'Foo Bar' ],
108 ];
109 }
110
114 public function testGetText( $dbkey, $text ) {
115 $title = new TitleValue( NS_MAIN, $dbkey );
116
117 $this->assertEquals( $text, $title->getText() );
118 }
119}
testGetText( $dbkey, $text)
getTextProvider
testConstructionErrors( $ns, $text, $fragment, $interwiki)
badConstructorProvider
testConstruction( $ns, $text, $fragment, $interwiki, $hasFragment, $hasInterwiki)
goodConstructorProvider
testCreateFragmentTitle(TitleValue $title, $fragment)
fragmentTitleProvider
Represents a page (or page fragment) title within MediaWiki.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition hooks.txt:1976
processing should stop and the error should be shown to the user * false
Definition hooks.txt:187
const NS_USER
Definition Defines.php:67
const NS_MAIN
Definition Defines.php:65
const NS_TALK
Definition Defines.php:66
const NS_CATEGORY
Definition Defines.php:79