MediaWiki  1.23.15
XmlSelectTest.php
Go to the documentation of this file.
1 <?php
2 
7 
11  protected $select;
12 
13  protected function setUp() {
14  parent::setUp();
15  $this->select = new XmlSelect();
16  }
17 
18  protected function tearDown() {
19  parent::tearDown();
20  $this->select = null;
21  }
22 
26  public function testConstructWithoutParameters() {
27  $this->assertEquals( '<select></select>', $this->select->getHTML() );
28  }
29 
35  public function testConstructParameters( $name, $id, $default, $expected ) {
36  $this->select = new XmlSelect( $name, $id, $default );
37  $this->assertEquals( $expected, $this->select->getHTML() );
38  }
39 
48  public static function provideConstructionParameters() {
49  return array(
55  # $name $id $default
56  array( false, false, false, '<select></select>' ),
57  array( false, false, 'foo', '<select></select>' ),
58  array( false, 'id', 'foo', '<select id="id"></select>' ),
59  array( false, 'id', false, '<select id="id"></select>' ),
60  array( 'name', 'id', false, '<select name="name" id="id"></select>' ),
61  array( 'name', 'id', 'foo', '<select name="name" id="id"></select>' ),
62  array( 'name', false, 'foo', '<select name="name"></select>' ),
63  array( 'name', false, false, '<select name="name"></select>' ),
64  );
65  }
66 
70  public function testAddOption() {
71  $this->select->addOption( 'foo' );
72  $this->assertEquals( '<select><option value="foo">foo</option></select>', $this->select->getHTML() );
73  }
74 
78  public function testAddOptionWithDefault() {
79  $this->select->addOption( 'foo', true );
80  $this->assertEquals( '<select><option value="1">foo</option></select>', $this->select->getHTML() );
81  }
82 
86  public function testAddOptionWithFalse() {
87  $this->select->addOption( 'foo', false );
88  $this->assertEquals( '<select><option value="foo">foo</option></select>', $this->select->getHTML() );
89  }
90 
94  public function testAddOptionWithValueZero() {
95  $this->select->addOption( 'foo', 0 );
96  $this->assertEquals( '<select><option value="0">foo</option></select>', $this->select->getHTML() );
97  }
98 
102  public function testSetDefault() {
103  $this->select->setDefault( 'bar1' );
104  $this->select->addOption( 'foo1' );
105  $this->select->addOption( 'bar1' );
106  $this->select->addOption( 'foo2' );
107  $this->assertEquals(
108  '<select><option value="foo1">foo1</option>' . "\n" .
109  '<option value="bar1" selected="">bar1</option>' . "\n" .
110  '<option value="foo2">foo2</option></select>', $this->select->getHTML() );
111  }
112 
119  public function testSetDefaultAfterAddingOptions() {
120  $this->select->addOption( 'foo1' );
121  $this->select->addOption( 'bar1' );
122  $this->select->addOption( 'foo2' );
123  $this->select->setDefault( 'bar1' ); # setting default after adding options
124  $this->assertEquals(
125  '<select><option value="foo1">foo1</option>' . "\n" .
126  '<option value="bar1" selected="">bar1</option>' . "\n" .
127  '<option value="foo2">foo2</option></select>', $this->select->getHTML() );
128  }
129 
134  public function testGetAttributes() {
135  # create some attributes
136  $this->select->setAttribute( 'dummy', 0x777 );
137  $this->select->setAttribute( 'string', 'euro €' );
138  $this->select->setAttribute( 1911, 'razor' );
139 
140  # verify we can retrieve them
141  $this->assertEquals(
142  $this->select->getAttribute( 'dummy' ),
143  0x777
144  );
145  $this->assertEquals(
146  $this->select->getAttribute( 'string' ),
147  'euro €'
148  );
149  $this->assertEquals(
150  $this->select->getAttribute( 1911 ),
151  'razor'
152  );
153 
154  # inexistant keys should give us 'null'
155  $this->assertEquals(
156  $this->select->getAttribute( 'I DO NOT EXIT' ),
157  null
158  );
159 
160  # verify string / integer
161  $this->assertEquals(
162  $this->select->getAttribute( '1911' ),
163  'razor'
164  );
165  $this->assertEquals(
166  $this->select->getAttribute( 'dummy' ),
167  0x777
168  );
169  }
170 }
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
XmlSelectTest\testConstructParameters
testConstructParameters( $name, $id, $default, $expected)
Parameters are $name (false), $id (false), $default (false) @dataProvider provideConstructionParamete...
Definition: XmlSelectTest.php:34
XmlSelectTest\testGetAttributes
testGetAttributes()
@covers XmlSelect::setAttribute @covers XmlSelect::getAttribute
Definition: XmlSelectTest.php:133
XmlSelectTest\testSetDefault
testSetDefault()
@covers XmlSelect::setDefault
Definition: XmlSelectTest.php:101
XmlSelectTest
@group Xml
Definition: XmlSelectTest.php:6
XmlSelect
Definition: Xml.php:844
XmlSelectTest\provideConstructionParameters
static provideConstructionParameters()
Provide parameters for testConstructParameters() which use three parameters:
Definition: XmlSelectTest.php:47
MediaWikiTestCase
Definition: MediaWikiTestCase.php:6
array
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
XmlSelectTest\testAddOptionWithValueZero
testAddOptionWithValueZero()
@covers XmlSelect::addOption
Definition: XmlSelectTest.php:93
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:336
options
We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going and make changes or fix bugs In we can take all the code that deals with the little used title reversing options(say) and put it in one place. Instead of having little title-reversing if-blocks spread all over the codebase in showAnArticle
XmlSelectTest\setUp
setUp()
Definition: XmlSelectTest.php:12
XmlSelectTest\testSetDefaultAfterAddingOptions
testSetDefaultAfterAddingOptions()
Adding default later on should set the correct selection or raise an exception.
Definition: XmlSelectTest.php:118
XmlSelectTest\$select
XmlSelect $select
Definition: XmlSelectTest.php:10
XmlSelectTest\testAddOptionWithFalse
testAddOptionWithFalse()
@covers XmlSelect::addOption
Definition: XmlSelectTest.php:85
XmlSelectTest\testAddOptionWithDefault
testAddOptionWithDefault()
@covers XmlSelect::addOption
Definition: XmlSelectTest.php:77
XmlSelectTest\testConstructWithoutParameters
testConstructWithoutParameters()
@covers XmlSelect::__construct
Definition: XmlSelectTest.php:25
select
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like select() and insert() are usually more convenient. They take care of things like table prefixes and escaping for you. If you really need to make your own SQL
XmlSelectTest\testAddOption
testAddOption()
@covers XmlSelect::addOption
Definition: XmlSelectTest.php:69
XmlSelectTest\tearDown
tearDown()
Definition: XmlSelectTest.php:17