add further tests
This commit is contained in:
@ -16,13 +16,21 @@ declare(strict_types=1);
|
||||
namespace D3\Webauthn\tests\unit\Modules\Application\Component;
|
||||
|
||||
use D3\TestingTools\Development\CanAccessRestricted;
|
||||
use D3\Webauthn\Application\Model\Exceptions\WebauthnException;
|
||||
use D3\Webauthn\Application\Model\Exceptions\WebauthnGetException;
|
||||
use D3\Webauthn\Application\Model\Exceptions\WebauthnLoginErrorException;
|
||||
use D3\Webauthn\Application\Model\Webauthn;
|
||||
use D3\Webauthn\Application\Model\WebauthnConf;
|
||||
use D3\Webauthn\Application\Model\WebauthnLogin;
|
||||
use D3\Webauthn\Modules\Application\Component\d3_webauthn_UserComponent;
|
||||
use D3\Webauthn\Modules\Application\Component\d3_webauthn_UserComponent_parent;
|
||||
use OxidEsales\Eshop\Application\Component\UserComponent;
|
||||
use OxidEsales\Eshop\Application\Controller\Admin\LoginController;
|
||||
use OxidEsales\Eshop\Application\Model\User;
|
||||
use OxidEsales\Eshop\Core\Controller\BaseController;
|
||||
use OxidEsales\Eshop\Core\Registry;
|
||||
use OxidEsales\Eshop\Core\Request;
|
||||
use OxidEsales\Eshop\Core\Session;
|
||||
use OxidEsales\Eshop\Core\Utils;
|
||||
use OxidEsales\Eshop\Core\UtilsView;
|
||||
use OxidEsales\TestingLibrary\UnitTestCase;
|
||||
use PHPUnit\Framework\MockObject\MockObject;
|
||||
@ -32,6 +40,273 @@ class UserComponentWebauthnTest extends UnitTestCase
|
||||
{
|
||||
use CanAccessRestricted;
|
||||
|
||||
/**
|
||||
* @test
|
||||
* @return void
|
||||
* @throws ReflectionException
|
||||
* @covers \D3\Webauthn\Modules\Application\Component\d3_webauthn_UserComponent::login
|
||||
*/
|
||||
public function canLogin()
|
||||
{
|
||||
/** @var d3_webauthn_UserComponent|MockObject $sut */
|
||||
$sut = $this->getMockBuilder(UserComponent::class)
|
||||
->onlyMethods(['d3CallMockableFunction', 'd3WebauthnLogin'])
|
||||
->getMock();
|
||||
$sut->expects($this->once())->method('d3CallMockableFunction')->with(
|
||||
$this->identicalTo([d3_webauthn_UserComponent_parent::class, 'login'])
|
||||
);
|
||||
$sut->expects($this->once())->method('d3WebauthnLogin');
|
||||
|
||||
$this->callMethod(
|
||||
$sut,
|
||||
'login'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @test
|
||||
* @param $canUseWebauthn
|
||||
* @param $loggedin
|
||||
* @param $setVariableCount
|
||||
* @return void
|
||||
* @throws ReflectionException
|
||||
* @dataProvider canCheckloginDataProvider
|
||||
* @covers \D3\Webauthn\Modules\Application\Component\d3_webauthn_UserComponent::d3WebauthnLogin
|
||||
*/
|
||||
public function canWebauthnLogin($canUseWebauthn, $loggedin, $setVariableCount, $doRedirect)
|
||||
{
|
||||
/** @var Utils|MockObject $utilsMock */
|
||||
$utilsMock = $this->getMockBuilder(Utils::class)
|
||||
->onlyMethods(['redirect'])
|
||||
->getMock();
|
||||
$utilsMock->expects($this->exactly((int) $doRedirect))->method('redirect');
|
||||
|
||||
/** @var BaseController|MockObject $baseControllerMock */
|
||||
$baseControllerMock = $this->getMockBuilder(BaseController::class)
|
||||
->addMethods(['getNavigationParams'])
|
||||
->getMock();
|
||||
$baseControllerMock->method('getNavigationParams')->willReturn(['empty']);
|
||||
|
||||
/** @var Request|MockObject $requestMock */
|
||||
$requestMock = $this->getMockBuilder(Request::class)
|
||||
->onlyMethods(['getRequestParameter'])
|
||||
->getMock();
|
||||
$requestMock->method('getRequestParameter')->willReturnMap([
|
||||
['lgn_usr', 'myUserName']
|
||||
]);
|
||||
|
||||
/** @var User|MockObject $userMock */
|
||||
$userMock = $this->getMockBuilder(User::class)
|
||||
->onlyMethods(['d3GetLoginUserId'])
|
||||
->getMock();
|
||||
$userMock->method('d3GetLoginUserId')->willReturn('myUserId');
|
||||
|
||||
/** @var Session|MockObject $sessionMock */
|
||||
$sessionMock = $this->getMockBuilder(Session::class)
|
||||
->onlyMethods(['setVariable', 'getVariable'])
|
||||
->getMock();
|
||||
$sessionMock->expects($this->exactly($setVariableCount))->method('setVariable');
|
||||
$sessionMock->method('getVariable')->with(WebauthnConf::WEBAUTHN_ADMIN_SESSION_LOGINUSER)
|
||||
->willReturn('myUserName');
|
||||
|
||||
/** @var d3_webauthn_UserComponent|MockObject $sut */
|
||||
$sut = $this->getMockBuilder(UserComponent::class)
|
||||
->onlyMethods(['d3CanUseWebauthn', 'd3CallMockableFunction', 'd3HasWebauthnButNotLoggedin',
|
||||
'd3GetMockableOxNewObject', 'd3GetMockableRegistryObject', 'getParent'
|
||||
])
|
||||
->getMock();
|
||||
$sut->method('d3CanUseWebauthn')->willReturn($canUseWebauthn);
|
||||
$sut->method('d3CallMockableFunction')->willReturn('parentReturn');
|
||||
$sut->method('d3HasWebauthnButNotLoggedin')->willReturn($loggedin);
|
||||
$sut->method('d3GetMockableOxNewObject')->willReturnCallback(
|
||||
function () use ($userMock) {
|
||||
$args = func_get_args();
|
||||
switch ($args[0]) {
|
||||
case User::class:
|
||||
return $userMock;
|
||||
default:
|
||||
return call_user_func_array("oxNew", $args);
|
||||
}
|
||||
}
|
||||
);
|
||||
$sut->method('d3GetMockableRegistryObject')->willReturnCallback(
|
||||
function () use ($utilsMock, $requestMock, $sessionMock) {
|
||||
$args = func_get_args();
|
||||
switch ($args[0]) {
|
||||
case Utils::class:
|
||||
return $utilsMock;
|
||||
case Request::class:
|
||||
return $requestMock;
|
||||
case Session::class:
|
||||
return $sessionMock;
|
||||
default:
|
||||
return Registry::get($args[0]);
|
||||
}
|
||||
}
|
||||
);
|
||||
$sut->method('getParent')->willReturn($baseControllerMock);
|
||||
|
||||
$this->callMethod(
|
||||
$sut,
|
||||
'd3WebauthnLogin'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function canCheckloginDataProvider(): array
|
||||
{
|
||||
return [
|
||||
'can not use webauthn' => [false, false, 0, false],
|
||||
'already logged in' => [true, false, 0, false],
|
||||
'passed' => [true, true, 4, true],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @test
|
||||
* @param $username
|
||||
* @param $userId
|
||||
* @param $hasWebauthnLogin
|
||||
* @param $usedPassword
|
||||
* @param $expected
|
||||
* @return void
|
||||
* @throws ReflectionException
|
||||
* @dataProvider canUseWebauthnDataProvider
|
||||
* @covers \D3\Webauthn\Modules\Application\Component\d3_webauthn_UserComponent::d3CanUseWebauthn
|
||||
*/
|
||||
public function canUseWebauthn($username, $userId, $hasWebauthnLogin, $usedPassword, $expected)
|
||||
{
|
||||
/** @var Session|MockObject $sessionMock */
|
||||
$sessionMock = $this->getMockBuilder(Session::class)
|
||||
->onlyMethods(['hasVariable'])
|
||||
->getMock();
|
||||
$sessionMock->method('hasVariable')->with(WebauthnConf::WEBAUTHN_SESSION_AUTH)
|
||||
->willReturn($hasWebauthnLogin);
|
||||
|
||||
/** @var Request|MockObject $requestMock */
|
||||
$requestMock = $this->getMockBuilder(Request::class)
|
||||
->onlyMethods(['getRequestParameter'])
|
||||
->getMock();
|
||||
$requestMock->method('getRequestParameter')->with('lgn_pwd')->willReturn($usedPassword);
|
||||
|
||||
/** @var d3_webauthn_UserComponent|MockObject $sut */
|
||||
$sut = $this->getMockBuilder(UserComponent::class)
|
||||
->onlyMethods(['d3GetMockableRegistryObject'])
|
||||
->getMock();
|
||||
$sut->method('d3GetMockableRegistryObject')->willReturnCallback(
|
||||
function () use ($requestMock, $sessionMock) {
|
||||
$args = func_get_args();
|
||||
switch ($args[0]) {
|
||||
case Request::class:
|
||||
return $requestMock;
|
||||
case Session::class:
|
||||
return $sessionMock;
|
||||
default:
|
||||
return Registry::get($args[0]);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
$this->assertSame(
|
||||
$expected,
|
||||
$this->callMethod(
|
||||
$sut,
|
||||
'd3CanUseWebauthn',
|
||||
[$username, $userId]
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function canUseWebauthnDataProvider(): array
|
||||
{
|
||||
return [
|
||||
'no username' => [null, 'myUserId', false, null, false],
|
||||
'no userid' => ['username', null, false, null, false],
|
||||
'existing webauthn login' => ['username', 'myUserId', true, null, false],
|
||||
'used password' => ['username', 'myUserId', false, 'myPassword', false],
|
||||
'passed' => ['username', 'myUserId', false, null, true],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @test
|
||||
* @param $webauthnActive
|
||||
* @param $hasAuth
|
||||
* @param $expected
|
||||
* @return void
|
||||
* @throws ReflectionException
|
||||
* @covers \D3\Webauthn\Modules\Application\Component\d3_webauthn_UserComponent::d3HasWebauthnButNotLoggedin
|
||||
* @dataProvider canHasWebauthnButNotLoggedinDataProvider
|
||||
*/
|
||||
public function canHasWebauthnButNotLoggedin($webauthnActive, $hasAuth, $expected)
|
||||
{
|
||||
/** @var Session|MockObject $sessionMock */
|
||||
$sessionMock = $this->getMockBuilder(Session::class)
|
||||
->onlyMethods(['getVariable'])
|
||||
->getMock();
|
||||
$sessionMock->method('getVariable')->with(WebauthnConf::WEBAUTHN_SESSION_AUTH)
|
||||
->willReturn($hasAuth);
|
||||
|
||||
/** @var Webauthn|MockObject $webauthnMock */
|
||||
$webauthnMock = $this->getMockBuilder(Webauthn::class)
|
||||
->onlyMethods(['isActive'])
|
||||
->getMock();
|
||||
$webauthnMock->method('isActive')->willReturn($webauthnActive);
|
||||
|
||||
/** @var UserComponent|MockObject $sut */
|
||||
$sut = $this->getMockBuilder(UserComponent::class)
|
||||
->onlyMethods(['d3GetMockableOxNewObject', 'd3GetMockableRegistryObject'])
|
||||
->getMock();
|
||||
$sut->method('d3GetMockableOxNewObject')->willReturnCallback(
|
||||
function () use ($webauthnMock) {
|
||||
$args = func_get_args();
|
||||
switch ($args[0]) {
|
||||
case Webauthn::class:
|
||||
return $webauthnMock;
|
||||
default:
|
||||
return call_user_func_array("oxNew", $args);
|
||||
}
|
||||
}
|
||||
);
|
||||
$sut->method('d3GetMockableRegistryObject')->willReturnCallback(
|
||||
function () use ($sessionMock) {
|
||||
$args = func_get_args();
|
||||
switch ($args[0]) {
|
||||
case Session::class:
|
||||
return $sessionMock;
|
||||
default:
|
||||
return Registry::get($args[0]);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
$this->assertSame(
|
||||
$expected,
|
||||
$this->callMethod(
|
||||
$sut,
|
||||
'd3HasWebauthnButNotLoggedin',
|
||||
['userId']
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function canHasWebauthnButNotLoggedinDataProvider(): array
|
||||
{
|
||||
return [
|
||||
'webauthn not active' => [false, false, false],
|
||||
'has webauthn auth' => [true, true, false],
|
||||
'passed' => [true, false, true],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @test
|
||||
* @return void
|
||||
|
Reference in New Issue
Block a user