2010-12-14 16:26:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
2010-12-28 18:17:16 +00:00
|
|
|
class XmlTest extends MediaWikiTestCase {
|
2011-05-01 19:32:49 +00:00
|
|
|
private static $oldLang;
|
2012-01-21 22:26:14 +00:00
|
|
|
private static $oldNamespaces;
|
2011-05-01 19:32:49 +00:00
|
|
|
|
|
|
|
|
public function setUp() {
|
2012-01-21 22:26:14 +00:00
|
|
|
global $wgLang, $wgContLang;
|
2011-12-01 00:40:56 +00:00
|
|
|
|
2011-05-01 19:32:49 +00:00
|
|
|
self::$oldLang = $wgLang;
|
2012-01-19 10:05:38 +00:00
|
|
|
$wgLang = Language::factory( 'en' );
|
2012-01-21 22:26:14 +00:00
|
|
|
|
|
|
|
|
// Hardcode namespaces during test runs,
|
|
|
|
|
// so that html output based on existing namespaces
|
|
|
|
|
// can be properly evaluated.
|
2012-01-27 13:00:26 +00:00
|
|
|
self::$oldNamespaces = $wgContLang->getNamespaces();
|
|
|
|
|
$wgContLang->setNamespaces( array(
|
2012-01-21 22:26:14 +00:00
|
|
|
-2 => 'Media',
|
|
|
|
|
-1 => 'Special',
|
|
|
|
|
0 => '',
|
|
|
|
|
1 => 'Talk',
|
|
|
|
|
2 => 'User',
|
|
|
|
|
3 => 'User_talk',
|
|
|
|
|
4 => 'MyWiki',
|
|
|
|
|
5 => 'MyWiki_Talk',
|
|
|
|
|
6 => 'File',
|
|
|
|
|
7 => 'File_talk',
|
|
|
|
|
8 => 'MediaWiki',
|
|
|
|
|
9 => 'MediaWiki_talk',
|
|
|
|
|
10 => 'Template',
|
|
|
|
|
11 => 'Template_talk',
|
|
|
|
|
100 => 'Custom',
|
|
|
|
|
101 => 'Custom_talk',
|
2012-01-27 13:00:26 +00:00
|
|
|
) );
|
2011-05-01 19:32:49 +00:00
|
|
|
}
|
2011-12-01 00:40:56 +00:00
|
|
|
|
2011-05-01 19:32:49 +00:00
|
|
|
public function tearDown() {
|
2012-01-21 22:26:14 +00:00
|
|
|
global $wgLang, $wgContLang;
|
2011-05-01 19:32:49 +00:00
|
|
|
$wgLang = self::$oldLang;
|
2012-01-27 13:00:26 +00:00
|
|
|
|
|
|
|
|
$wgContLang->setNamespaces( self::$oldNamespaces );
|
2011-05-01 19:32:49 +00:00
|
|
|
}
|
2010-12-14 16:26:35 +00:00
|
|
|
|
|
|
|
|
public function testExpandAttributes() {
|
|
|
|
|
$this->assertNull( Xml::expandAttributes(null),
|
|
|
|
|
'Converting a null list of attributes'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals( '', Xml::expandAttributes( array() ),
|
|
|
|
|
'Converting an empty list of attributes'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testExpandAttributesException() {
|
|
|
|
|
$this->setExpectedException('MWException');
|
|
|
|
|
Xml::expandAttributes('string');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testElementOpen() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<element>',
|
|
|
|
|
Xml::element( 'element', null, null ),
|
|
|
|
|
'Opening element with no attributes'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testElementEmpty() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<element />',
|
|
|
|
|
Xml::element( 'element', null, '' ),
|
|
|
|
|
'Terminated empty element'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testElementInputCanHaveAValueOfZero() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<input name="name" value="0" />',
|
|
|
|
|
Xml::input( 'name', false, 0 ),
|
|
|
|
|
'Input with a value of 0 (bug 23797)'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
function testElementEscaping() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<element>hello <there> you & you</element>',
|
|
|
|
|
Xml::element( 'element', null, 'hello <there> you & you' ),
|
|
|
|
|
'Element with no attributes and content that needs escaping'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testEscapeTagsOnly() {
|
|
|
|
|
$this->assertEquals( '"><', Xml::escapeTagsOnly( '"><' ),
|
|
|
|
|
'replace " > and < with their HTML entitites'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testElementAttributes() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<element key="value" <>="<>">',
|
|
|
|
|
Xml::element( 'element', array( 'key' => 'value', '<>' => '<>' ), null ),
|
|
|
|
|
'Element attributes, keys are not escaped'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testOpenElement() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<element k="v">',
|
|
|
|
|
Xml::openElement( 'element', array( 'k' => 'v' ) ),
|
|
|
|
|
'openElement() shortcut'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testCloseElement() {
|
|
|
|
|
$this->assertEquals( '</element>', Xml::closeElement( 'element' ), 'closeElement() shortcut' );
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-08 16:38:59 +00:00
|
|
|
/**
|
|
|
|
|
* @group Broken
|
|
|
|
|
*/
|
2011-02-06 21:23:12 +00:00
|
|
|
public function testDateMenu( ) {
|
2011-02-06 22:10:48 +00:00
|
|
|
$curYear = intval(gmdate('Y'));
|
|
|
|
|
$prevYear = $curYear - 1;
|
|
|
|
|
|
|
|
|
|
$curMonth = intval(gmdate('n'));
|
|
|
|
|
$prevMonth = $curMonth - 1;
|
|
|
|
|
if( $prevMonth == 0 ) { $prevMonth = 12; }
|
|
|
|
|
$nextMonth = $curMonth + 1;
|
|
|
|
|
if( $nextMonth == 13 ) { $nextMonth = 1; }
|
|
|
|
|
|
2011-02-06 21:23:12 +00:00
|
|
|
$this->assertEquals(
|
2011-07-12 20:05:02 +00:00
|
|
|
'<label for="year">From year (and earlier):</label> <input name="year" size="4" value="2011" id="year" maxlength="4" /> <label for="month">From month (and earlier):</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">all</option>' . "\n" .
|
|
|
|
|
'<option value="1">January</option>' . "\n" .
|
2011-10-08 11:58:01 +00:00
|
|
|
'<option value="2" selected="">February</option>' . "\n" .
|
2011-07-12 20:05:02 +00:00
|
|
|
'<option value="3">March</option>' . "\n" .
|
|
|
|
|
'<option value="4">April</option>' . "\n" .
|
|
|
|
|
'<option value="5">May</option>' . "\n" .
|
|
|
|
|
'<option value="6">June</option>' . "\n" .
|
|
|
|
|
'<option value="7">July</option>' . "\n" .
|
|
|
|
|
'<option value="8">August</option>' . "\n" .
|
|
|
|
|
'<option value="9">September</option>' . "\n" .
|
|
|
|
|
'<option value="10">October</option>' . "\n" .
|
|
|
|
|
'<option value="11">November</option>' . "\n" .
|
|
|
|
|
'<option value="12">December</option></select>',
|
2011-02-06 21:23:12 +00:00
|
|
|
Xml::dateMenu( 2011, 02 ),
|
|
|
|
|
"Date menu for february 2011"
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
2011-07-12 20:05:02 +00:00
|
|
|
'<label for="year">From year (and earlier):</label> <input name="year" size="4" value="2011" id="year" maxlength="4" /> <label for="month">From month (and earlier):</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">all</option>' . "\n" .
|
|
|
|
|
'<option value="1">January</option>' . "\n" .
|
|
|
|
|
'<option value="2">February</option>' . "\n" .
|
|
|
|
|
'<option value="3">March</option>' . "\n" .
|
|
|
|
|
'<option value="4">April</option>' . "\n" .
|
|
|
|
|
'<option value="5">May</option>' . "\n" .
|
|
|
|
|
'<option value="6">June</option>' . "\n" .
|
|
|
|
|
'<option value="7">July</option>' . "\n" .
|
|
|
|
|
'<option value="8">August</option>' . "\n" .
|
|
|
|
|
'<option value="9">September</option>' . "\n" .
|
|
|
|
|
'<option value="10">October</option>' . "\n" .
|
|
|
|
|
'<option value="11">November</option>' . "\n" .
|
|
|
|
|
'<option value="12">December</option></select>',
|
2011-02-06 21:23:12 +00:00
|
|
|
Xml::dateMenu( 2011, -1),
|
|
|
|
|
"Date menu with negative month for 'All'"
|
|
|
|
|
);
|
2011-02-06 22:10:48 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
Xml::dateMenu( $curYear, $curMonth ),
|
|
|
|
|
Xml::dateMenu( '' , $curMonth ),
|
|
|
|
|
"Date menu year is the current one when not specified"
|
|
|
|
|
);
|
2011-12-01 00:40:56 +00:00
|
|
|
|
|
|
|
|
// @todo FIXME: next month can be in the next year
|
|
|
|
|
// test failing because it is now december
|
2011-12-01 14:40:11 +00:00
|
|
|
$this->assertEquals(
|
2011-02-06 22:10:48 +00:00
|
|
|
Xml::dateMenu( $prevYear, $nextMonth ),
|
|
|
|
|
Xml::dateMenu( '', $nextMonth ),
|
|
|
|
|
"Date menu next month is 11 months ago"
|
2011-12-01 14:40:11 +00:00
|
|
|
);
|
2011-02-06 22:10:48 +00:00
|
|
|
|
2011-05-17 22:03:20 +00:00
|
|
|
# @todo FIXME: Please note there is no year there!
|
2011-02-06 22:10:48 +00:00
|
|
|
$this->assertEquals(
|
2011-07-12 20:05:02 +00:00
|
|
|
'<label for="year">From year (and earlier):</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">From month (and earlier):</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">all</option>' . "\n" .
|
|
|
|
|
'<option value="1">January</option>' . "\n" .
|
|
|
|
|
'<option value="2">February</option>' . "\n" .
|
|
|
|
|
'<option value="3">March</option>' . "\n" .
|
|
|
|
|
'<option value="4">April</option>' . "\n" .
|
|
|
|
|
'<option value="5">May</option>' . "\n" .
|
|
|
|
|
'<option value="6">June</option>' . "\n" .
|
|
|
|
|
'<option value="7">July</option>' . "\n" .
|
|
|
|
|
'<option value="8">August</option>' . "\n" .
|
|
|
|
|
'<option value="9">September</option>' . "\n" .
|
|
|
|
|
'<option value="10">October</option>' . "\n" .
|
|
|
|
|
'<option value="11">November</option>' . "\n" .
|
|
|
|
|
'<option value="12">December</option></select>',
|
2011-12-01 00:40:56 +00:00
|
|
|
Xml::dateMenu( '', '' ),
|
2011-02-06 22:10:48 +00:00
|
|
|
"Date menu with neither year or month"
|
|
|
|
|
);
|
2011-02-06 21:23:12 +00:00
|
|
|
}
|
|
|
|
|
|
2012-01-21 22:26:14 +00:00
|
|
|
function testNamespaceSelector() {
|
|
|
|
|
$this->assertEquals(
|
2012-01-25 00:52:29 +00:00
|
|
|
'<select class="namespaceselector" id="namespace" name="namespace">
|
2012-01-21 22:26:14 +00:00
|
|
|
<option value="0">(Main)</option>
|
|
|
|
|
<option value="1">Talk</option>
|
|
|
|
|
<option value="2">User</option>
|
|
|
|
|
<option value="3">User talk</option>
|
|
|
|
|
<option value="4">MyWiki</option>
|
|
|
|
|
<option value="5">MyWiki Talk</option>
|
|
|
|
|
<option value="6">File</option>
|
|
|
|
|
<option value="7">File talk</option>
|
|
|
|
|
<option value="8">MediaWiki</option>
|
|
|
|
|
<option value="9">MediaWiki talk</option>
|
|
|
|
|
<option value="10">Template</option>
|
|
|
|
|
<option value="11">Template talk</option>
|
|
|
|
|
<option value="100">Custom</option>
|
|
|
|
|
<option value="101">Custom talk</option>
|
|
|
|
|
</select>',
|
|
|
|
|
Xml::namespaceSelector(),
|
|
|
|
|
'Basic namespace selector without custom options'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
2012-01-25 03:25:54 +00:00
|
|
|
'<label for="namespace">Select a namespace:</label> <select class="namespaceselector" id="namespace" name="myname">
|
2012-01-21 22:26:14 +00:00
|
|
|
<option value="all">all</option>
|
|
|
|
|
<option value="0">(Main)</option>
|
|
|
|
|
<option value="1">Talk</option>
|
|
|
|
|
<option value="2" selected="">User</option>
|
|
|
|
|
<option value="3">User talk</option>
|
|
|
|
|
<option value="4">MyWiki</option>
|
|
|
|
|
<option value="5">MyWiki Talk</option>
|
|
|
|
|
<option value="6">File</option>
|
|
|
|
|
<option value="7">File talk</option>
|
|
|
|
|
<option value="8">MediaWiki</option>
|
|
|
|
|
<option value="9">MediaWiki talk</option>
|
|
|
|
|
<option value="10">Template</option>
|
|
|
|
|
<option value="11">Template talk</option>
|
|
|
|
|
<option value="100">Custom</option>
|
|
|
|
|
<option value="101">Custom talk</option>
|
|
|
|
|
</select>',
|
|
|
|
|
Xml::namespaceSelector( $selected = '2', $all = 'all', $element_name = 'myname', $label = 'Select a namespace:' ),
|
|
|
|
|
'Basic namespace selector with custom values'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-12-14 16:26:35 +00:00
|
|
|
#
|
|
|
|
|
# textarea
|
|
|
|
|
#
|
|
|
|
|
function testTextareaNoContent() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<textarea name="name" id="name" cols="40" rows="5"></textarea>',
|
|
|
|
|
Xml::textarea( 'name', '' ),
|
|
|
|
|
'textarea() with not content'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testTextareaAttribs() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<textarea name="name" id="name" cols="20" rows="10"><txt></textarea>',
|
|
|
|
|
Xml::textarea( 'name', '<txt>', 20, 10 ),
|
|
|
|
|
'textarea() with custom attribs'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# input and label
|
|
|
|
|
#
|
|
|
|
|
function testLabelCreation() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<label for="id">name</label>',
|
|
|
|
|
Xml::label( 'name', 'id' ),
|
|
|
|
|
'label() with no attribs'
|
|
|
|
|
);
|
|
|
|
|
}
|
2011-06-23 20:05:32 +00:00
|
|
|
function testLabelAttributeCanOnlyBeClassOrTitle() {
|
2010-12-14 16:26:35 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
'<label for="id">name</label>',
|
|
|
|
|
Xml::label( 'name', 'id', array( 'generated' => true ) ),
|
|
|
|
|
'label() can not be given a generated attribute'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<label for="id" class="nice">name</label>',
|
|
|
|
|
Xml::label( 'name', 'id', array( 'class' => 'nice' ) ),
|
|
|
|
|
'label() can get a class attribute'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
2011-06-23 20:05:32 +00:00
|
|
|
'<label for="id" title="nice tooltip">name</label>',
|
|
|
|
|
Xml::label( 'name', 'id', array( 'title' => 'nice tooltip' ) ),
|
|
|
|
|
'label() can get a title attribute'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<label for="id" class="nice" title="nice tooltip">name</label>',
|
2010-12-14 16:26:35 +00:00
|
|
|
Xml::label( 'name', 'id', array(
|
|
|
|
|
'generated' => true,
|
|
|
|
|
'class' => 'nice',
|
2011-06-23 20:05:32 +00:00
|
|
|
'title' => 'nice tooltip',
|
2010-12-14 16:26:35 +00:00
|
|
|
'anotherattr' => 'value',
|
|
|
|
|
)
|
|
|
|
|
),
|
2011-06-23 20:05:32 +00:00
|
|
|
'label() skip all attributes but "class" and "title"'
|
2010-12-14 16:26:35 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# JS
|
|
|
|
|
#
|
|
|
|
|
function testEscapeJsStringSpecialChars() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'\\\\\r\n',
|
|
|
|
|
Xml::escapeJsString( "\\\r\n" ),
|
|
|
|
|
'escapeJsString() with special characters'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testEncodeJsVarBoolean() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'true',
|
|
|
|
|
Xml::encodeJsVar( true ),
|
|
|
|
|
'encodeJsVar() with boolean'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testEncodeJsVarNull() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'null',
|
|
|
|
|
Xml::encodeJsVar( null ),
|
|
|
|
|
'encodeJsVar() with null'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testEncodeJsVarArray() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'["a", 1]',
|
|
|
|
|
Xml::encodeJsVar( array( 'a', 1 ) ),
|
|
|
|
|
'encodeJsVar() with array'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'{"a": "a", "b": 1}',
|
|
|
|
|
Xml::encodeJsVar( array( 'a' => 'a', 'b' => 1 ) ),
|
|
|
|
|
'encodeJsVar() with associative array'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testEncodeJsVarObject() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'{"a": "a", "b": 1}',
|
|
|
|
|
Xml::encodeJsVar( (object)array( 'a' => 'a', 'b' => 1 ) ),
|
|
|
|
|
'encodeJsVar() with object'
|
|
|
|
|
);
|
|
|
|
|
}
|
2011-02-14 00:54:40 +00:00
|
|
|
|
|
|
|
|
function testEncodeJsVarInt() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'123456',
|
|
|
|
|
Xml::encodeJsVar( 123456 ),
|
|
|
|
|
'encodeJsVar() with int'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testEncodeJsVarFloat() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'1.23456',
|
|
|
|
|
Xml::encodeJsVar( 1.23456 ),
|
|
|
|
|
'encodeJsVar() with float'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testEncodeJsVarIntString() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'"123456"',
|
|
|
|
|
Xml::encodeJsVar( '123456' ),
|
|
|
|
|
'encodeJsVar() with int-like string'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testEncodeJsVarFloatString() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'"1.23456"',
|
|
|
|
|
Xml::encodeJsVar( '1.23456' ),
|
|
|
|
|
'encodeJsVar() with float-like string'
|
|
|
|
|
);
|
|
|
|
|
}
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|