MediaWiki  1.28.1
wfAssembleUrlTest.php
Go to the documentation of this file.
1 <?php
10  public function testWfAssembleUrl( $parts, $output ) {
11  $partsDump = print_r( $parts, true );
12  $this->assertEquals(
13  $output,
14  wfAssembleUrl( $parts ),
15  "Testing $partsDump assembles to $output"
16  );
17  }
18 
24  public static function provideURLParts() {
25  $schemes = [
26  '' => [],
27  '//' => [
28  'delimiter' => '//',
29  ],
30  'http://' => [
31  'scheme' => 'http',
32  'delimiter' => '://',
33  ],
34  ];
35 
36  $hosts = [
37  '' => [],
38  'example.com' => [
39  'host' => 'example.com',
40  ],
41  'example.com:123' => [
42  'host' => 'example.com',
43  'port' => 123,
44  ],
45  'id@example.com' => [
46  'user' => 'id',
47  'host' => 'example.com',
48  ],
49  'id@example.com:123' => [
50  'user' => 'id',
51  'host' => 'example.com',
52  'port' => 123,
53  ],
54  'id:key@example.com' => [
55  'user' => 'id',
56  'pass' => 'key',
57  'host' => 'example.com',
58  ],
59  'id:key@example.com:123' => [
60  'user' => 'id',
61  'pass' => 'key',
62  'host' => 'example.com',
63  'port' => 123,
64  ],
65  ];
66 
67  $cases = [];
68  foreach ( $schemes as $scheme => $schemeParts ) {
69  foreach ( $hosts as $host => $hostParts ) {
70  foreach ( [ '', '/path' ] as $path ) {
71  foreach ( [ '', 'query' ] as $query ) {
72  foreach ( [ '', 'fragment' ] as $fragment ) {
73  $parts = array_merge(
74  $schemeParts,
75  $hostParts
76  );
77  $url = $scheme .
78  $host .
79  $path;
80 
81  if ( $path ) {
82  $parts['path'] = $path;
83  }
84  if ( $query ) {
85  $parts['query'] = $query;
86  $url .= '?' . $query;
87  }
88  if ( $fragment ) {
89  $parts['fragment'] = $fragment;
90  $url .= '#' . $fragment;
91  }
92 
93  $cases[] = [
94  $parts,
95  $url,
96  ];
97  }
98  }
99  }
100  }
101  }
102 
103  $complexURL = 'http://id:key@example.org:321' .
104  '/over/there?name=ferret&foo=bar#nose';
105  $cases[] = [
106  wfParseUrl( $complexURL ),
107  $complexURL,
108  ];
109 
110  return $cases;
111  }
112 }
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1555
testWfAssembleUrl($parts, $output)
provideURLParts
static provideURLParts()
Provider of URL parts for testing wfAssembleUrl()
wfAssembleUrl($urlParts)
This function will reassemble a URL parsed with wfParseURL.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object & $output
Definition: hooks.txt:1046
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
GlobalFunctions wfAssembleUrl.
wfParseUrl($url)
parse_url() work-alike, but non-broken.