79 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Feature\Auth;
 | |
| 
 | |
| use App\Jobs\Auth\CreatePermission;
 | |
| use App\Models\Auth\Permission;
 | |
| use Tests\Feature\FeatureTestCase;
 | |
| 
 | |
| class PermissionsTest extends FeatureTestCase
 | |
| {
 | |
|     public function testItShouldSeePermissionListPage()
 | |
|     {
 | |
|         $this->loginAs()
 | |
|             ->get(route('permissions.index'))
 | |
|             ->assertStatus(200)
 | |
|             ->assertSeeText(trans_choice('general.permissions', 2));
 | |
|     }
 | |
| 
 | |
|     public function testItShouldSeePermissionCreatePage()
 | |
|     {
 | |
|         $this->loginAs()
 | |
|             ->get(route('permissions.create'))
 | |
|             ->assertStatus(200)
 | |
|             ->assertSeeText(trans('general.title.new', ['type' => trans_choice('general.permissions', 1)]));
 | |
|     }
 | |
| 
 | |
|     public function testItShouldCreatePermission()
 | |
|     {
 | |
|         $this->loginAs()
 | |
|             ->post(route('permissions.store'), $this->getRequest())
 | |
|             ->assertStatus(200);
 | |
| 
 | |
|         $this->assertFlashLevel('success');
 | |
|     }
 | |
| 
 | |
|     public function testItShouldSeePermissionUpdatePage()
 | |
|     {
 | |
|         $permission = $this->dispatch(new CreatePermission($this->getRequest()));
 | |
| 
 | |
|         $this->loginAs()
 | |
|             ->get(route('permissions.edit', $permission->id))
 | |
|             ->assertStatus(200)
 | |
|             ->assertSee($permission->name);
 | |
|     }
 | |
| 
 | |
|     public function testItShouldUpdatePermission()
 | |
|     {
 | |
|         $request = $this->getRequest();
 | |
| 
 | |
|         $permission = $this->dispatch(new CreatePermission($request));
 | |
| 
 | |
|         $request['display_name'] = $this->faker->word;
 | |
| 
 | |
|         $this->loginAs()
 | |
|             ->patch(route('permissions.update', $permission->id), $request)
 | |
|             ->assertStatus(200)
 | |
| 			->assertSee($request['display_name']);
 | |
| 
 | |
|         $this->assertFlashLevel('success');
 | |
|     }
 | |
| 
 | |
|     public function testItShouldDeletePermission()
 | |
|     {
 | |
|         $permission = $this->dispatch(new CreatePermission($this->getRequest()));
 | |
| 
 | |
|         $this->loginAs()
 | |
|             ->delete(route('permissions.destroy', $permission->id))
 | |
|             ->assertStatus(200);
 | |
| 
 | |
|         $this->assertFlashLevel('success');
 | |
| 
 | |
|     }
 | |
| 
 | |
|     public function getRequest()
 | |
|     {
 | |
|         return factory(Permission::class)->raw();
 | |
|     }
 | |
| }
 |