MediaWiki  1.33.0
DatabaseSqliteRdbmsTest.php
Go to the documentation of this file.
1 <?php
2 
4 
11 class DatabaseSqliteRdbmsTest extends PHPUnit\Framework\TestCase {
12 
13  use MediaWikiCoversValidator;
14  use PHPUnit4And6Compat;
15 
19  private function getMockDb() {
20  return $this->getMockBuilder( DatabaseSqlite::class )
21  ->disableOriginalConstructor()
22  ->setMethods( null )
23  ->getMock();
24  }
25 
26  public function provideBuildSubstring() {
27  yield [ 'someField', 1, 2, 'SUBSTR(someField,1,2)' ];
28  yield [ 'someField', 1, null, 'SUBSTR(someField,1)' ];
29  }
30 
35  public function testBuildSubstring( $input, $start, $length, $expected ) {
36  $dbMock = $this->getMockDb();
37  $output = $dbMock->buildSubstring( $input, $start, $length );
38  $this->assertSame( $expected, $output );
39  }
40 
42  yield [ -1, 1 ];
43  yield [ 1, -1 ];
44  yield [ 1, 'foo' ];
45  yield [ 'foo', 1 ];
46  yield [ null, 1 ];
47  yield [ 0, 1 ];
48  }
49 
54  public function testBuildSubstring_invalidParams( $start, $length ) {
55  $dbMock = $this->getMockDb();
56  $this->setExpectedException( InvalidArgumentException::class );
57  $dbMock->buildSubstring( 'foo', $start, $length );
58  }
59 
60 }
Wikimedia\Rdbms\DatabaseSqlite
Definition: DatabaseSqlite.php:38
DatabaseSqliteRdbmsTest
DatabaseSqliteTest is already defined in mediawiki core hence the 'Rdbms' included in this class name...
Definition: DatabaseSqliteRdbmsTest.php:11
DatabaseSqliteRdbmsTest\provideBuildSubstring_invalidParams
provideBuildSubstring_invalidParams()
Definition: DatabaseSqliteRdbmsTest.php:41
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
$input
if(is_array( $mode)) switch( $mode) $input
Definition: postprocess-phan.php:141
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
DatabaseSqliteRdbmsTest\testBuildSubstring_invalidParams
testBuildSubstring_invalidParams( $start, $length)
Wikimedia\Rdbms\DatabaseSqlite::buildSubstring provideBuildSubstring_invalidParams.
Definition: DatabaseSqliteRdbmsTest.php:54
$output
$output
Definition: SyntaxHighlight.php:334
DatabaseSqliteRdbmsTest\getMockDb
getMockDb()
Definition: DatabaseSqliteRdbmsTest.php:19
DatabaseSqliteRdbmsTest\provideBuildSubstring
provideBuildSubstring()
Definition: DatabaseSqliteRdbmsTest.php:26
DatabaseSqliteRdbmsTest\testBuildSubstring
testBuildSubstring( $input, $start, $length, $expected)
Wikimedia\Rdbms\DatabaseSqlite::buildSubstring provideBuildSubstring.
Definition: DatabaseSqliteRdbmsTest.php:35
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52