added dashboard factory
This commit is contained in:
85
tests/Feature/Common/DashboardsTest.php
Normal file
85
tests/Feature/Common/DashboardsTest.php
Normal file
@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature\Common;
|
||||
|
||||
use App\Jobs\Common\CreateDashboard;
|
||||
use App\Models\Common\Dashboard;
|
||||
use Tests\Feature\FeatureTestCase;
|
||||
|
||||
class DashboardsTest extends FeatureTestCase
|
||||
{
|
||||
public function testItShouldSeeDashboard()
|
||||
{
|
||||
$this->loginAs()
|
||||
->get(route('dashboard'))
|
||||
->assertStatus(200)
|
||||
->assertSeeText(trans_choice('general.dashboards', 1));
|
||||
}
|
||||
|
||||
public function testItShouldSeeDashboardListPage()
|
||||
{
|
||||
$this->loginAs()
|
||||
->get(route('dashboards.index'))
|
||||
->assertStatus(200)
|
||||
->assertSeeText(trans_choice('general.dashboards', 2));
|
||||
}
|
||||
|
||||
public function testItShouldSeeDashboardCreatePage()
|
||||
{
|
||||
$this->loginAs()
|
||||
->get(route('dashboards.create'))
|
||||
->assertStatus(200)
|
||||
->assertSeeText(trans('general.title.new', ['type' => trans_choice('general.dashboards', 1)]));
|
||||
}
|
||||
|
||||
public function testItShouldCreateDashboard()
|
||||
{
|
||||
$this->loginAs()
|
||||
->post(route('dashboards.store'), $this->getRequest())
|
||||
->assertStatus(200);
|
||||
|
||||
$this->assertFlashLevel('success');
|
||||
}
|
||||
|
||||
public function testItShouldSeeDashboardUpdatePage()
|
||||
{
|
||||
$dashboard = $this->dispatch(new CreateDashboard($this->getRequest()));
|
||||
|
||||
$this->loginAs()
|
||||
->get(route('dashboards.edit', $dashboard->id))
|
||||
->assertStatus(200)
|
||||
->assertSee($dashboard->name);
|
||||
}
|
||||
|
||||
public function testItShouldUpdateDashboard()
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
|
||||
$dashboard = $this->dispatch(new CreateDashboard($request));
|
||||
|
||||
$request['name'] = $this->faker->text(15);
|
||||
|
||||
$this->loginAs()
|
||||
->patch(route('dashboards.update', $dashboard->id), $request)
|
||||
->assertStatus(200);
|
||||
|
||||
$this->assertFlashLevel('success');
|
||||
}
|
||||
|
||||
public function testItShouldDeleteDashboard()
|
||||
{
|
||||
$dashboard_1 = $this->dispatch(new CreateDashboard($this->getRequest()));
|
||||
$dashboard_2 = $this->dispatch(new CreateDashboard($this->getRequest()));
|
||||
|
||||
$this->loginAs()
|
||||
->delete(route('dashboards.destroy', $dashboard_2->id))
|
||||
->assertStatus(200);
|
||||
|
||||
$this->assertFlashLevel('success');
|
||||
}
|
||||
|
||||
public function getRequest()
|
||||
{
|
||||
return factory(Dashboard::class)->states('enabled', 'users')->raw();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user