-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENGCOM-4486: 419 test coverage get available payment methods customer #…
…451 - Merge Pull Request magento/graphql-ce#451 from magento/graphql-ce:419-test-coverage-getAvailablePaymentMethods-customer - Merged commits: 1. 44e24e3 2. 8786fbf 3. 1356caa 4. b8006ee 5. 31166c9
- Loading branch information
Showing
6 changed files
with
152 additions
and
13 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
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
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
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
34 changes: 34 additions & 0 deletions
34
...tests/integration/testsuite/Magento/Payment/_files/disable_all_active_payment_methods.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,34 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
use Magento\Config\Model\Config; | ||
use Magento\Framework\App\Config\ScopeConfigInterface; | ||
use Magento\Store\Model\Store; | ||
use Magento\TestFramework\Helper\Bootstrap; | ||
|
||
$objectManager = Bootstrap::getObjectManager(); | ||
$paymentMethodList = $objectManager->get(\Magento\Payment\Api\PaymentMethodListInterface::class); | ||
$rollbackConfigKey = 'test/payment/disabled_payment_methods'; | ||
$configData = []; | ||
$disabledPaymentMethods = []; | ||
|
||
// Get all active Payment Methods | ||
foreach ($paymentMethodList->getActiveList(Store::DEFAULT_STORE_ID) as $paymentMethod) { | ||
$configData['payment/' . $paymentMethod->getCode() . '/active'] = 0; | ||
$disabledPaymentMethods[] = $paymentMethod->getCode(); | ||
} | ||
// Remember all manually disabled Payment Methods for rollback | ||
$configData[$rollbackConfigKey] = implode(',', $disabledPaymentMethods); | ||
|
||
/** @var Config $defConfig */ | ||
$defConfig = $objectManager->create(Config::class); | ||
$defConfig->setScope(ScopeConfigInterface::SCOPE_TYPE_DEFAULT); | ||
|
||
foreach ($configData as $key => $value) { | ||
$defConfig->setDataByPath($key, $value); | ||
$defConfig->save(); | ||
} |
33 changes: 33 additions & 0 deletions
33
...egration/testsuite/Magento/Payment/_files/disable_all_active_payment_methods_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,33 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
use Magento\Framework\App\Config\ScopeConfigInterface; | ||
use Magento\Framework\App\Config\Storage\WriterInterface; | ||
use Magento\TestFramework\Helper\Bootstrap; | ||
|
||
$objectManager = Bootstrap::getObjectManager(); | ||
$rollbackConfigKey = 'test/payment/disabled_payment_methods'; | ||
|
||
$configWriter = $objectManager->create(WriterInterface::class); | ||
$rollbackConfigValue = $objectManager->get(\Magento\Store\Model\StoreManagerInterface::class) | ||
->getStore(\Magento\Store\Model\Store::DEFAULT_STORE_ID) | ||
->getConfig($rollbackConfigKey); | ||
|
||
$disabledPaymentMethods = []; | ||
if (!empty($rollbackConfigValue)) { | ||
$disabledPaymentMethods = explode(',', $rollbackConfigValue); | ||
} | ||
|
||
if (count($disabledPaymentMethods)) { | ||
foreach ($disabledPaymentMethods as $keyToRemove) { | ||
$configWriter->delete(sprintf('payment/%s/active', $keyToRemove)); | ||
} | ||
} | ||
$configWriter->delete($rollbackConfigKey); | ||
|
||
$scopeConfig = $objectManager->get(ScopeConfigInterface::class); | ||
$scopeConfig->clean(); |