MediaWiki REL1_31
ApiFormatPhpTest.php
Go to the documentation of this file.
1<?php
2
8
9 protected $printerName = 'php';
10
11 private static function addFormatVersion( $format, $arr ) {
12 foreach ( $arr as &$p ) {
13 if ( !isset( $p[2] ) ) {
14 $p[2] = [ 'formatversion' => $format ];
15 } else {
16 $p[2]['formatversion'] = $format;
17 }
18 }
19 return $arr;
20 }
21
22 public static function provideGeneralEncoding() {
23 // phpcs:disable Generic.Files.LineLength
24 return array_merge(
25 self::addFormatVersion( 1, [
26 // Basic types
27 [ [ null ], 'a:1:{i:0;N;}' ],
28 [ [ true ], 'a:1:{i:0;s:0:"";}' ],
29 [ [ false ], 'a:0:{}' ],
30 [ [ true, ApiResult::META_BC_BOOLS => [ 0 ] ],
31 'a:1:{i:0;b:1;}' ],
32 [ [ false, ApiResult::META_BC_BOOLS => [ 0 ] ],
33 'a:1:{i:0;b:0;}' ],
34 [ [ 42 ], 'a:1:{i:0;i:42;}' ],
35 [ [ 42.5 ], 'a:1:{i:0;d:42.5;}' ],
36 [ [ 1e42 ], 'a:1:{i:0;d:1.0E+42;}' ],
37 [ [ 'foo' ], 'a:1:{i:0;s:3:"foo";}' ],
38 [ [ 'fóo' ], 'a:1:{i:0;s:4:"fóo";}' ],
39
40 // Arrays and objects
41 [ [ [] ], 'a:1:{i:0;a:0:{}}' ],
42 [ [ [ 1 ] ], 'a:1:{i:0;a:1:{i:0;i:1;}}' ],
43 [ [ [ 'x' => 1 ] ], 'a:1:{i:0;a:1:{s:1:"x";i:1;}}' ],
44 [ [ [ 2 => 1 ] ], 'a:1:{i:0;a:1:{i:2;i:1;}}' ],
45 [ [ (object)[] ], 'a:1:{i:0;a:0:{}}' ],
46 [ [ [ 1, ApiResult::META_TYPE => 'assoc' ] ], 'a:1:{i:0;a:1:{i:0;i:1;}}' ],
47 [ [ [ 'x' => 1, ApiResult::META_TYPE => 'array' ] ], 'a:1:{i:0;a:1:{i:0;i:1;}}' ],
48 [ [ [ 'x' => 1, ApiResult::META_TYPE => 'kvp' ] ], 'a:1:{i:0;a:1:{s:1:"x";i:1;}}' ],
49 [ [ [ 'x' => 1, ApiResult::META_TYPE => 'BCkvp', ApiResult::META_KVP_KEY_NAME => 'key' ] ],
50 'a:1:{i:0;a:1:{i:0;a:2:{s:3:"key";s:1:"x";s:1:"*";i:1;}}}' ],
51 [ [ [ 'x' => 1, ApiResult::META_TYPE => 'BCarray' ] ], 'a:1:{i:0;a:1:{s:1:"x";i:1;}}' ],
52 [ [ [ 'a', 'b', ApiResult::META_TYPE => 'BCassoc' ] ], 'a:1:{i:0;a:2:{i:0;s:1:"a";i:1;s:1:"b";}}' ],
53
54 // Content
55 [ [ 'content' => 'foo', ApiResult::META_CONTENT => 'content' ],
56 'a:1:{s:1:"*";s:3:"foo";}' ],
57
58 // BC Subelements
59 [ [ 'foo' => 'foo', ApiResult::META_BC_SUBELEMENTS => [ 'foo' ] ],
60 'a:1:{s:3:"foo";a:1:{s:1:"*";s:3:"foo";}}' ],
61 ] ),
62 self::addFormatVersion( 2, [
63 // Basic types
64 [ [ null ], 'a:1:{i:0;N;}' ],
65 [ [ true ], 'a:1:{i:0;b:1;}' ],
66 [ [ false ], 'a:1:{i:0;b:0;}' ],
67 [ [ true, ApiResult::META_BC_BOOLS => [ 0 ] ],
68 'a:1:{i:0;b:1;}' ],
69 [ [ false, ApiResult::META_BC_BOOLS => [ 0 ] ],
70 'a:1:{i:0;b:0;}' ],
71 [ [ 42 ], 'a:1:{i:0;i:42;}' ],
72 [ [ 42.5 ], 'a:1:{i:0;d:42.5;}' ],
73 [ [ 1e42 ], 'a:1:{i:0;d:1.0E+42;}' ],
74 [ [ 'foo' ], 'a:1:{i:0;s:3:"foo";}' ],
75 [ [ 'fóo' ], 'a:1:{i:0;s:4:"fóo";}' ],
76
77 // Arrays and objects
78 [ [ [] ], 'a:1:{i:0;a:0:{}}' ],
79 [ [ [ 1 ] ], 'a:1:{i:0;a:1:{i:0;i:1;}}' ],
80 [ [ [ 'x' => 1 ] ], 'a:1:{i:0;a:1:{s:1:"x";i:1;}}' ],
81 [ [ [ 2 => 1 ] ], 'a:1:{i:0;a:1:{i:2;i:1;}}' ],
82 [ [ (object)[] ], 'a:1:{i:0;a:0:{}}' ],
83 [ [ [ 1, ApiResult::META_TYPE => 'assoc' ] ], 'a:1:{i:0;a:1:{i:0;i:1;}}' ],
84 [ [ [ 'x' => 1, ApiResult::META_TYPE => 'array' ] ], 'a:1:{i:0;a:1:{i:0;i:1;}}' ],
85 [ [ [ 'x' => 1, ApiResult::META_TYPE => 'kvp' ] ], 'a:1:{i:0;a:1:{s:1:"x";i:1;}}' ],
86 [ [ [ 'x' => 1, ApiResult::META_TYPE => 'BCkvp', ApiResult::META_KVP_KEY_NAME => 'key' ] ],
87 'a:1:{i:0;a:1:{s:1:"x";i:1;}}' ],
88 [ [ [ 'x' => 1, ApiResult::META_TYPE => 'BCarray' ] ], 'a:1:{i:0;a:1:{i:0;i:1;}}' ],
89 [ [ [ 'a', 'b', ApiResult::META_TYPE => 'BCassoc' ] ], 'a:1:{i:0;a:2:{i:0;s:1:"a";i:1;s:1:"b";}}' ],
90
91 // Content
92 [ [ 'content' => 'foo', ApiResult::META_CONTENT => 'content' ],
93 'a:1:{s:7:"content";s:3:"foo";}' ],
94
95 // BC Subelements
96 [ [ 'foo' => 'foo', ApiResult::META_BC_SUBELEMENTS => [ 'foo' ] ],
97 'a:1:{s:3:"foo";s:3:"foo";}' ],
98 ] )
99 );
100 // phpcs:enable
101 }
102
103 public function testCrossDomainMangling() {
104 $config = new HashConfig( [ 'MangleFlashPolicy' => false ] );
106 $context->setConfig( new MultiConfig( [
107 $config,
108 $context->getConfig(),
109 ] ) );
110 $main = new ApiMain( $context );
111 $main->getResult()->addValue( null, null, '< Cross-Domain-Policy >' );
112
113 $printer = $main->createPrinterByName( 'php' );
114 ob_start( 'MediaWiki\\OutputHandler::handle' );
115 $printer->initPrinter();
116 $printer->execute();
117 $printer->closePrinter();
118 $ret = ob_get_clean();
119 $this->assertSame( 'a:1:{i:0;s:23:"< Cross-Domain-Policy >";}', $ret );
120
121 $config->set( 'MangleFlashPolicy', true );
122 $printer = $main->createPrinterByName( 'php' );
123 ob_start( 'MediaWiki\\OutputHandler::handle' );
124 try {
125 $printer->initPrinter();
126 $printer->execute();
127 $printer->closePrinter();
128 ob_end_clean();
129 $this->fail( 'Expected exception not thrown' );
130 } catch ( ApiUsageException $ex ) {
131 ob_end_clean();
132 $this->assertTrue(
133 $ex->getStatusValue()->hasMessage( 'apierror-formatphp' ),
134 'Expected exception'
135 );
136 }
137 }
138
139}
API ApiFormatPhp.
static provideGeneralEncoding()
Return general data to be encoded for testing.
static addFormatVersion( $format, $arr)
This is the main API class, used for both external and internal processing.
Definition ApiMain.php:43
const META_TYPE
Key for the 'type' metadata item.
const META_BC_BOOLS
Key for the 'BC bools' metadata item.
const META_CONTENT
Key for the 'content' metadata item.
Definition ApiResult.php:88
const META_KVP_KEY_NAME
Key for the metadata item whose value specifies the name used for the kvp key in the alternative outp...
const META_BC_SUBELEMENTS
Key for the 'BC subelements' metadata item.
Exception used to abort API execution with an error.
getStatusValue()
Fetch the error status.
A Config instance which stores all settings as a member variable.
Provides a fallback sequence for Config objects.
Group all the pieces relevant to the context of a request into one instance.
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
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition hooks.txt:2811
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 & $ret
Definition hooks.txt:2005
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:37