mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 10:46:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Tests\Unit\Services\Acl\Api;
 | 
						|
 | 
						|
use App\Models\ApiKey;
 | 
						|
use App\Tests\TestCase;
 | 
						|
use App\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): void
 | 
						|
    {
 | 
						|
        $this->assertSame($outcome, AdminAcl::can($permission, $check));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test that checking against a model works as expected.
 | 
						|
     */
 | 
						|
    public function testCheck(): void
 | 
						|
    {
 | 
						|
        $model = ApiKey::factory()->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.
 | 
						|
     */
 | 
						|
    public static 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],
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |