mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace api\tests\functional\authlibInjector;
 | 
						|
 | 
						|
use api\tests\FunctionalTester;
 | 
						|
 | 
						|
class IndexCest {
 | 
						|
 | 
						|
    public function index(FunctionalTester $I) {
 | 
						|
        $I->sendGet('/api/authlib-injector');
 | 
						|
        $I->seeResponseCodeIs(200);
 | 
						|
        $I->canSeeResponseContainsJson([
 | 
						|
            'meta' => [
 | 
						|
                'serverName' => 'Ely.by',
 | 
						|
                'implementationName' => 'Account Ely.by adapter for the authlib-injector library',
 | 
						|
                'implementationVersion' => '1.0.0',
 | 
						|
                'feature.no_mojang_namespace' => true,
 | 
						|
                'links' => [
 | 
						|
                    'homepage' => 'https://ely.by',
 | 
						|
                    'register' => 'https://account.ely.by/register',
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
            'skinDomains' => ['ely.by', '.ely.by'],
 | 
						|
            'signaturePublickey' => "-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBANbUpVCZkMKpfvYZ08W3lumdAaYxLBnm\nUDlzHBQH3DpYef5WCO32TDU6feIJ58A0lAywgtZ4wwi2dGHOz/1hAvcCAwEAAQ==\n-----END PUBLIC KEY-----",
 | 
						|
        ]);
 | 
						|
        $I->canSeeHttpHeader('X-Accel-Expires');
 | 
						|
    }
 | 
						|
 | 
						|
}
 |