1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
<?php
/** tests for includes/Html.php */
class HtmlTest extends MediaWikiTestCase {
private static $oldLang;
public function setUp() {
global $wgLang, $wgLanguageCode;
self::$oldLang = $wgLang;
$wgLanguageCode = 'en';
$wgLang = Language::factory( $wgLanguageCode );
}
public function tearDown() {
global $wgLang, $wgLanguageCode;
$wgLang = self::$oldLang;
$wgLanguageCode = $wgLang->getCode();
}
public function testExpandAttributesSkipsNullAndFalse() {
### EMPTY ########
$this->AssertEmpty(
Html::expandAttributes( array( 'foo'=>null) ),
'skip keys with null value'
);
$this->AssertEmpty(
Html::expandAttributes( array( 'foo'=>false) ),
'skip keys with false value'
);
$this->AssertNotEmpty(
Html::expandAttributes( array( 'foo'=>'') ),
'keep keys with an empty string'
);
}
public function testExpandAttributesForBooleans() {
$this->AssertEquals(
'',
Html::expandAttributes( array( 'selected'=>false) ),
'Boolean attributes do not generates output when value is false'
);
$this->AssertEquals(
'',
Html::expandAttributes( array( 'selected'=>null) ),
'Boolean attributes do not generates output when value is null'
);
### FIXME: maybe they should just output 'selected'
$this->AssertEquals(
' selected=""',
Html::expandAttributes( array( 'selected'=>true ) ),
'Boolean attributes skip value output'
);
$this->AssertEquals(
' selected=""',
Html::expandAttributes( array( 'selected' ) ),
'Boolean attributes (ex: selected) do not need a value'
);
}
/**
* Test for Html::expandAttributes()
* Please note it output a string prefixed with a space!
*/
public function testExpandAttributesVariousExpansions() {
### NOT EMPTY ####
$this->AssertEquals(
' empty_string=""',
Html::expandAttributes( array( 'empty_string'=>'') ),
'Value with an empty string'
);
$this->AssertEquals(
' key="value"',
Html::expandAttributes( array( 'key'=>'value') ),
'Value is a string'
);
$this->AssertEquals(
' one="1"',
Html::expandAttributes( array( 'one'=>1) ),
'Value is a numeric one'
);
$this->AssertEquals(
' zero="0"',
Html::expandAttributes( array( 'zero'=>0) ),
'Value is a numeric zero'
);
}
}
|