misc_pterodactyl-panel/tests/Unit/Services/Api/PermissionServiceTest.php

63 lines
1.7 KiB
PHP
Raw Normal View History

<?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
*/
namespace Tests\Unit\Services;
use Mockery as m;
2017-08-05 22:26:30 +00:00
use Tests\TestCase;
use Pterodactyl\Models\APIPermission;
2017-07-09 17:29:18 +00:00
use Pterodactyl\Services\Api\PermissionService;
2017-08-05 22:26:30 +00:00
use Pterodactyl\Contracts\Repository\ApiPermissionRepositoryInterface;
2017-07-09 17:29:18 +00:00
class PermissionServiceTest extends TestCase
{
/**
* @var \Pterodactyl\Contracts\Repository\ApiPermissionRepositoryInterface
*/
protected $repository;
/**
2017-07-09 17:29:18 +00:00
* @var \Pterodactyl\Services\Api\PermissionService
*/
protected $service;
/**
* Setup tests.
*/
public function setUp()
{
parent::setUp();
$this->repository = m::mock(ApiPermissionRepositoryInterface::class);
2017-07-09 17:29:18 +00:00
$this->service = new PermissionService($this->repository);
}
/**
* Test that a new API permission can be assigned to a key.
*/
public function test_create_function()
{
2018-01-05 22:33:50 +00:00
$this->repository->shouldReceive('withoutFreshModel')->withNoArgs()->once()->andReturnSelf()
->shouldReceive('create')->with(['key_id' => 1, 'permission' => 'test-permission'])
->once()->andReturn(true);
$this->assertTrue($this->service->create(1, 'test-permission'));
}
/**
* Test that function returns an array of all the permissions available as defined on the model.
*/
public function test_get_permissions_function()
{
$this->repository->shouldReceive('getModel')->withNoArgs()->once()->andReturn(new APIPermission());
$this->assertEquals(APIPermission::CONST_PERMISSIONS, $this->service->getPermissions());
}
}