forked from magento/magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔃 [EngCom] Public Pull Requests - 2.1-develop
Accepted Public Pull Requests: - magento#16403: [Backport 2.1] Captcha: Added integration tests for checking customer login attempts cleanup (by @rogyar) - magento#16352: [Backport] Invoice grid shows wrong shipping & handling for partial items invoice. It shows order's shipping & handling instead if invoiced shipping& handling charge (by @gelanivishal) - magento#16280: MAGETWO-61209: Backport - Fixed issue magento#7379 with mage/calendar when setting `numberOfM� (by @vasilii-b) Fixed GitHub Issues: - magento#7379: Calendar widget (jQuery UI DatePicker) with numberOfMonths = 2 or more (reported by @atihomirov) has been fixed in magento#16280 by @vasilii-b in 2.1-develop branch Related commits: 1. ce38bc8
- Loading branch information
Showing
6 changed files
with
149 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
...ion/testsuite/Magento/Captcha/Observer/ResetAttemptForFrontendAccountEditObserverTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
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)); | ||
} | ||
} |
58 changes: 58 additions & 0 deletions
58
...ts/integration/testsuite/Magento/Captcha/Observer/ResetAttemptForFrontendObserverTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
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)); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
dev/tests/integration/testsuite/Magento/Captcha/_files/failed_logins_frontend.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
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'); |
16 changes: 16 additions & 0 deletions
16
dev/tests/integration/testsuite/Magento/Captcha/_files/failed_logins_frontend_rollback.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
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'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters