mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 04:16:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Tests\Unit\Services\Acl\Api;
 | 
						|
 | 
						|
use Tests\TestCase;
 | 
						|
use Pterodactyl\Models\ApiKey;
 | 
						|
use Pterodactyl\Services\Acl\Api\AdminAcl;
 | 
						|
 | 
						|
class AdminAclTest extends TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Test that permissions return the expects values.
 | 
						|
     *
 | 
						|
     * @dataProvider permissionsDataProvider
 | 
						|
     */
 | 
						|
    public function testPermissions(int $permission, int $check, bool $outcome)
 | 
						|
    {
 | 
						|
        $this->assertSame($outcome, AdminAcl::can($permission, $check));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test that checking against a model works as expected.
 | 
						|
     */
 | 
						|
    public function testCheck()
 | 
						|
    {
 | 
						|
        $model = factory(ApiKey::class)->make(['r_servers' => AdminAcl::READ | AdminAcl::WRITE]);
 | 
						|
 | 
						|
        $this->assertTrue(AdminAcl::check($model, AdminAcl::RESOURCE_SERVERS, AdminAcl::WRITE));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Provide valid and invalid permissions combos for testing.
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function permissionsDataProvider(): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            [AdminAcl::READ, AdminAcl::READ, true],
 | 
						|
            [AdminAcl::READ | AdminAcl::WRITE, AdminAcl::READ, true],
 | 
						|
            [AdminAcl::READ | AdminAcl::WRITE, AdminAcl::WRITE, true],
 | 
						|
            [AdminAcl::WRITE, AdminAcl::WRITE, true],
 | 
						|
            [AdminAcl::READ, AdminAcl::WRITE, false],
 | 
						|
            [AdminAcl::NONE, AdminAcl::READ, false],
 | 
						|
            [AdminAcl::NONE, AdminAcl::WRITE, false],
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |