xref: /webtrees/tests/app/WebtreesTest.php (revision 52bcc40297e06e51c5cc74d5ddd66c750aefef51)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2019 webtrees development team
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 3 of the License, or
8 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16declare(strict_types=1);
17
18namespace Fisharebest\Webtrees;
19
20use function date_default_timezone_get;
21use function date_default_timezone_set;
22use function error_reporting;
23use ErrorException;
24use function set_error_handler;
25
26/**
27 * Test the Webtrees class
28 */
29class WebtreesTest extends TestCase
30{
31    /**
32     * @covers \Fisharebest\Webtrees\Webtrees::init
33     * @return void
34     */
35    public function testInit(): void
36    {
37        date_default_timezone_set('Europe/London');
38        error_reporting(0);
39        set_error_handler(null);
40
41        Webtrees::init();
42
43        // webtrees always runs in UTC (and converts to local time on demand).
44        $this->assertSame('UTC', date_default_timezone_get());
45
46        // webtrees sets the error reporting level.
47        $this->assertNotSame(0, error_reporting());
48        $this->assertSame(Webtrees::ERROR_REPORTING, error_reporting());
49
50        try {
51            // Trigger an error
52            fopen(__DIR__ . '/no-such-file', 'r');
53        } catch (ErrorException $ex) {
54            $this->assertSame(__FILE__, $ex->getFile());
55        }
56
57        // Disable error reporting (we could use "@"), and don't raise an exception.
58        error_reporting(0);
59        fopen(__DIR__ . '/no-such-file', 'r');
60    }
61}
62