MediaWiki  1.33.0
wfUrlencodeTest.php
Go to the documentation of this file.
1 <?php
2 
10  # ### TESTS ##############################################################
11 
15  public function testEncodingUrlWith( $input, $expected ) {
16  $this->verifyEncodingFor( 'Apache', $input, $expected );
17  }
18 
22  public function testEncodingUrlWithMicrosoftIis7( $input, $expected ) {
23  $this->verifyEncodingFor( 'Microsoft-IIS/7', $input, $expected );
24  }
25 
26  # ### HELPERS #############################################################
27 
32  private function verifyEncodingFor( $server, $input, $expectations ) {
33  $expected = $this->extractExpect( $server, $expectations );
34 
35  // save up global
36  $old = $_SERVER['SERVER_SOFTWARE'] ?? null;
37  $_SERVER['SERVER_SOFTWARE'] = $server;
38  wfUrlencode( null );
39 
40  // do the requested test
41  $this->assertEquals(
42  $expected,
44  "Encoding '$input' for server '$server' should be '$expected'"
45  );
46 
47  // restore global
48  if ( $old === null ) {
49  unset( $_SERVER['SERVER_SOFTWARE'] );
50  } else {
51  $_SERVER['SERVER_SOFTWARE'] = $old;
52  }
53  wfUrlencode( null );
54  }
55 
60  private function extractExpect( $server, $expectations ) {
61  if ( is_string( $expectations ) ) {
62  return $expectations;
63  } elseif ( is_array( $expectations ) ) {
64  if ( !array_key_exists( $server, $expectations ) ) {
65  throw new MWException( __METHOD__ . " expectation does not have any "
66  . "value for server name $server. Check the provider array.\n" );
67  } else {
68  return $expectations[$server];
69  }
70  } else {
71  throw new MWException( __METHOD__ . " given invalid expectation for "
72  . "'$server'. Should be a string or an array( <http server name> => <string> ).\n" );
73  }
74  }
75 
76  # ### PROVIDERS ###########################################################
77 
89  public static function provideURLS() {
90  return [
91  # ## RFC 1738 chars
92  // + is not safe
93  [ '+', '%2B' ],
94  // & and = not safe in queries
95  [ '&', '%26' ],
96  [ '=', '%3D' ],
97 
98  [ ':', [
99  'Apache' => ':',
100  'Microsoft-IIS/7' => '%3A',
101  ] ],
102 
103  // remaining chars do not need encoding
104  [
105  ';@$-_.!*',
106  ';@$-_.!*',
107  ],
108 
109  # ## Other tests
110  // slash remain unchanged. %2F seems to break things
111  [ '/', '/' ],
112  // T105265
113  [ '~', '~' ],
114 
115  // Other 'funnies' chars
116  [ '[]', '%5B%5D' ],
117  [ '<>', '%3C%3E' ],
118 
119  // Apostrophe is encoded
120  [ '\'', '%27' ],
121  ];
122  }
123 }
WfUrlencodeTest
The function only need a string parameter and might react to IIS7.0.
Definition: wfUrlencodeTest.php:9
wfUrlencode
wfUrlencode( $s)
We want some things to be included as literal characters in our title URLs for prettiness,...
Definition: GlobalFunctions.php:333
php
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
MWException
MediaWiki exception.
Definition: MWException.php:26
$input
if(is_array( $mode)) switch( $mode) $input
Definition: postprocess-phan.php:141
MediaWikiTestCase
Definition: MediaWikiTestCase.php:17
WfUrlencodeTest\verifyEncodingFor
verifyEncodingFor( $server, $input, $expectations)
Internal helper that actually run the test.
Definition: wfUrlencodeTest.php:32
WfUrlencodeTest\provideURLS
static provideURLS()
Format is either: [ 'input', 'expected' ]; Or: [ 'input', [ 'Apache', 'expected' ],...
Definition: wfUrlencodeTest.php:89
WfUrlencodeTest\testEncodingUrlWith
testEncodingUrlWith( $input, $expected)
provideURLS
Definition: wfUrlencodeTest.php:15
WfUrlencodeTest\extractExpect
extractExpect( $server, $expectations)
Interprets the provider array.
Definition: wfUrlencodeTest.php:60
WfUrlencodeTest\testEncodingUrlWithMicrosoftIis7
testEncodingUrlWithMicrosoftIis7( $input, $expected)
provideURLS
Definition: wfUrlencodeTest.php:22