Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4106121
CssContentTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
CssContentTest.php
View Options
<?php
use
MediaWiki\Content\Content
;
use
MediaWiki\Content\CssContent
;
use
MediaWiki\Content\WikitextContent
;
use
MediaWiki\MainConfigNames
;
/**
* @group ContentHandler
* @group Database
* ^--- needed, because we do need the database to test link updates
* @covers \MediaWiki\Content\CssContent
*/
class
CssContentTest
extends
TextContentTest
{
protected
function
setUp
():
void
{
parent
::
setUp
();
$this
->
overrideConfigValue
(
MainConfigNames
::
TextModelsToParse
,
[
CONTENT_MODEL_CSS
,
]
);
}
public
function
newContent
(
$text
)
{
return
new
CssContent
(
$text
);
}
// XXX: currently, preSaveTransform is applied to styles. this may change or become optional.
public
static
function
dataPreSaveTransform
()
{
return
[
[
'hello this is ~~~'
,
"hello this is [[Special:Contributions/127.0.0.1|127.0.0.1]]"
,
],
[
'hello
\'\'
this
\'\'
is <nowiki>~~~</nowiki>'
,
'hello
\'\'
this
\'\'
is <nowiki>~~~</nowiki>'
,
],
[
" Foo
\n
"
,
" Foo"
,
],
];
}
public
function
testGetModel
()
{
$content
=
$this
->
newContent
(
'hello world.'
);
$this
->
assertEquals
(
CONTENT_MODEL_CSS
,
$content
->
getModel
()
);
}
public
function
testGetContentHandler
()
{
$content
=
$this
->
newContent
(
'hello world.'
);
$this
->
assertEquals
(
CONTENT_MODEL_CSS
,
$content
->
getContentHandler
()->
getModelID
()
);
}
/**
* Redirects aren't supported
*/
public
static
function
provideUpdateRedirect
()
{
return
[
[
'#REDIRECT [[Someplace]]'
,
'#REDIRECT [[Someplace]]'
,
],
];
}
/**
* @dataProvider provideGetRedirectTarget
*/
public
function
testGetRedirectTarget
(
$title
,
$text
)
{
$this
->
overrideConfigValues
(
[
MainConfigNames
::
Server
=>
'//example.org'
,
MainConfigNames
::
ScriptPath
=>
'/w'
,
MainConfigNames
::
Script
=>
'/w/index.php'
,
]
);
$content
=
new
CssContent
(
$text
);
$target
=
$content
->
getRedirectTarget
();
$this
->
assertEquals
(
$title
,
$target
?
$target
->
getPrefixedText
()
:
null
);
}
/**
* Keep this in sync with CssContentHandlerTest::provideMakeRedirectContent()
*/
public
static
function
provideGetRedirectTarget
()
{
return
[
[
'MediaWiki:MonoBook.css'
,
"/* #REDIRECT */@import url(//example.org/w/index.php?title=MediaWiki:MonoBook.css&action=raw&ctype=text/css);"
],
[
'User:FooBar/common.css'
,
"/* #REDIRECT */@import url(//example.org/w/index.php?title=User:FooBar/common.css&action=raw&ctype=text/css);"
],
[
'User:😂/unicode.css'
,
'/* #REDIRECT */@import url(//example.org/w/index.php?title=User:%F0%9F%98%82/unicode.css&action=raw&ctype=text/css);'
],
# No #REDIRECT comment
[
null
,
"@import url(//example.org/w/index.php?title=Gadget:FooBaz.css&action=raw&ctype=text/css);"
],
# Wrong domain
[
null
,
"/* #REDIRECT */@import url(//example.com/w/index.php?title=Gadget:FooBaz.css&action=raw&ctype=text/css);"
],
];
// phpcs:enable
}
public
static
function
dataEquals
()
{
return
[
[
new
CssContent
(
'hallo'
),
null
,
false
],
[
new
CssContent
(
'hallo'
),
new
CssContent
(
'hallo'
),
true
],
[
new
CssContent
(
'hallo'
),
new
WikitextContent
(
'hallo'
),
false
],
[
new
CssContent
(
'hallo'
),
new
CssContent
(
'HALLO'
),
false
],
];
}
/**
* @dataProvider dataEquals
*/
public
function
testEquals
(
Content
$a
,
?
Content
$b
=
null
,
$equal
=
false
)
{
$this
->
assertEquals
(
$equal
,
$a
->
equals
(
$b
)
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 19:18 (2 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
05/a1/5f078aad3cf2c877e58cf777dddc
Default Alt Text
CssContentTest.php (3 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment