blob: 640611629382f4cf0edeec7cd20252451f12790e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
<?php
namespace SMW\Tests;
use SMW\Tests\Util\MwDatabaseTableBuilder;
use SMW\StoreFactory;
use SMW\Application;
use RuntimeException;
/**
* @ingroup Test
*
* @group SMW
* @group SMWExtension
* @group semantic-mediawiki
* @group mediawiki-database
* @group medium
*
* @license GNU GPL v2+
* @since 2.0
*
* @author mwjames
*/
abstract class MwDBaseUnitTestCase extends \PHPUnit_Framework_TestCase {
/* @var MwDatabaseTableBuilder */
protected $mwDatabaseTableBuilder = null;
/* @var array|null */
protected $databaseToBeExcluded = null;
/* @var array|null */
protected $storesToBeExcluded = null;
protected $destroyDatabaseTablesOnEachRun = false;
protected $isUsableUnitTestDatabase = true;
protected function setUp() {
parent::setUp();
$this->checkIfDatabaseCanBeUsedOtherwiseSkipTest();
$this->checkIfStoreCanBeUsedOtherwiseSkipTest();
Application::getInstance()->registerObject( 'Store', $this->getStore() );
}
protected function tearDown() {
Application::clear();
parent::tearDown();
}
/**
* It is assumed that each test that makes use of the TestCase is requesting
* a "real" DB connection
*
* By default, the database tables are being re-used but it is possible to
* request a trear down so that the next test can rebuild the tables from
* scratch
*/
public function run( \PHPUnit_Framework_TestResult $result = null ) {
$this->getStore()->clear();
$this->mwDatabaseTableBuilder = MwDatabaseTableBuilder::getInstance( $this->getStore() );
$this->mwDatabaseTableBuilder->removeAvailableDatabaseType( $this->databaseToBeExcluded );
try {
$this->mwDatabaseTableBuilder->doBuild();
} catch ( RuntimeException $e ) {
$this->isUsableUnitTestDatabase = false;
}
parent::run( $result );
if ( $this->isUsableUnitTestDatabase && $this->destroyDatabaseTablesOnEachRun ) {
$this->mwDatabaseTableBuilder->doDestroy();
}
}
protected function removeDatabaseTypeFromTest( $databaseToBeExcluded ) {
$this->databaseToBeExcluded = $databaseToBeExcluded;
}
protected function destroyDatabaseTablesOnEachRun() {
$this->destroyDatabaseTablesOnEachRun = true;
}
protected function getStore() {
return StoreFactory::getStore();
}
protected function setStoresToBeExcluded( array $storesToBeExcluded ) {
return $this->storesToBeExcluded = $storesToBeExcluded;
}
protected function getDBConnection() {
return $this->mwDatabaseTableBuilder->getDBConnection();
}
protected function getDBConnectionProvider() {
return $this->mwDatabaseTableBuilder->getDBConnectionProvider();
}
protected function isUsableUnitTestDatabase() {
return $this->isUsableUnitTestDatabase;
}
protected function checkIfDatabaseCanBeUsedOtherwiseSkipTest() {
if ( !$this->isUsableUnitTestDatabase ) {
$this->markTestSkipped(
"Database is not available or was excluded"
);
}
}
protected function checkIfStoreCanBeUsedOtherwiseSkipTest() {
$store = get_class( $this->getStore() );
if ( in_array( $store, (array)$this->storesToBeExcluded ) ) {
$this->markTestSkipped(
"{$store} was excluded"
);
}
}
}
|