misc_pterodactyl-panel/tests/Unit/Services/Users/TwoFactorSetupServiceTest.php

78 lines
2.5 KiB
PHP
Raw Normal View History

<?php
namespace Tests\Unit\Services\Users;
use Mockery as m;
2017-08-31 02:14:20 +00:00
use Tests\TestCase;
use Pterodactyl\Models\User;
2017-11-18 18:35:33 +00:00
use PragmaRX\Google2FA\Google2FA;
2017-08-31 02:14:20 +00:00
use Illuminate\Contracts\Config\Repository;
2017-11-18 18:35:33 +00:00
use Illuminate\Contracts\Encryption\Encrypter;
use Pterodactyl\Services\Users\TwoFactorSetupService;
2017-08-31 02:14:20 +00:00
use Pterodactyl\Contracts\Repository\UserRepositoryInterface;
class TwoFactorSetupServiceTest extends TestCase
{
/**
2017-11-18 18:35:33 +00:00
* @var \Illuminate\Contracts\Config\Repository|\Mockery\Mock
*/
2017-11-18 18:35:33 +00:00
private $config;
/**
2017-11-18 18:35:33 +00:00
* @var \Illuminate\Contracts\Encryption\Encrypter|\Mockery\Mock
*/
2017-11-18 18:35:33 +00:00
private $encrypter;
/**
2017-11-18 18:35:33 +00:00
* @var \PragmaRX\Google2FA\Google2FA|\Mockery\Mock
*/
2017-11-18 18:35:33 +00:00
private $google2FA;
/**
2017-11-18 18:35:33 +00:00
* @var \Pterodactyl\Contracts\Repository\UserRepositoryInterface|\Mockery\Mock
*/
2017-11-18 18:35:33 +00:00
private $repository;
/**
* Setup tests.
*/
public function setUp()
{
parent::setUp();
$this->config = m::mock(Repository::class);
2017-11-18 18:35:33 +00:00
$this->encrypter = m::mock(Encrypter::class);
$this->google2FA = m::mock(Google2FA::class);
$this->repository = m::mock(UserRepositoryInterface::class);
}
/**
* Test that the correct data is returned.
*/
public function testSecretAndImageAreReturned()
{
$model = factory(User::class)->make();
2017-11-18 18:35:33 +00:00
$this->config->shouldReceive('get')->with('pterodactyl.auth.2fa.bytes')->once()->andReturn(32);
$this->google2FA->shouldReceive('generateSecretKey')->with(32)->once()->andReturn('secretKey');
$this->config->shouldReceive('get')->with('app.name')->once()->andReturn('CompanyName');
2017-11-18 18:35:33 +00:00
$this->google2FA->shouldReceive('getQRCodeGoogleUrl')->with('CompanyName', $model->email, 'secretKey')->once()->andReturn('http://url.com');
$this->encrypter->shouldReceive('encrypt')->with('secretKey')->once()->andReturn('encryptedSecret');
2018-01-05 22:33:50 +00:00
$this->repository->shouldReceive('withoutFreshModel->update')->with($model->id, ['totp_secret' => 'encryptedSecret'])->once()->andReturnNull();
2017-11-18 18:35:33 +00:00
$response = $this->getService()->handle($model);
$this->assertNotEmpty($response);
2017-11-18 18:35:33 +00:00
$this->assertSame('http://url.com', $response);
}
/**
2017-11-18 18:35:33 +00:00
* Return an instance of the service to test with mocked dependencies.
*
* @return \Pterodactyl\Services\Users\TwoFactorSetupService
*/
2017-11-18 18:35:33 +00:00
private function getService(): TwoFactorSetupService
{
2017-11-18 18:35:33 +00:00
return new TwoFactorSetupService($this->config, $this->encrypter, $this->google2FA, $this->repository);
}
}