Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

Adobe Exam AD0-E722 Topic 1 Question 18 Discussion

Actual exam question for Adobe's AD0-E722 exam
Question #: 18
Topic #: 1
[All AD0-E722 Questions]

An Architect wants to create an Integration Test that does the following:

* Adds a product using a data fixture

* Executes $this->someLogic->execute($product) on the product

* Checks if the result is true.

$this->someLogic has the correct object assigned in the setup() method.

Product creation and the tested logic must be executed in the context of two different store views with IDs of 3 and 4, which have been created and are available for the test.

How should the Architect meet these requirements?

Show Suggested Answer Hide Answer
Suggested Answer: C

To create an integration test that executes different logic in different store views, the Architect needs to do the following steps:

Create one test class that extends \Magento\TestFramework\TestCase\AbstractController or \Magento\TestFramework\TestCase\AbstractBackendController, depending on the type of controller being tested1.

Create one test method that uses the @magentoDataFixture annotation to specify the data fixture file that creates the product2.

Use the \Magento\TestFramework\Store\ExecuteInStoreContext class to execute the fixture and the tested logic in different store views. This class has a method called executeInStoreContext, which takes two parameters: the store ID and a callable function.The callable function will be executed in the context of the given store ID, and then the original store ID will be restored3. For example:

PHPAI-generated code. Review and use carefully.More info on FAQ.

public function testSomeLogic()

{

// Get the product from the fixture

$product = $this->getProduct();

// Get the ExecuteInStoreContext instance from the object manager

$executeInStoreContext = $this->_objectManager->get(\Magento\TestFramework\Store\ExecuteInStoreContext::class);

// Execute the fixture in store view 3

$executeInStoreContext->executeInStoreContext(3, function () use ($product) {

// Do some operations on the product in store view 3

});

// Execute the tested logic in store view 4

$result = $executeInStoreContext->executeInStoreContext(4, function () use ($product) {

// Call the tested logic on the product in store view 4

return $this->someLogic->execute($product);

});

// Assert that the result is true

$this->assertTrue($result);

}


Integration tests | Magento 2 Developer Documentation

Data fixtures | Magento 2 Developer Documentation

Magento\TestFramework\Store\ExecuteInStoreContext | Magento 2 Developer Documentation

Contribute your Thoughts:

Jade
8 days ago
Woohoo, store views! Time to get my integration test groove on. Option B is the way to go, folks. Let's keep it simple and get this done.
upvoted 0 times
...
Jordan
10 days ago
I'm with Hui on this one. Option B is the simplest and most elegant solution to the problem.
upvoted 0 times
...
Brinda
13 days ago
Option A seems a bit overkill to me. Creating two separate test classes just for the two store views seems like unnecessary duplication. I'd go with B as well.
upvoted 0 times
...
Hui
21 days ago
Option C looks interesting, but using the ExecuteinstoreContext class directly in the fixture and test might make the code a bit more complex. I'd lean towards B.
upvoted 0 times
...
Alyce
29 days ago
I think option B is the way to go. It's clear and straightforward to handle the two different store views.
upvoted 0 times
Lyla
7 days ago
User 3: Option B seems like the most efficient way to meet the requirements for the Integration Test.
upvoted 0 times
...
Tayna
13 days ago
User 2: I agree, using emagentostorecontext 3 and amagentostorecontext 4 in separate test methods makes it easier to manage.
upvoted 0 times
...
Catina
26 days ago
User 1: I think option B is the way to go. It's clear and straightforward to handle the two different store views.
upvoted 0 times
...
...
Mitsue
2 months ago
I agree with Cristal, option A seems like the best approach for meeting the requirements.
upvoted 0 times
...
Cristal
2 months ago
I think the Architect should choose option A.
upvoted 0 times
...

Save Cancel