-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathTestCase.php
105 lines (89 loc) · 2.47 KB
/
TestCase.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
99
100
101
102
103
104
105
<?php
namespace Barryvdh\Debugbar\Tests;
use Barryvdh\Debugbar\Facades\Debugbar;
use Barryvdh\Debugbar\ServiceProvider;
use Illuminate\Routing\Router;
use Orchestra\Testbench\TestCase as Orchestra;
use Barryvdh\Debugbar\Tests\Mocks\MockController;
use Barryvdh\Debugbar\Tests\Mocks\MockViewComponent;
use Barryvdh\Debugbar\Tests\Mocks\MockMiddleware;
class TestCase extends Orchestra
{
/**
* Get package providers.
*
* @param \Illuminate\Foundation\Application $app
*
* @return array
*/
protected function getPackageProviders($app)
{
return [ServiceProvider::class];
}
/**
* Get package aliases.
*
* @param \Illuminate\Foundation\Application $app
*
* @return array
*/
protected function getPackageAliases($app)
{
return ['Debugbar' => Debugbar::class];
}
/**
* Define environment setup.
*
* @param \Illuminate\Foundation\Application $app
*
* @return void
*/
protected function getEnvironmentSetUp($app)
{
/** @var Router $router */
$router = $app['router'];
$app['config']->set('debugbar.hide_empty_tabs', false);
$this->addWebRoutes($router);
$this->addApiRoutes($router);
$this->addViewPaths();
}
/**
* @param Router $router
*/
protected function addWebRoutes(Router $router)
{
$router->get('web/plain', function () {
return 'PONG';
});
$router->get('web/empty', function () {
return '';
});
$router->get('web/null', function () {
return null;
});
$router->get('web/html', function () {
return '<html><head></head><body>Pong</body></html>';
});
$router->get('web/fakejson', function () {
return '{"foo":"bar"}';
});
$router->get('web/show', [ MockController::class, 'show' ]);
$router->get('web/view', MockViewComponent::class);
$router->post('web/mw')->middleware(MockMiddleware::class);
}
/**
* @param Router $router
*/
protected function addApiRoutes(Router $router)
{
$router->get('api/ping', [
'uses' => function () {
return response()->json(['status' => 'pong']);
}
]);
}
protected function addViewPaths()
{
config(['view.paths' => array_merge(config('view.paths'), [__DIR__ . '/resources/views'])]);
}
}