MediaWiki  1.29.2
HTMLAutoCompleteSelectFieldTest.php
Go to the documentation of this file.
1 <?php
8 
9  public $options = [
10  'Bulgaria' => 'BGR',
11  'Burkina Faso' => 'BFA',
12  'Burundi' => 'BDI',
13  ];
14 
24  new HTMLAutoCompleteSelectField( [ 'fieldname' => 'Test' ] );
25  }
26 
33  function testGetAttributes() {
34  $field = new HTMLAutoCompleteSelectField( [
35  'fieldname' => 'Test',
36  'autocomplete' => $this->options,
37  ] );
38 
39  $attributes = $field->getAttributes( [] );
40  $this->assertEquals( array_keys( $this->options ),
41  FormatJson::decode( $attributes['data-autocomplete'] ),
42  "The 'data-autocomplete' attribute encodes autocomplete option keys as a JSON array."
43  );
44  }
45 
51  $params = [
52  'fieldname' => 'Test',
53  'autocomplete-data' => $this->options,
54  'options' => $this->options,
55  ];
56 
57  $field = new HTMLAutoCompleteSelectField( $params );
58  $html = $field->getInputHTML( false );
59  $this->assertRegExp( '/select/', $html,
60  "When the 'options' parameter is set, the HTML includes a <select>" );
61 
62  unset( $params['options'] );
63  $field = new HTMLAutoCompleteSelectField( $params );
64  $html = $field->getInputHTML( false );
65  $this->assertNotRegExp( '/select/', $html,
66  "When the 'options' parameter is not set, the HTML does not include a <select>" );
67  }
68 }
HtmlAutoCompleteSelectFieldTest\$options
$options
Definition: HTMLAutoCompleteSelectFieldTest.php:9
$params
$params
Definition: styleTest.css.php:40
HTMLAutoCompleteSelectField
Text field for selecting a value from a large list of possible values, with auto-completion and optio...
Definition: HTMLAutoCompleteSelectField.php:33
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
FormatJson\decode
static decode( $value, $assoc=false)
Decodes a JSON string.
Definition: FormatJson.php:187
$html
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition: hooks.txt:1956
MediaWikiTestCase
Definition: MediaWikiTestCase.php:13
HtmlAutoCompleteSelectFieldTest
Unit tests for HTMLAutoCompleteSelectField.
Definition: HTMLAutoCompleteSelectFieldTest.php:7
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
HtmlAutoCompleteSelectFieldTest\testOptionalSelectElement
testOptionalSelectElement()
Test that the optional select dropdown is included or excluded based on the presence or absence of th...
Definition: HTMLAutoCompleteSelectFieldTest.php:50
HtmlAutoCompleteSelectFieldTest\testGetAttributes
testGetAttributes()
Verify that the autocomplete options are correctly encoded as the 'data-autocomplete' attribute of th...
Definition: HTMLAutoCompleteSelectFieldTest.php:33
HtmlAutoCompleteSelectFieldTest\testMissingAutocompletions
testMissingAutocompletions()
Verify that attempting to instantiate an HTMLAutoCompleteSelectField without providing any autocomple...
Definition: HTMLAutoCompleteSelectFieldTest.php:23