13 $server =
'http://doc.example.org';
16 'wgServer' => $server,
17 'wgCanonicalServer' => $server,
31 'Minified output should be in the form expected.'
38 [
"\r\t\f \v\n\r",
"" ],
39 [
"foo, bar {\n\tprop: value;\n}",
"foo,bar{prop:value}" ],
43 [
"/*******\n foo\n *******/",
"" ],
44 [
"/*!\n foo\n */",
"" ],
47 [
"/* comment */foo, bar {\n\tprop: value;\n}",
"foo,bar{prop:value}" ],
48 [
"foo/* comment */, bar {\n\tprop: value;\n}",
"foo,bar{prop:value}" ],
49 [
"foo,/* comment */ bar {\n\tprop: value;\n}",
"foo,bar{prop:value}" ],
50 [
"foo, bar/* comment */ {\n\tprop: value;\n}",
"foo,bar{prop:value}" ],
51 [
"foo, bar {\n\t/* comment */prop: value;\n}",
"foo,bar{prop:value}" ],
52 [
"foo, bar {\n\tprop: /* comment */value;\n}",
"foo,bar{prop:value}" ],
53 [
"foo, bar {\n\tprop: value /* comment */;\n}",
"foo,bar{prop:value }" ],
54 [
"foo, bar {\n\tprop: value; /* comment */\n}",
"foo,bar{prop:value; }" ],
58 [
'foo { prop: value ;}',
'foo{prop:value }' ],
59 [
'foo { prop : value; }',
'foo{prop :value}' ],
60 [
'foo { prop: value ; }',
'foo{prop:value }' ],
61 [
'foo { font-family: "foo" , "bar"; }',
'foo{font-family:"foo" ,"bar"}' ],
62 [
"foo { src:\n\turl('foo') ,\n\turl('bar') ; }",
"foo{src:url('foo') ,url('bar') }" ],
66 [
'foo { content: ""; }',
'foo{content:""}' ],
67 [
"foo { content: ''; }",
"foo{content:''}" ],
68 [
'foo { content: "\'"; }',
'foo{content:"\'"}' ],
69 [
"foo { content: '\"'; }",
"foo{content:'\"'}" ],
71 [
'foo { content: " "; }',
'foo{content:" "}' ],
83 $remapped = call_user_func_array(
'CSSMin::remap',
$params );
85 $messageAdd =
" Case: $message";
89 'CSSMin::remap should return the expected url form.' . $messageAdd
99 [
'foo { prop: url(bar.png); }',
false,
'http://example.org',
false ],
100 'foo { prop: url(http://example.org/bar.png); }',
103 'Without trailing slash',
104 [
'foo { prop: url(../bar.png); }',
false,
'http://example.org/quux',
false ],
105 'foo { prop: url(http://example.org/bar.png); }',
108 'With trailing slash on remote (bug 27052)',
109 [
'foo { prop: url(../bar.png); }',
false,
'http://example.org/quux/',
false ],
110 'foo { prop: url(http://example.org/bar.png); }',
113 'Guard against stripping double slashes from query',
114 [
'foo { prop: url(bar.png?corge=//grault); }',
false,
'http://example.org/quux/',
false ],
115 'foo { prop: url(http://example.org/quux/bar.png?corge=//grault); }',
118 'Expand absolute paths',
119 [
'foo { prop: url(/w/skin/images/bar.png); }',
false,
'http://example.org/quux',
false ],
120 'foo { prop: url(http://doc.example.org/w/skin/images/bar.png); }',
132 $localPath = __DIR__ .
'/../../data/cssmin/';
133 $remotePath =
'http://localhost/w/';
135 $realOutput =
CSSMin::remap( $input, $localPath, $remotePath );
136 $this->assertEquals( $expectedOutput, $realOutput,
"CSSMin::remap: $message" );
141 [
true,
'http://localhost/w/red.gif?123' ],
142 [
true,
'https://example.org/x.png' ],
143 [
true,
'//example.org/x.y.z/image.png' ],
144 [
true,
'//localhost/styles.css?query=yes' ],
145 [
true,
'data:image/gif;base64,R0lGODlhAQABAIAAAP8AADAAACwAAAAAAQABAAACAkQBADs=' ],
148 [
false,
'./x.gif' ],
149 [
false,
'../x.gif' ],
165 [
false,
'./x.gif' ],
166 [
false,
'../x.gif' ],
185 $red =
'data:image/gif;base64,R0lGODlhAQABAIAAAP8AADAAACwAAAAAAQABAAACAkQBADs=';
186 $green =
'data:image/gif;base64,R0lGODlhAQABAIAAAACAADAAACwAAAAAAQABAAACAkQBADs=';
187 $svg =
'data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A'
188 .
'%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228%22%20height%3D'
189 .
'%228%22%3E%0A%3Ccircle%20cx%3D%224%22%20cy%3D%224%22%20r%3D%222%22%2F%3E%0A%3C%2Fsvg%3E%0A';
195 'foo { background: url(red.gif); }',
196 'foo { background: url(http://localhost/w/red.gif?34ac6); }',
199 'Regular file (missing)',
200 'foo { background: url(theColorOfHerHair.gif); }',
201 'foo { background: url(http://localhost/w/theColorOfHerHair.gif); }',
205 'foo { background: url(http://example.org/w/foo.png); }',
206 'foo { background: url(http://example.org/w/foo.png); }',
209 'Protocol-relative remote URL',
210 'foo { background: url(//example.org/w/foo.png); }',
211 'foo { background: url(//example.org/w/foo.png); }',
214 'Remote URL with query',
215 'foo { background: url(http://example.org/w/foo.png?query=yes); }',
216 'foo { background: url(http://example.org/w/foo.png?query=yes); }',
219 'Protocol-relative remote URL with query',
220 'foo { background: url(//example.org/w/foo.png?query=yes); }',
221 'foo { background: url(//example.org/w/foo.png?query=yes); }',
224 'Domain-relative URL',
225 'foo { background: url(/static/foo.png); }',
226 'foo { background: url(http://doc.example.org/static/foo.png); }',
229 'Domain-relative URL with query',
230 'foo { background: url(/static/foo.png?query=yes); }',
231 'foo { background: url(http://doc.example.org/static/foo.png?query=yes); }',
234 'Remote URL (unnecessary quotes not preserved)',
235 'foo { background: url("http://example.org/w/foo.png"); }',
236 'foo { background: url(http://example.org/w/foo.png); }',
240 'foo { /* @embed */ background: url(red.gif); }',
241 "foo { background: url($red); background: url(http://localhost/w/red.gif?34ac6)!ie; }",
244 'Embedded file, other comments before the rule',
245 "foo { /* Bar. */ /* @embed */ background: url(red.gif); }",
246 "foo { /* Bar. */ background: url($red); /* Bar. */ background: url(http://localhost/w/red.gif?34ac6)!ie; }",
249 'Can not re-embed data: URIs',
250 "foo { /* @embed */ background: url($red); }",
251 "foo { background: url($red); }",
254 'Can not remap data: URIs',
255 "foo { background: url($red); }",
256 "foo { background: url($red); }",
259 'Can not embed remote URLs',
260 'foo { /* @embed */ background: url(http://example.org/w/foo.png); }',
261 'foo { background: url(http://example.org/w/foo.png); }',
264 'Embedded file (inline @embed)',
265 'foo { background: /* @embed */ url(red.gif); }',
266 "foo { background: url($red); "
267 .
"background: url(http://localhost/w/red.gif?34ac6)!ie; }",
270 'Can not embed large files',
271 'foo { /* @embed */ background: url(large.png); }',
272 "foo { background: url(http://localhost/w/large.png?e3d1f); }",
275 'SVG files are embedded without base64 encoding and unnecessary IE 6 and 7 fallback',
276 'foo { /* @embed */ background: url(circle.svg); }',
277 "foo { background: url($svg); }",
280 'Two regular files in one rule',
281 'foo { background: url(red.gif), url(green.gif); }',
282 'foo { background: url(http://localhost/w/red.gif?34ac6), '
283 .
'url(http://localhost/w/green.gif?13651); }',
286 'Two embedded files in one rule',
287 'foo { /* @embed */ background: url(red.gif), url(green.gif); }',
288 "foo { background: url($red), url($green); "
289 .
"background: url(http://localhost/w/red.gif?34ac6), "
290 .
"url(http://localhost/w/green.gif?13651)!ie; }",
293 'Two embedded files in one rule (inline @embed)',
294 'foo { background: /* @embed */ url(red.gif), /* @embed */ url(green.gif); }',
295 "foo { background: url($red), url($green); "
296 .
"background: url(http://localhost/w/red.gif?34ac6), "
297 .
"url(http://localhost/w/green.gif?13651)!ie; }",
300 'Two embedded files in one rule (inline @embed), one too large',
301 'foo { background: /* @embed */ url(red.gif), /* @embed */ url(large.png); }',
302 "foo { background: url($red), url(http://localhost/w/large.png?e3d1f); "
303 .
"background: url(http://localhost/w/red.gif?34ac6), "
304 .
"url(http://localhost/w/large.png?e3d1f)!ie; }",
307 'Practical example with some noise',
308 'foo { /* @embed */ background: #f9f9f9 url(red.gif) 0 0 no-repeat; }',
309 "foo { background: #f9f9f9 url($red) 0 0 no-repeat; "
310 .
"background: #f9f9f9 url(http://localhost/w/red.gif?34ac6) 0 0 no-repeat!ie; }",
313 'Does not mess with other properties',
314 'foo { color: red; background: url(red.gif); font-size: small; }',
315 'foo { color: red; background: url(http://localhost/w/red.gif?34ac6); font-size: small; }',
318 'Spacing and miscellanea not changed (1)',
319 'foo { background: url(red.gif); }',
320 'foo { background: url(http://localhost/w/red.gif?34ac6); }',
323 'Spacing and miscellanea not changed (2)',
324 'foo {background:url(red.gif)}',
325 'foo {background:url(http://localhost/w/red.gif?34ac6)}',
328 'Spaces within url() parentheses are ignored',
329 'foo { background: url( red.gif ); }',
330 'foo { background: url(http://localhost/w/red.gif?34ac6); }',
333 '@import rule to local file (should we remap this?)',
334 '@import url(/styles.css)',
335 '@import url(http://doc.example.org/styles.css)',
338 '@import rule to URL (should we remap this?)',
339 '@import url(//localhost/styles.css?query=yes)',
340 '@import url(//localhost/styles.css?query=yes)',
343 'Simple case with comments before url',
344 'foo { prop: /* some {funny;} comment */ url(bar.png); }',
345 'foo { prop: /* some {funny;} comment */ url(http://localhost/w/bar.png); }',
348 'Simple case with comments after url',
349 'foo { prop: url(red.gif)/* some {funny;} comment */ ; }',
350 'foo { prop: url(http://localhost/w/red.gif?34ac6)/* some {funny;} comment */ ; }',
353 'Embedded file with comment before url',
354 'foo { /* @embed */ background: /* some {funny;} comment */ url(red.gif); }',
355 "foo { background: /* some {funny;} comment */ url($red); background: /* some {funny;} comment */ url(http://localhost/w/red.gif?34ac6)!ie; }",
358 'Embedded file with comments inside and outside the rule',
359 'foo { /* @embed */ background: url(red.gif) /* some {foo;} comment */; /* some {bar;} comment */ }',
360 "foo { background: url($red) /* some {foo;} comment */; background: url(http://localhost/w/red.gif?34ac6) /* some {foo;} comment */!ie; /* some {bar;} comment */ }",
363 'Embedded file with comment outside the rule',
364 'foo { /* @embed */ background: url(red.gif); /* some {funny;} comment */ }',
365 "foo { background: url($red); background: url(http://localhost/w/red.gif?34ac6)!ie; /* some {funny;} comment */ }",
368 'Rule with two urls, each with comments',
369 '{ background: /*asd*/ url(something.png); background: /*jkl*/ url(something.png); }',
370 '{ background: /*asd*/ url(http://localhost/w/something.png); background: /*jkl*/ url(http://localhost/w/something.png); }',
373 'Sanity check for offending line from jquery.ui.theme.css (bug 60077)',
374 '.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(images/ui-bg_glass_75_e6e6e6_1x400.png)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; }',
375 '.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(http://localhost/w/images/ui-bg_glass_75_e6e6e6_1x400.png)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; }',
391 "CSSMin::buildUrlValue: $message"
399 'scheme://user@domain:port/~user/fi%20le.png?query=yes&really=y+s',
400 'url(scheme://user@domain:port/~user/fi%20le.png?query=yes&really=y+s)',
404 'data:image/png;base64,R0lGODlh/+==',
405 'url(data:image/png;base64,R0lGODlh/+==)',
409 "https://en.wikipedia.org/wiki/Wendy's",
410 "url(\"https://en.wikipedia.org/wiki/Wendy's\")",
413 'URL with parentheses',
414 'https://en.wikipedia.org/wiki/Boston_(band)',
415 'url("https://en.wikipedia.org/wiki/Boston_(band)")',
428 $this->testMinifyOutput(
$code, $expectedOutput );
435 [
'foo { content: " "; }',
'foo{content:" "}' ],
437 [
"foo { content: '\t'; }",
"foo{content:'\t'}" ],
440 'foo::after { content: "{;}"; position: absolute; }',
441 'foo::after{content:"{;}";position:absolute}'
450 return parent::isRemoteUrl( $maybeUrl );
453 return parent::isLocalUrl( $maybeUrl );
static provideStringCases()
testRemapRemapping($message, $input, $expectedOutput)
This tests basic functionality of CSSMin::remap.
processing should stop and the error should be shown to the user * false
testMinify($code, $expectedOutput)
provideMinifyCases CSSMin::minify
static provideMinifyCases()
This file test the CSSMin library shipped with Mediawiki.
static isLocalUrl($maybeUrl)
testMinifyWithCSSStringValues($code, $expectedOutput)
Seperated because they are currently broken (bug 35492)
testIsLocalUrl($expect, $url)
provideIsLocalUrls CSSMin::isLocalUrl
testBuildUrlValue($message, $input, $expectedOutput)
This tests basic functionality of CSSMin::buildUrlValue.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
static remap($source, $local, $remote, $embedData=true)
Remaps CSS URL paths and automatically embeds data URIs for CSS rules or url() values preceded by an ...
testIsRemoteUrl($expect, $url)
provideIsRemoteUrl CSSMin::isRemoteUrl
static isRemoteUrl($maybeUrl)
static buildUrlValue($url)
Build a CSS 'url()' value for the given URL, quoting parentheses (and other funny characters) and esc...
static provideRemapRemappingCases()
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
static provideIsLocalUrls()
static minify($css)
Removes whitespace from CSS data.
testRemap($message, $params, $expectedOutput)
This tests funky parameters to CSSMin::remap.
static provideIsRemoteUrl()
static provideRemapCases()
static provideBuildUrlValueCases()