3 * Abstract class to construct tests for ORMTable deriving classes.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
28 * @licence GNU GPL v2+
29 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
30 * @author Daniel Kinzler
32 class ORMTableTest
extends MediaWikiTestCase
{
38 protected function getTableClass() {
39 return 'PageORMTableForTesting';
46 public function getTable() {
47 $class = $this->getTableClass();
49 return $class::singleton();
56 public function getRowClass() {
57 return $this->getTable()->getRowClass();
63 public function testSingleton() {
64 $class = $this->getTableClass();
66 $this->assertInstanceOf( $class, $class::singleton() );
67 $this->assertTrue( $class::singleton() === $class::singleton() );
73 public function testIgnoreErrorsOverride() {
74 $table = $this->getTable();
76 $db = $table->getReadDbConnection();
77 $db->ignoreErrors( true );
80 $table->rawSelect( "this is invalid" );
81 $this->fail( "An invalid query should trigger a DBQueryError even if ignoreErrors is enabled." );
82 } catch ( DBQueryError
$ex ) {
83 $this->assertTrue( true, "just making phpunit happy" );
86 $db->ignoreErrors( false );
91 * Dummy ORM table for testing, reading Title objects from the page table.
96 class PageORMTableForTesting
extends ORMTable
{
99 * @see ORMTable::getName
103 public function getName() {
108 * @see ORMTable::getRowClass
112 public function getRowClass() {
117 * @see ORMTable::newRow
121 public function newRow( array $data, $loadDefaults = false ) {
122 return Title
::makeTitle( $data['namespace'], $data['title'] );
126 * @see ORMTable::getFields
130 public function getFields() {
133 'namespace' => 'int',
139 * @see ORMTable::getFieldPrefix
143 protected function getFieldPrefix() {