37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Engelsystem\Test\Unit\Controllers\Api;
|
||
|
|
||
|
use Engelsystem\Controllers\Api\UsesAuthServiceProvider;
|
||
|
use Engelsystem\Helpers\Authenticator;
|
||
|
use Engelsystem\Models\User\User;
|
||
|
use Engelsystem\Test\Unit\Controllers\Api\Stub\UsesAuthImplementation;
|
||
|
use Engelsystem\Test\Unit\TestCase;
|
||
|
use PHPUnit\Framework\MockObject\MockObject;
|
||
|
|
||
|
class UsesAuthServiceProviderTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @covers \Engelsystem\Controllers\Api\UsesAuthServiceProvider::register
|
||
|
*/
|
||
|
public function testRegister(): void
|
||
|
{
|
||
|
$serviceProvider = new UsesAuthServiceProvider($this->app);
|
||
|
$serviceProvider->register();
|
||
|
|
||
|
$user = new User();
|
||
|
|
||
|
/** @var Authenticator|MockObject $auth */
|
||
|
$auth = $this->createMock(Authenticator::class);
|
||
|
$this->setExpects($auth, 'user', null, $user);
|
||
|
$this->app->instance(Authenticator::class, $auth);
|
||
|
|
||
|
/** @var UsesAuthImplementation $instance */
|
||
|
$instance = $this->app->make(UsesAuthImplementation::class);
|
||
|
|
||
|
$this->assertEquals($user, $instance->user('self'));
|
||
|
}
|
||
|
}
|