87 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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)
 | |
| 			->assertSee($request['name']);
 | |
| 
 | |
| 		$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();
 | |
|     }
 | |
| }
 |