forked from mohorev/yii2-upload-behavior
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDatabaseTestCase.php
98 lines (85 loc) · 1.99 KB
/
DatabaseTestCase.php
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
<?php
namespace yii\web;
/**
* Mock for the is_uploaded_file() function for web classes.
* @return boolean
*/
function is_uploaded_file($filename)
{
return file_exists($filename);
}
/**
* Mock for the move_uploaded_file() function for web classes.
* @return boolean
*/
function move_uploaded_file($filename, $destination)
{
return copy($filename, $destination);
}
namespace tests;
use Yii;
use yii\db\Connection;
use yii\helpers\FileHelper;
use yii\web\UploadedFile;
/**
* DatabaseTestCase
*/
abstract class DatabaseTestCase extends \PHPUnit_Extensions_Database_TestCase
{
/**
* @inheritdoc
*/
protected function setUp()
{
if (Yii::$app->get('db', false) === null) {
$this->markTestSkipped();
} else {
FileHelper::createDirectory(__DIR__ . '/upload');
parent::setUp();
}
}
/**
* @inheritdoc
*/
protected function tearDown()
{
parent::tearDown();
FileHelper::removeDirectory(__DIR__ . '/upload');
}
/**
* @inheritdoc
*/
public function getConnection()
{
return $this->createDefaultDBConnection(\Yii::$app->getDb()->pdo);
}
/**
* @inheritdoc
*/
public function getDataSet()
{
return $this->createFlatXMLDataSet(__DIR__ . '/data/test.xml');
}
/**
* @inheritdoc
*/
public static function setUpBeforeClass()
{
try {
Yii::$app->set('db', [
'class' => Connection::className(),
'dsn' => 'sqlite::memory:',
]);
Yii::$app->getDb()->open();
$lines = explode(';', file_get_contents(__DIR__ . '/migrations/sqlite.sql'));
foreach ($lines as $line) {
if (trim($line) !== '') {
Yii::$app->getDb()->pdo->exec($line);
}
}
} catch (\Exception $e) {
Yii::$app->clear('db');
}
UploadedFile::reset();
}
}