Changes to the use statements done automatically via script Addition of missing use statement done manually Change-Id: I4ff4d0c10820dc2a3b8419b4115fadf81a76f7a2
79 lines
2.1 KiB
PHP
79 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Tests\Integration\HTMLForm;
|
|
|
|
use InvalidArgumentException;
|
|
use MediaWiki\HTMLForm\HTMLForm;
|
|
use MediaWiki\HTMLForm\HTMLFormField;
|
|
use MediaWikiIntegrationTestCase;
|
|
|
|
abstract class HTMLFormFieldTestCase extends MediaWikiIntegrationTestCase {
|
|
protected $className = null;
|
|
|
|
/**
|
|
* Augment assertEquals a little bit by stripping newlines and tabs from $expected.
|
|
* This allows $expected to be expressed as a heredoc string.
|
|
*
|
|
* @param string $expected HTML
|
|
* @param string $actual HTML
|
|
* @param string $msg Optional message
|
|
*/
|
|
private function assertHTMLEqualStrippingWhitespace( $expected, $actual, $msg = '' ) {
|
|
$this->assertEquals(
|
|
str_replace( [ "\n", "\t" ], '', $expected ),
|
|
str_replace( [ "\n", "\t" ], '', $actual ),
|
|
$msg
|
|
);
|
|
}
|
|
|
|
public function constructField( array $params ): HTMLFormField {
|
|
if ( $this->className === null ) {
|
|
throw new InvalidArgumentException(
|
|
'HTMLFormFieldTestCase subclass ' . __CLASS__ . ' must override $className or constructField()'
|
|
);
|
|
}
|
|
return new $this->className( $params + [
|
|
'parent' => $this->createMock( HTMLForm::class ),
|
|
'name' => 'testfield'
|
|
] );
|
|
}
|
|
|
|
public static function provideInputHtml() {
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideInputHtml
|
|
*/
|
|
public function testGetInputHtml( $params, $value, $expected ) {
|
|
$field = $this->constructField( $params );
|
|
$this->assertHTMLEqualStrippingWhitespace( $expected, $field->getInputHtml( $value ) );
|
|
}
|
|
|
|
public static function provideInputOOUI() {
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideInputOOUI
|
|
*/
|
|
public function testGetInputOOUI( $params, $value, $expected ) {
|
|
\OOUI\Theme::setSingleton( new \OOUI\BlankTheme() );
|
|
|
|
$field = $this->constructField( $params );
|
|
$this->assertHTMLEqualStrippingWhitespace( $expected, $field->getInputOOUI( $value ) );
|
|
}
|
|
|
|
public static function provideInputCodex() {
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideInputCodex
|
|
*/
|
|
public function testGetInputCodex( $params, $value, $hasError, $expected ) {
|
|
$field = $this->constructField( $params );
|
|
$this->assertHTMLEqualStrippingWhitespace( $expected, $field->getInputCodex( $value, $hasError ) );
|
|
}
|
|
|
|
}
|