2017-08-26 23:08:11 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-08-26 23:08:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Tests\Unit\Services\Subusers;
|
|
|
|
|
|
|
|
use Mockery as m;
|
|
|
|
use Tests\TestCase;
|
2017-08-27 19:55:25 +00:00
|
|
|
use Pterodactyl\Services\Subusers\PermissionCreationService;
|
|
|
|
use Pterodactyl\Contracts\Repository\PermissionRepositoryInterface;
|
2017-08-26 23:08:11 +00:00
|
|
|
|
|
|
|
class PermissionCreationServiceTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
2017-09-25 03:28:16 +00:00
|
|
|
* @var \Pterodactyl\Contracts\Repository\PermissionRepositoryInterface|\Mockery\Mock
|
2017-08-26 23:08:11 +00:00
|
|
|
*/
|
|
|
|
protected $repository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Services\Subusers\PermissionCreationService
|
|
|
|
*/
|
|
|
|
protected $service;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup tests.
|
|
|
|
*/
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->repository = m::mock(PermissionRepositoryInterface::class);
|
|
|
|
$this->service = new PermissionCreationService($this->repository);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that permissions can be assigned correctly.
|
|
|
|
*/
|
|
|
|
public function testPermissionsAreAssignedCorrectly()
|
|
|
|
{
|
|
|
|
$permissions = ['reset-sftp', 'view-sftp'];
|
|
|
|
|
2017-09-25 03:28:16 +00:00
|
|
|
$this->repository->shouldReceive('withoutFresh')->withNoArgs()->once()->andReturnSelf()
|
|
|
|
->shouldReceive('insert')->with([
|
|
|
|
['subuser_id' => 1, 'permission' => 'reset-sftp'],
|
|
|
|
['subuser_id' => 1, 'permission' => 'view-sftp'],
|
|
|
|
])->once()->andReturnNull();
|
2017-08-26 23:08:11 +00:00
|
|
|
|
2017-09-25 03:28:16 +00:00
|
|
|
$this->service->handle(1, $permissions);
|
|
|
|
$this->assertTrue(true);
|
2017-08-26 23:08:11 +00:00
|
|
|
}
|
|
|
|
}
|