-
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.
Browse files
Browse the repository at this point in the history
- Merge Pull Request magento/graphql-ce#221 from ronak2ram/graphql-ce:Fixed-218 - Merged commits: 1. bf0030f 2. 4eac0fc 3. 60f91ee 4. 5c6f20f 5. 922d398 6. 6d984eb 7. d3a22e9 8. 772d4da
- Loading branch information
Showing
7 changed files
with
209 additions
and
52 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
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); |
Oops, something went wrong.