MediaWiki  1.23.12
FormOptionsTest Class Reference

This file host two test case classes for the MediaWiki FormOptions class: More...

Inheritance diagram for FormOptionsTest:
Collaboration diagram for FormOptionsTest:

Public Member Functions

 testGuessTypeDetection ()
 Reuse helpers above assertGuessBoolean assertGuessInt assertGuessString @covers FormOptions::guessType. More...
 
 testGuessTypeOnArrayThrowException ()
 @expectedException MWException @covers FormOptions::guessType More...
 
 testGuessTypeOnNullThrowException ()
 @expectedException MWException @covers FormOptions::guessType More...
 
- Public Member Functions inherited from MediaWikiTestCase
 __call ( $func, $args)
 
 __construct ( $name=null, array $data=array(), $dataName='')
 
 addDBData ()
 Stub. More...
 
 dbPrefix ()
 
 getCliArg ( $offset)
 
 hideDeprecated ( $function)
 Don't throw a warning if $function is deprecated and called later. More...
 
 needsDB ()
 
 run (PHPUnit_Framework_TestResult $result=null)
 
 setCliArg ( $offset, $value)
 
 testMediaWikiTestCaseParentSetupCalled ()
 Make sure MediaWikiTestCase extending classes have called their parent setUp method. More...
 
 usesTemporaryTables ()
 

Protected Member Functions

 setUp ()
 Instanciates a FormOptions object to play with. More...
 
- Protected Member Functions inherited from MediaWikiTestCase
 arrayWrap (array $elements)
 Utility method taking an array of elements and wrapping each element in it's own array. More...
 
 assertArrayEquals (array $expected, array $actual, $ordered=false, $named=false)
 Assert that two arrays are equal. More...
 
 assertException ( $code, $expected='Exception', $message='')
 Asserts that an exception of the specified type occurs when running the provided code. More...
 
 assertHTMLEquals ( $expected, $actual, $msg='')
 Put each HTML element on its own line and then equals() the results. More...
 
 assertSelect ( $table, $fields, $condition, array $expectedRows)
 Asserts that the given database query yields the rows given by $expectedRows. More...
 
 assertType ( $type, $actual, $message='')
 Asserts the type of the provided value. More...
 
 assertTypeOrValue ( $type, $actual, $value=false, $message='')
 Asserts that the provided variable is of the specified internal type or equals the $value argument. More...
 
 assertValidHtmlDocument ( $html)
 Asserts that the given string is valid HTML document. More...
 
 assertValidHtmlSnippet ( $html)
 Asserts that the given string is a valid HTML snippet. More...
 
 checkDbIsSupported ()
 
 checkHasDiff3 ()
 Check, if $wgDiff3 is set and ready to merge Will mark the calling test as skipped, if not ready. More...
 
 checkHasGzip ()
 Check whether we have the 'gzip' commandline utility, will skip the test whenever "gzip -V" fails. More...
 
 checkPHPExtension ( $extName)
 Check if $extName is a loaded PHP extension, will skip the test whenever it is not loaded. More...
 
 getDefaultWikitextNS ()
 Returns the ID of a namespace that defaults to Wikitext. More...
 
 getNewTempDirectory ()
 obtains a new temporary directory More...
 
 getNewTempFile ()
 Obtains a new temporary file name. More...
 
 isWikitextNS ( $ns)
 Returns true if the given namespace defaults to Wikitext according to $wgNamespaceContentModels. More...
 
 mergeMwGlobalArrayValue ( $name, $values)
 Merges the given values into a MW global array variable. More...
 
 objectAssociativeSort (array &$array)
 Does an associative sort that works for objects. More...
 
 setMwGlobals ( $pairs, $value=null)
 
 stashMwGlobals ( $globalKeys)
 Stashes the global, will be restored in tearDown() More...
 
 tearDown ()
 

Protected Attributes

FormOptions $object
 
- Protected Attributes inherited from MediaWikiTestCase
DatabaseBase $db
 
array $supportedDBs
 
array $tablesUsed = array()
 

Private Member Functions

 assertGuessBoolean ( $data)
 Helpers for testGuessType() More...
 
 assertGuessFloat ( $data)
 
 assertGuessInt ( $data)
 
 assertGuessString ( $data)
 
 guess ( $expected, $data)
 Generic helper. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from MediaWikiTestCase
static listTables ( $db)
 
static setupTestDB (DatabaseBase $db, $prefix)
 Creates an empty skeleton of the wiki database by cloning its structure to equivalent tables using the given $prefix. More...
 
static teardownTestDB ()
 Restores MediaWiki to using the table set (table prefix) it was using before setupTestDB() was called. More...
 
- Public Attributes inherited from MediaWikiTestCase
const DB_PREFIX = 'unittest_'
 Table name prefixes. More...
 
const ORA_DB_PREFIX = 'ut_'
 
- Static Public Attributes inherited from MediaWikiTestCase
static $users
 
- Static Protected Member Functions inherited from MediaWikiTestCase
static stripStringKeys (&$r)
 Utility function for eliminating all string keys from an array. More...
 

Detailed Description

This file host two test case classes for the MediaWiki FormOptions class:

The split let us take advantage of setting up a fixture for the methods tests. Test class for FormOptions methods. Generated by PHPUnit on 2011-02-28 at 20:46:27.

Copyright © 2011, Antoine Musso

Author
Antoine Musso

Definition at line 19 of file FormOptionsTest.php.

Member Function Documentation

◆ assertGuessBoolean()

FormOptionsTest::assertGuessBoolean (   $data)
private

Helpers for testGuessType()

Definition at line 42 of file FormOptionsTest.php.

References FormOptions\BOOL, and guess().

Referenced by testGuessTypeDetection().

◆ assertGuessFloat()

FormOptionsTest::assertGuessFloat (   $data)
private

Definition at line 48 of file FormOptionsTest.php.

References FormOptions\FLOAT, and guess().

Referenced by testGuessTypeDetection().

◆ assertGuessInt()

FormOptionsTest::assertGuessInt (   $data)
private

Definition at line 45 of file FormOptionsTest.php.

References guess(), and FormOptions\INT.

Referenced by testGuessTypeDetection().

◆ assertGuessString()

FormOptionsTest::assertGuessString (   $data)
private

Definition at line 51 of file FormOptionsTest.php.

References guess(), and FormOptions\STRING.

Referenced by testGuessTypeDetection().

◆ guess()

FormOptionsTest::guess (   $expected,
  $data 
)
private

Generic helper.

Definition at line 56 of file FormOptionsTest.php.

References FormOptions\guessType().

Referenced by assertGuessBoolean(), assertGuessFloat(), assertGuessInt(), and assertGuessString().

◆ setUp()

FormOptionsTest::setUp ( )
protected

Instanciates a FormOptions object to play with.

FormOptions::add() is tested by the class FormOptionsInitializationTest so we assume the function is well tested already an use it to create the fixture.

Reimplemented from MediaWikiTestCase.

Definition at line 30 of file FormOptionsTest.php.

References FormOptions\add(), and FormOptions\INTNULL.

◆ testGuessTypeDetection()

FormOptionsTest::testGuessTypeDetection ( )

Reuse helpers above assertGuessBoolean assertGuessInt assertGuessString @covers FormOptions::guessType.

Definition at line 68 of file FormOptionsTest.php.

References assertGuessBoolean(), assertGuessFloat(), assertGuessInt(), and assertGuessString().

◆ testGuessTypeOnArrayThrowException()

FormOptionsTest::testGuessTypeOnArrayThrowException ( )

@expectedException MWException @covers FormOptions::guessType

Definition at line 92 of file FormOptionsTest.php.

References array().

◆ testGuessTypeOnNullThrowException()

FormOptionsTest::testGuessTypeOnNullThrowException ( )

@expectedException MWException @covers FormOptions::guessType

Definition at line 99 of file FormOptionsTest.php.

Member Data Documentation

◆ $object

FormOptions FormOptionsTest::$object
protected

Definition at line 22 of file FormOptionsTest.php.


The documentation for this class was generated from the following file: