-
Notifications
You must be signed in to change notification settings - Fork 566
Expand file tree
/
Copy pathEnvironmentPanelTest.php
More file actions
71 lines (64 loc) · 1.75 KB
/
EnvironmentPanelTest.php
File metadata and controls
71 lines (64 loc) · 1.75 KB
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
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @license https://www.opensource.org/licenses/mit-license.php MIT License
**/
namespace DebugKit\Test\TestCase\Panel;
use Cake\Event\Event;
use Cake\TestSuite\TestCase;
use DebugKit\Panel\EnvironmentPanel;
use stdClass;
/**
* Class EnvironmentPanelTest
*/
class EnvironmentPanelTest extends TestCase
{
/**
* @var EnvironmentPanel
*/
protected $panel;
/**
* set up
*
* @return void
*/
public function setUp(): void
{
parent::setUp();
$this->panel = new EnvironmentPanel();
}
/**
* Teardown method.
*
* @return void
*/
public function tearDown(): void
{
parent::tearDown();
unset($this->panel);
}
/**
* test shutdown
*
* @return void
*/
public function testShutdown()
{
$controller = new stdClass();
$event = new Event('Controller.shutdown', $controller);
$_SERVER['TEST_URL_1'] = 'mysql://user:password@localhost/my_db';
$this->panel->shutdown($event);
$output = $this->panel->data();
$this->assertIsArray($output);
$this->assertSame(['php', 'ini', 'cake', 'app', 'includePaths', 'includedFiles'], array_keys($output));
$this->assertSame('mysql://user:password@localhost/my_db', $output['php']['TEST_URL_1']);
}
}