InstallTest.php
1.53 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
<?php
namespace Tests\Feature;
use Dcat\Admin\Admin;
use Tests\TestCase;
/**
* 安装功能测试.
*
* @group install
*/
class InstallTest extends TestCase
{
protected $login = false;
public function testInstalledDirectories()
{
$this->assertFileExists(admin_path());
$this->assertFileExists(admin_path('Controllers'));
$this->assertFileExists(admin_path('routes.php'));
$this->assertFileExists(admin_path('bootstrap.php'));
$this->assertFileExists(admin_path('Controllers/HomeController.php'));
$this->assertFileExists(admin_path('Controllers/AuthController.php'));
$this->assertFileExists(admin_path('Metrics/Examples'));
$this->assertFileExists(admin_path('Metrics/Examples/NewDevices.php'));
$this->assertFileExists(admin_path('Metrics/Examples/NewUsers.php'));
$this->assertFileExists(admin_path('Metrics/Examples/ProductOrders.php'));
$this->assertFileExists(admin_path('Metrics/Examples/Sessions.php'));
$this->assertFileExists(admin_path('Metrics/Examples/Tickets.php'));
$this->assertFileExists(config_path('admin.php'));
$this->assertFileExists(public_path(Admin::asset()->getRealPath('@admin')));
$this->assertFileExists(database_path('migrations/2016_01_04_173148_create_admin_tables.php'));
$this->assertFileExists(app()->langPath().'/en/admin.php');
$this->assertFileExists(app()->langPath().'/zh_CN/admin.php');
$this->assertFileExists(app()->langPath().'/zh_CN/global.php');
}
}