4 * @covers WikiReference
7 class WikiReferenceTest
extends PHPUnit_Framework_TestCase
{
9 public function provideGetDisplayName() {
11 'http' => [ 'foo.bar', 'http://foo.bar' ],
12 'https' => [ 'foo.bar', 'http://foo.bar' ],
14 // apparently, this is the expected behavior
15 'invalid' => [ 'purple kittens', 'purple kittens' ],
20 * @dataProvider provideGetDisplayName
22 public function testGetDisplayName( $expected, $canonicalServer ) {
23 $reference = new WikiReference( $canonicalServer, '/wiki/$1' );
24 $this->assertEquals( $expected, $reference->getDisplayName() );
27 public function testGetCanonicalServer() {
28 $reference = new WikiReference( 'https://acme.com', '/wiki/$1', '//acme.com' );
29 $this->assertEquals( 'https://acme.com', $reference->getCanonicalServer() );
32 public function provideGetCanonicalUrl() {
35 'https://acme.com/wiki/Foo',
43 'https://acme.com/wiki/Foo',
51 'https://acme.com/wiki/Foo#Bar',
58 'double fragment' => [
59 'https://acme.com/wiki/Foo#Bar%23Xus',
66 'escaped fragment' => [
67 'https://acme.com/wiki/Foo%23Bar',
75 'https://acme.com/Foo',
86 * @dataProvider provideGetCanonicalUrl
88 public function testGetCanonicalUrl(
89 $expected, $canonicalServer, $server, $path, $page, $fragmentId
91 $reference = new WikiReference( $canonicalServer, $path, $server );
92 $this->assertEquals( $expected, $reference->getCanonicalUrl( $page, $fragmentId ) );
96 * @dataProvider provideGetCanonicalUrl
97 * @note getUrl is an alias for getCanonicalUrl
99 public function testGetUrl( $expected, $canonicalServer, $server, $path, $page, $fragmentId ) {
100 $reference = new WikiReference( $canonicalServer, $path, $server );
101 $this->assertEquals( $expected, $reference->getUrl( $page, $fragmentId ) );
104 public function provideGetFullUrl() {
107 '//acme.com/wiki/Foo',
114 'empty fragment' => [
115 '//acme.com/wiki/Foo',
123 '//acme.com/wiki/Foo#Bar',
130 'double fragment' => [
131 '//acme.com/wiki/Foo#Bar%23Xus',
138 'escaped fragment' => [
139 '//acme.com/wiki/Foo%23Bar',
158 * @dataProvider provideGetFullUrl
160 public function testGetFullUrl( $expected, $canonicalServer, $server, $path, $page, $fragmentId ) {
161 $reference = new WikiReference( $canonicalServer, $path, $server );
162 $this->assertEquals( $expected, $reference->getFullUrl( $page, $fragmentId ) );