Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Port 2.3] Captcha: Added integration tests for checking customer login attempts cleanup #16348

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Captcha\Observer;

use Magento\Captcha\Model\ResourceModel\Log as CaptchaLog;
use Magento\Captcha\Model\ResourceModel\LogFactory;
use Magento\Framework\Event\ManagerInterface;
use Magento\Framework\ObjectManagerInterface;

/**
* Class ResetAttemptForFrontendAccountEditObserverTest
*
* Test for checking that the customer login attempts are removed after account details edit
*/
class ResetAttemptForFrontendAccountEditObserverTest extends \PHPUnit\Framework\TestCase
{
/**
* @var ObjectManagerInterface
*/
private $objectManager;

public function setUp()
{
$this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
}

/**
* @magentoDataFixture Magento/Captcha/_files/failed_logins_frontend.php
*/
public function testAccountEditRemovesFailedAttempts()
{
$customerEmail = 'mageuser@dummy.com';
$captchaLogFactory = $this->objectManager->get(LogFactory::class);
$eventManager = $this->objectManager->get(ManagerInterface::class);

$eventManager->dispatch(
'customer_account_edited',
['email' => $customerEmail]
);

/**
* @var CaptchaLog $captchaLog
*/
$captchaLog = $captchaLogFactory->create();

self::assertEquals(0, $captchaLog->countAttemptsByUserLogin($customerEmail));
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Captcha\Observer;

use Magento\Captcha\Model\ResourceModel\Log as CaptchaLog;
use Magento\Captcha\Model\ResourceModel\LogFactory;
use Magento\Customer\Model\Customer;
use Magento\Customer\Model\CustomerFactory;
use Magento\Framework\Event\ManagerInterface;
use Magento\Framework\ObjectManagerInterface;

/**
* Class ResetAttemptForFrontendObserverTest
*
* Test for checking that the customer login attempts are removed after a successful login
*/
class ResetAttemptForFrontendObserverTest extends \PHPUnit\Framework\TestCase
{
/**
* @var ObjectManagerInterface
*/
private $objectManager;

public function setUp()
{
$this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
}

/**
* @magentoDataFixture Magento/Captcha/_files/failed_logins_frontend.php
*/
public function testSuccesfulLoginRemovesFailedAttempts()
{
$customerEmail = 'mageuser@dummy.com';
$customerFactory = $this->objectManager->get(CustomerFactory::class);
$captchaLogFactory = $this->objectManager->get(LogFactory::class);
$eventManager = $this->objectManager->get(ManagerInterface::class);

/** @var Customer $customer */
$customer = $customerFactory->create();
$customer->setEmail($customerEmail);

$eventManager->dispatch(
'customer_customer_authenticated',
['model' => $customer, 'password' => 'some_password']
);

/**
* @var CaptchaLog $captchaLog
*/
$captchaLog = $captchaLogFactory->create();

self::assertEquals(0, $captchaLog->countAttemptsByUserLogin($customerEmail));
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

use Magento\TestFramework\Helper\Bootstrap;
use Magento\Captcha\Model\ResourceModel\LogFactory;
use Magento\Captcha\Model\ResourceModel\Log;

$objectManager = Bootstrap::getObjectManager();
$logFactory = $objectManager->get(LogFactory::class);

/** @var Log $captchaLog */
$captchaLog = $logFactory->create();
$captchaLog->logAttempt('mageuser@dummy.com');
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

use Magento\TestFramework\Helper\Bootstrap;
use Magento\Captcha\Model\ResourceModel\LogFactory;
use Magento\Captcha\Model\ResourceModel\Log;

$objectManager = Bootstrap::getObjectManager();
$logFactory = $objectManager->get(LogFactory::class);

/** @var Log $captchaLog */
$captchaLog = $logFactory->create();
$captchaLog->deleteUserAttempts('mageuser@dummy.com');