Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4094004
WfExpandUrlTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
WfExpandUrlTest.php
View Options
<?php
use
MediaWiki\MainConfigNames
;
use
MediaWiki\Request\FauxRequest
;
use
MediaWiki\Utils\UrlUtils
;
/**
* @group GlobalFunctions
* @covers ::wfExpandUrl
*/
class
WfExpandUrlTest
extends
MediaWikiIntegrationTestCase
{
/**
* Same tests as the UrlUtils method to ensure they don't fall out of sync
* @dataProvider UrlUtilsProviders::provideExpand
*/
public
function
testWfExpandUrl
(
string
$input
,
array
$options
,
$defaultProto
,
string
$expected
)
{
$conf
=
[
MainConfigNames
::
Server
=>
$options
[
UrlUtils
::
SERVER
]
??
null
,
MainConfigNames
::
CanonicalServer
=>
$options
[
UrlUtils
::
CANONICAL_SERVER
]
??
null
,
MainConfigNames
::
InternalServer
=>
$options
[
UrlUtils
::
INTERNAL_SERVER
]
??
null
,
MainConfigNames
::
HttpsPort
=>
$options
[
UrlUtils
::
HTTPS_PORT
]
??
443
,
];
$currentProto
=
$options
[
UrlUtils
::
FALLBACK_PROTOCOL
];
$this
->
overrideConfigValues
(
$conf
);
$this
->
setRequest
(
new
FauxRequest
(
[],
false
,
null
,
$currentProto
)
);
$this
->
assertEquals
(
$expected
,
wfExpandUrl
(
$input
,
$defaultProto
)
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Aug 18 2026, 13:05 (4 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
bf/54/6fe7e1d84ff882f2de729bee51b7
Default Alt Text
WfExpandUrlTest.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment