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
131
132
133
134
135
|
<?php
/**
* webtrees: online genealogy
* Copyright (C) 2019 webtrees development team
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace Fisharebest\Webtrees;
use Fisharebest\Webtrees\Http\Controllers\GedcomFileController;
use Fisharebest\Webtrees\Schema\SeedDatabase;
use Fisharebest\Webtrees\Services\TimeoutService;
use Illuminate\Database\Capsule\Manager as DB;
use function basename;
use function file_get_contents;
/**
* Base class for unit tests
*/
class TestCase extends \PHPUnit\Framework\TestCase
{
protected static $uses_database = false;
/**
* Things to run once, before all the tests.
*/
public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
if (static::$uses_database) {
defined('WT_ROOT') || define('WT_ROOT', dirname(__DIR__) . '/');
static::createTestDatabase();
}
}
/**
* Things to run once, AFTER all the tests.
*/
public static function tearDownAfterClass()
{
if (static::$uses_database) {
$pdo = DB::connection()->getPdo();
unset($pdo);
}
parent::tearDownAfterClass();
}
/**
* Things to run before every test.
*/
protected function setUp()
{
parent::setUp();
defined('WT_ROOT') || define('WT_ROOT', dirname(__DIR__) . '/');
defined('WT_BASE_URL') || define('WT_BASE_URL', 'http://localhost/');
defined('WT_DATA_DIR') || define('WT_DATA_DIR', WT_ROOT . 'data/');
defined('WT_LOCALE') || define('WT_LOCALE', I18N::init('en-US'));
if (static::$uses_database) {
DB::connection()->beginTransaction();
}
}
/**
* Things to run after every test
*/
protected function tearDown()
{
if (static::$uses_database) {
DB::connection()->rollBack();
}
Site::$preferences = [];
User::$cache = [];
Tree::$trees = [];
Auth::logout();
}
/**
* Create an SQLite in-memory database for testing
*/
protected static function createTestDatabase(): void
{
$capsule = new DB();
$capsule->addConnection([
'driver' => 'sqlite',
'database' => ':memory:',
]);
$capsule->setAsGlobal();
// Create tables
Database::updateSchema('\Fisharebest\Webtrees\Schema', 'WT_SCHEMA_VERSION', Webtrees::SCHEMA_VERSION);
// Create config data
(new SeedDatabase())->run();
}
/**
* Import a GEDCOM file into the test database.
*
* @param string $gedcom_file
*
* @return Tree
*/
protected function importTree(string $gedcom_file): Tree
{
$tree = Tree::create(basename($gedcom_file), basename($gedcom_file));
$tree->importGedcomFile(__DIR__ . '/../' . $gedcom_file, $gedcom_file);
$gedcom_file_controller = new GedcomFileController();
do {
$gedcom_file_controller->import(new TimeoutService(microtime()), $tree);
$imported = $tree->getPreference('imported');
} while (!$imported);
return $tree;
}
}
|