-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GraphQL-176: Show only active CMS Blocks
- Loading branch information
Valeriy Nayda
committed
Nov 22, 2018
1 parent
922d398
commit 6d984eb
Showing
5 changed files
with
192 additions
and
45 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
41 changes: 41 additions & 0 deletions
41
...onal/framework/Magento/TestFramework/TestCase/GraphQl/ResponseContainsErrorsException.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,41 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\TestFramework\TestCase\GraphQl; | ||
|
||
/** | ||
* Response contains errors exception | ||
*/ | ||
class ResponseContainsErrorsException extends \Exception | ||
{ | ||
/** | ||
* @var array | ||
*/ | ||
private $responseData; | ||
|
||
/** | ||
* @param string $message | ||
* @param array $responseData | ||
* @param \Exception|null $cause | ||
* @param int $code | ||
*/ | ||
public function __construct(string $message, array $responseData, \Exception $cause = null, int $code = 0) | ||
{ | ||
parent::__construct($message, $code, $cause); | ||
$this->responseData = $responseData; | ||
} | ||
|
||
/** | ||
* Get response data | ||
* | ||
* @return array | ||
*/ | ||
public function getResponseData(): array | ||
{ | ||
return $this->responseData; | ||
} | ||
} |
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
52 changes: 52 additions & 0 deletions
52
dev/tests/integration/testsuite/Magento/Cms/_files/blocks.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,52 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
use Magento\Cms\Api\BlockRepositoryInterface; | ||
use Magento\Cms\Api\Data\BlockInterface; | ||
use Magento\Cms\Api\Data\BlockInterfaceFactory; | ||
use Magento\Store\Model\StoreManagerInterface; | ||
use Magento\TestFramework\Helper\Bootstrap; | ||
|
||
/** @var BlockRepositoryInterface $blockRepository */ | ||
$blockRepository = Bootstrap::getObjectManager()->get(BlockRepositoryInterface::class); | ||
/** @var BlockInterfaceFactory $blockFactory */ | ||
$blockFactory = Bootstrap::getObjectManager()->get(BlockInterfaceFactory::class); | ||
$storeId = Bootstrap::getObjectManager()->get(StoreManagerInterface::class)->getStore()->getId(); | ||
|
||
/** @var BlockInterface $block */ | ||
$block = $blockFactory->create([ | ||
'data' => [ | ||
BlockInterface::IDENTIFIER => 'enabled_block', | ||
BlockInterface::TITLE => 'Enabled CMS Block Title', | ||
BlockInterface::CONTENT => ' | ||
<h1>Enabled Block</h1> | ||
<a href="{{store url=""}}">store url</a> | ||
<p>Config value: "{{config path="web/unsecure/base_url"}}".</p> | ||
<p>Custom variable: "{{customvar code="variable_code"}}".</p> | ||
', | ||
BlockInterface::IS_ACTIVE => 1, | ||
'store_id' => [$storeId], | ||
] | ||
]); | ||
$blockRepository->save($block); | ||
|
||
/** @var BlockInterface $block */ | ||
$block = $blockFactory->create([ | ||
'data' => [ | ||
BlockInterface::IDENTIFIER => 'disabled_block', | ||
BlockInterface::TITLE => 'Disabled CMS Block Title', | ||
BlockInterface::CONTENT => ' | ||
<h1>Disabled Block</h1> | ||
<a href="{{store url=""}}">store url</a> | ||
<p>Config value: "{{config path="web/unsecure/base_url"}}".</p> | ||
<p>Custom variable: "{{customvar code="variable_code"}}".</p> | ||
', | ||
BlockInterface::IS_ACTIVE => 0, | ||
'store_id' => [$storeId], | ||
] | ||
]); | ||
$blockRepository->save($block); |
23 changes: 23 additions & 0 deletions
23
dev/tests/integration/testsuite/Magento/Cms/_files/blocks_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,23 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
use Magento\Cms\Api\BlockRepositoryInterface; | ||
use Magento\Framework\Exception\NoSuchEntityException; | ||
use Magento\TestFramework\Helper\Bootstrap; | ||
|
||
/** @var BlockRepositoryInterface $blockRepository */ | ||
$blockRepository = Bootstrap::getObjectManager()->get(BlockRepositoryInterface::class); | ||
|
||
foreach (['enabled_block', 'disabled_block'] as $blockId) { | ||
try { | ||
$blockRepository->deleteById($blockId); | ||
} catch (NoSuchEntityException $e) { | ||
/** | ||
* Tests which are wrapped with MySQL transaction clear all data by transaction rollback. | ||
*/ | ||
} | ||
} |