Skip to content

Latest commit

 

History

History
142 lines (101 loc) · 5.41 KB

File metadata and controls

142 lines (101 loc) · 5.41 KB

Test

Test cases in the Magento Functional Testing Framework (MFTF) are defined in XML as <tests>. <tests> is a Codeception test container that contains individual test <test> with its metadata (<annotations>), before (<before>) and after (<after>) section.

MFTF <test> is considered a sequence of actions with associated parameters. Any failed assertion within a test constitutes a failed test.

`` and `` hooks are not global within ``. They only apply to the `` in which they are declared. The steps in `` are run in both successful **and** failed test runs.

The following diagram shows the structure of an MFTF test case:

Structure of MFTF test case

Format

The format of a test XML file is:

<?xml version="1.0" encoding="UTF-8"?>

<tests xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/testSchema.xsd">
    <test name="" insertBefore="" insertAfter="">
        <annotations>
            <!-- TEST ANNOTATIONS -->
        </annotations>
        <before>
            <!-- ACTIONS AND ACTION GROUPS PERFORMED BEFORE THE TEST -->
        </before>
        <after>
            <!-- ACTIONS AND ACTION GROUPS PERFORMED AFTER THE TEST -->
        </after>
        <!-- TEST ACTIONS, ACTION GROUPS, AND ASSERTIONS-->
    </test>
</tests>

Principles

The following conventions apply to MFTF tests:

  • One <test> tag is allowed per test XML file.
  • All names within the framework are in the PascalCase format and must be alphanumeric.
  • Each action and action group call should have its own identifier <stepKey>.
  • A test may have any number of assertions at any point within the <test>.
  • If <test> is included in <suite>, it cannot be generated in isolation from <before> and <after> section of the suite (see suites for details).

Elements reference

There are several XML elements that are used within <test> in the MFTF.

tests {#tests-tag}

<tests> is a container for test and must contain exactly one <test>.

test {#test-tag}

<test> is a set of steps, including actions, assertions and Action Group calls. It is a sequence of test steps that define test flow within a test method.

Attribute Type Use Description
name string optional The test identifier.
remove boolean optional Set true to remove the test when merging.
insertBefore string optional This option is used for merging. It enables you to add all test actions contained in the original test into a test with the same name BEFORE the test step with stepKey that you assigned in insertBefore.
insertAfter string optional Set stepKey of the test step after which you want to insert the test when merging.
deprecated string optional Used to warn about the future deprecation of the test. String will appear in Allure reports and console output at runtime.
extends string optional A name of the parent test to extend.

<test> may also contain <annotations>, <before>, <after>, any action, or <actionGroup>.

annotations {#annotations-tag}

Annotations are supported by both Codeception and Allure.

Codeception annotations typically provide metadata and are able to influence test selection. Allure annotations provide metadata for reporting.

before {#before-tag}

<before> wraps the steps that are preconditions for the <test>. For example: Change configuration, create Customer Account, Create Category and Product.

<before> may contain these child elements:

after {#after-tag}

<after> wraps the steps to perform after the <test>. The steps are run in both successful and failed test runs. The goal of this section is to perform cleanup (revert the environment to the pre-test state).

<after> may contain:

actionGroup {#actiongroup-tag}

<actionGroup> calls a corresponding action group.

Attribute Type Use Description
ref string required References the required action group by its name.
stepKey string required Identifies the element within <test>.
before string optional <stepKey> of an action or action group that must be executed next while merging.
after string optional <stepKey> of an action or action group that must be executed one step before the current one while merging.

<actionGroup> may contain <argument>.

argument {#argument-tag}

<argument> sets an argument that is used in the parent <actionGroup>.

Attribute Type Use
name string optional
value string optional

See Action groups for more information.