GraphQL functional testing
Magento provides API functional tests that can verify extension points in GraphQL. These tests serve as an example for exposing new queries via GraphQL.
Creating a new GraphQL functional test
All GraphQL functional tests should be located in the dev/tests/api-functional/testsuite/Magento/GraphQl/ directory and inherit from the generic test case Magento\TestFramework\TestCase\GraphQlAbstract. It defines the graphQlQuery() and graphQlMutation() methods, which should be used to perform Web API calls from tests.
The following test verifies that the schema returns the correct attribute type, given the attribute_code and corresponding entity_type.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
namespace Magento\GraphQl\Catalog;
use Magento\TestFramework\TestCase\GraphQlAbstract;
class ProductAttributeTypeTest extends GraphQlAbstract
{
public function testAttributeTypeResolver()
{
$query
= <<<QUERY
{
customAttributeMetadata(attributes:
[
{
attribute_code:"description",
entity_type:"catalog_product"
},
{
attribute_code:"status",
entity_type:"catalog_product"
},
{
attribute_code:"special_price",
entity_type:"catalog_product"
},
{
attribute_code:"disable_auto_group_change",
entity_type:"customer"
}
{
attribute_code:"special_price",
entity_type:"Magento\\\\Catalog\\\\Api\\\\Data\\\\ProductInterface"
}
]
)
{
items
{
attribute_code
attribute_type
entity_type
input_type
}
}
}
QUERY;
$response = $this->graphQlQuery($query);
$expectedAttributeCodes = [
'description',
'status',
'special_price',
'disable_auto_group_change',
'special_price'
];
$entityType = [
'catalog_product',
'catalog_product',
'catalog_product',
'customer',
\Magento\Catalog\Api\Data\ProductInterface::class
];
$attributeTypes = ['String', 'Int', 'Float','Boolean', 'Float'];
$inputTypes = ['textarea', 'select', 'price', 'boolean', 'price'];
$this->assertAttributeType($attributeTypes, $expectedAttributeCodes, $entityType, $inputTypes, $response);
}
Using the default GraphQlQueryTest
The \Magento\GraphQl\TestModule\GraphQlQueryTest.php test case uses two test modules to determine whether the mechanisms for GraphQL extensibility work as expected. It illustrates best practices for extending an existing GraphQL endpoint.
TestModuleGraphQlQuery- This bare-bones module defines atestItemendpoint with the queryable attributesitem_idandname. It’s located at<installdir>/dev/tests/api-functional/_files/TestModuleGraphQlQuery.TestModuleGraphQlQueryExtension- This module extendsTestModuleGraphQlQuery, adding theinteger_listextension attribute. It’s located at<installdir>/dev/tests/api-functional/_files/TestModuleGraphQlQueryExtension.
Creating fixtures
Fixtures, which are part of the testing framework, prepare preconditions in the system for further testing. For example, when you test the ability to add a product to the shopping cart, the precondition is that a product must be available for testing.
A fixture consists of two files:
- The fixture file, which defines the test
- A rollback file, which reverts the system to the state before the test was run
Each fixture should have a corresponding rollback file.
Magento provides fixtures in the dev/tests/integration/testsuite/Magento/<ModuleName>/_files directory. Use these fixtures whenever possible. When you create your own fixture, also create a proper rollback.
Fixture files
The following fixture creates a simple product with predefined attributes.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
use Magento\Catalog\Model\ProductFactory;
use Magento\TestFramework\Helper\Bootstrap;
use Magento\Catalog\Model\ResourceModel\Product as ProductResource;
$productFactory = Bootstrap::getObjectManager()->get(ProductFactory::class);
$product = $productFactory->create();
$product->setTypeId(\Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL)
->setId(21)
->setAttributeSetId(4)
->setWebsiteIds([1])
->setName('Virtual Product')
->setSku('virtual-product')
->setPrice(10)
->setTaxClassId(0)
->setVisibility(\Magento\Catalog\Model\Product\Visibility::VISIBILITY_BOTH)
->setStatus(\Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED)
->setStockData(
[
'qty' => 100,
'is_in_stock' => 1,
'manage_stock' => 1,
]
);
/** @var ProductResource $productResource */
$productResource = Bootstrap::getObjectManager()->create(ProductResource::class);
$productResource->save($product);
To use this fixture in a test, add it to the test’s annotation in the following manner:
1
2
3
4
5
6
7
/**
* @magentoApiDataFixture Magento/Catalog/_files/product_virtual.php
*/
public function testAddVirtualProductToShoppingCart()
{
// Test body
}
You can also invoke multiple fixtures:
1
2
3
4
5
6
7
8
/**
* @magentoApiDataFixture Magento/Checkout/_files/quote_with_simple_product_saved.php
* @magentoApiDataFixture Magento/Customer/_files/customer.php
*/
public function testSetNewBillingAddressByRegisteredCustomer()
{
// Test body
}
The specified fixtures will now execute on every test run.
Rollback files
Every fixture should have a rollback file. A rollback is a set of operations that remove changes introduced by the fixture from the system once the test is completed.
The rollback filename should correspond to the original fixture filename postfixed by _rollback keyword. For example, if the fixture file name is virtual_product.php, name the rollback file virtual_product_rollback.php.
The following fixture rollback removes the newly-created product from the database.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
use Magento\Catalog\Api\ProductRepositoryInterface;
use Magento\Framework\Exception\NoSuchEntityException;
use Magento\Framework\Exception\StateException;
use Magento\TestFramework\Helper\Bootstrap;
$registry = Bootstrap::getObjectManager()->get(\Magento\Framework\Registry::class);
$registry->unregister('isSecureArea');
$registry->register('isSecureArea', true);
$productRepository = Bootstrap::getObjectManager()
->create(ProductRepositoryInterface::class);
try {
$product = $productRepository->get('virtual-product', false, null, true);
$productRepository->delete($product);
} catch (NoSuchEntityException $exception) {
//Product already removed
} catch (StateException $exception) {
}
$registry->unregister('isSecureArea');
$registry->register('isSecureArea', false);
Fixture configs
Use the @magentoConfigFixture annotation to set a custom config value. It supports a store scope only.
Syntax
1
2
3
/**
* @magentoConfigFixture <store_code>_store <config_key> <config_value>
*/
where
<store_code>- Store code. See thestore.codedatabase field value.<config_key>- Config key. Seecore_config_data.path<config_value>- Config value. Seecore_config_data.value
@magentoConfigFixture does not require a roll-back.
Example usage
The following example sets a store-scoped value 1 for the config key checkout/options/enable_agreements for the default store in the GetActiveAgreement() test:
1
2
3
4
5
6
7
/**
* @magentoConfigFixture default_store checkout/options/enable_agreements 1
*/
public function testGetActiveAgreement()
{
...
}
@magentoConfigFixture performs the following action as a background process before test execution:
1
2
3
INSERT INTO `core_config_data` (scope`, `scope_id`, `path`, `value`)
VALUES
('stores', 1, 'checkout/options/enable_agreements', '1');
The fixture automatically removes the checkout/options/enable_agreements config key from the database after the test has been completed.
Defining expected exceptions
Your functional tests should include events that cause exceptions. Since your tests expect an exception to occur, set up your tests so that they elicit the proper responses. You can define expected exception messages either in:
- The body of the test
- The test function annotation
We recommend that you declare expected exceptions in the test method body, as declaring expected exceptions with annotations has been deprecated in PHPUnit 8. Existing tests that use annotations will have to be updated when Magento requires that version of PHPUnit or higher.
Exception messages in the body of a test
The following examples show two ways you can use the expectExceptionMessage function to define an expected exception message.
1
2
3
4
5
6
7
8
9
public function testMyExceptionTest()
{
...
self::expectExceptionMessage("Expected exception message goes here...");
...
}
or
1
2
3
4
5
6
7
8
public function testMyExceptionTest()
{
...
$this->expectExceptionMessage("Expected exception message goes here...");
...
}
Define the exception message before invoking logic that generates the exception.
As an example, consider the case where Customer A tries to retrieve information about Customer B’s cart. In this situation, Customer A gets this error:
1
The current user cannot perform operations on cart "XXXXX"
XXXXX is the unique ID of Customer B’s cart.
The following sample shows how to cover this scenario using an expectExceptionMessage function:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
* @magentoApiDataFixture Magento/Checkout/_files/quote_with_items_saved.php
*/
public function testGetCartFromAnotherCustomer()
{
$reservedOrderId = 'test_order_item_with_items';
$this->quoteResource->load(
$this->quote,
$reservedOrderId,
'reserved_order_id'
);
$maskedQuoteId = $this->quoteIdToMaskedId->execute((int)$this->quote->getId());
$query = $this->prepareGetCartQuery($maskedQuoteId);
self::expectExceptionMessage("The current user cannot perform operations on cart \"$maskedQuoteId\"");
$this->graphQlQuery($query);
}
Exception messages in the annotation of a test function
You can also use a predefined directive such as @expectedExceptionMessage as an alternative way to call the expectExceptionMessage method:
1
2
3
4
/**
* @expectedException \Exception
* @expectedExceptionMessage Expected exception message goes here...
*/
In the following query, a customer provides an incorrect cart ID while trying to retrieve information about his own cart.
Query:
1
2
3
4
5
6
7
8
9
{
cart(cart_id: "YYYYY") {
items {
__typename
id
qty
}
}
}
Result:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"errors": [
{
"message": "Could not find a cart with ID \"YYYYY\"",
"category": "graphql-no-such-entity",
"locations": [
{
"line": 2,
"column": 3
}
],
"path": [
"cart"
]
}
],
"data": {
"cart": null
}
}
The @expectExceptionMessage annotation provides the text for the exception in this test.
1
2
3
4
5
6
7
8
9
10
11
/**
* @expectedException \Exception
* @expectedExceptionMessage Could not find a cart with ID "non_existent_masked_id"
*/
public function testGetNonExistentCart()
{
$maskedQuoteId = 'non_existent_masked_id';
$query = $this->prepareGetCartQuery($maskedQuoteId);
$this->graphQlQuery($query);
}
Use the following functions to cover expected exceptions:
expectExceptionexpectExceptionCodeexpectExceptionMessageexpectExceptionMessageRegExpexpectExceptionObject
Run functional tests
Configure your instance
-
Change directories to
dev/tests/api-functional/and copy thephpunit_graphql.xml.distfile tophpunit_graphql.xml.1
cp phpunit_graphql.xml.dist phpunit_graphql.xml -
Edit
phpunit_graphql.xmlto set values for the TESTS_BASE_URL, TESTS_WEBSERVICE_USER, TESTS_WEBSERVICE_APIKEY options:1 2 3 4 5 6 7 8
... <!-- Webserver URL --> <const name="TESTS_BASE_URL" value="http://magento.url"/> <!-- Webserver API user --> <const name="TESTS_WEBSERVICE_USER" value="admin"/> <!-- Webserver API key --> <const name="TESTS_WEBSERVICE_APIKEY" value="123123q"/> ...
Run all tests in a API functional test suite
Syntax:
1
vendor/bin/phpunit -c dev/tests/api-functional/phpunit_graphql.xml dev/tests/api-functional/testsuite/<Vendor>/<Module>/<TestFile>.php
Example:
To run all tests from dev/tests/api-functional/testsuite/Magento/GraphQl/Customer/GenerateCustomerTokenTest.php, run the following command:
1
vendor/bin/phpunit -c dev/tests/api-functional/phpunit_graphql.xml dev/tests/api-functional/testsuite/Magento/GraphQl/Customer/GenerateCustomerTokenTest.php
Run a single test in a API functional test suite
Syntax:
1
vendor/bin/phpunit -c dev/tests/api-functional/phpunit_graphql.xml --filter <testFunctionName> dev/tests/api-functional/testsuite/<Vendor>/<Module>/<TestFile>.php
Example:
To run testGenerateCustomerValidToken test from dev/tests/api-functional/testsuite/Magento/GraphQl/Customer/GenerateCustomerTokenTest.php, run the following command:
1
vendor/bin/phpunit -c dev/tests/api-functional/phpunit_graphql.xml --filter testGenerateCustomerValidToken dev/tests/api-functional/testsuite/Magento/GraphQl/Customer/GenerateCustomerTokenTest.php
Run a selected group of tests in an API functional test suite
Use the @group directive in the test annotation to add the ability to run a group tests.
Syntax:
1
vendor/bin/phpunit -c dev/tests/api-functional/phpunit_graphql.xml --group <TEST_GROUP_ALIAS> dev/tests/api-functional/testsuite/<Vendor>/<Module>/<TestFile>.php
Example:
The testGetCartTotalsWithNoAddressSet test is marked with @group recent:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
namespace Magento\GraphQl;
class MyTest extends \Magento\TestFramework\TestCase\GraphQlAbstract
/**
* @group my_test_group
*/
public function testFunction1()
{
...
}
/**
* @group my_test_group
*/
public function testFunction2()
{
...
}
/**
*
*/
public function testFunction3()
{
...
}
}
To run the testFunction1 and testFunction2 tests, which are part of the my_test_group group, use the following command:
1
vendor/bin/phpunit -c dev/tests/api-functional/phpunit_graphql.xml --group my_test_group dev/tests/api-functional/testsuite/Magento/GraphQl/MyTest.php