<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:munit="http://www.mulesoft.org/schema/mule/munit" xmlns:munit-tools="http://www.mulesoft.org/schema/mule/munit-tools"
xmlns="http://www.mulesoft.org/schema/mule/core"
xsi:schemaLocation="
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/munit http://www.mulesoft.org/schema/mule/munit/current/mule-munit.xsd
http://www.mulesoft.org/schema/mule/munit-tools http://www.mulesoft.org/schema/mule/munit-tools/current/mule-munit-tools.xsd">
<munit:config name="An MUnit Suite" />
<!-- Tests -->
</mule>
MUnit Test Structure Fundamentals
MUnit Test Suite
The base file in MUnit is the test suite file, an XML file located in the src/test/munit
directory of your Mule application’s project. You can have as many MUnit test suite files as you need. Each MUnit test suite file is a collection of MUnit tests, and runs independently from other MUnit test suites.
An MUnit test suite can contain any combination of the following components:
-
Before/After Suites
-
Before/After Tests
-
MUnit tests
Each MUnit test suite is, behind the scenes, no different than a Mule configuration file. You can use several of the Mule top level elements such as flow, sub-flow, and scripts.
MUnit Configuration
The MUnit configuration element (munit:config
) identifies a Mule configuration file as an MUnit suite file:
MUnit Test
An MUnit test is the basic processor of an MUnit test suite. It represents each test scenario you want to try.
The MUnit test is divided in three scopes. All of them are optional:
Scope | Description |
---|---|
Behavior |
The behavior scope is meant to set all the preconditions before executing the test logic. |
Execution |
The execution scope is meant to have the testing logic which will wait for all processes to finish before executing the next scope. |
Validation |
The validation scope is meant to have all the validations regarding the result of the execution scope. |
<munit:test name="exampleTest" description="Test to verify scenario 1">>
<munit:behavior>
<munit-tools:mock-when.../>
</munit:behavior>
<munit:execution>
<flow-ref name="exampleFlow"/>
</munit:execution>
<munit:validation>
<munit-tools:assert-that ...>
</munit:validation>
</munit:test>
MUnit Test Reference
Name | Description |
---|---|
|
Defines the name of the test. The name must be unique inside the test suite. |
|
Describes the scenario being tested. |
|
Defines if the test should be ignored. If not present, the test is not ignored. |
|
Comma separated list of tags to assign to the test. |
|
Defines the error Type that should be received after the execution of this test. |
|
Defines the exception that should be received after the execution of this test. |
MUnit Test Description Attribute
In MUnit, you must write a description for your test. Ideally, you should write a useful, representative description of the scenario you are testing. This description displays in the test console before running the test, and also in the reports. The more representative the description, the easier to read and troubleshoot any failures.
Ignoring a Test
There may be scenarios where you need to shut down a test. Whether this be because the test is failing or because it has inconvenient side effects. MUnit allows you to ignore a specific test so that you don’t have to manually comment out the code.
You can ignore any of your tests by adding the ignore boolean to the test definition:
<munit:test name="my-flow-Test"
ignore="true"
description="Test to verify scenario 1">
</munit:test>
The default value for the ignore attribute is false
.
In Anypoint Studio, you can check the Ignore Test option.
Test Tag Attribute
MUnit allows you to tag your tests, so you can choose to run tests under a specific tag. For example:
<munit:test
name="exampleTest"
description="A test that works as an example"
ignore="true"
tags="integration,http" >
…
</munit:test>
MUnit Test Expected Error and Exception Attributes
Assume that you want to validate that the flow or sub-flow you are testing fails and throws a specific error. MUnit allows you to add the attributes expectedErrorType
and expectException
as follows:
<munit:test name="MUnit-test-suite"
description="A test that works as an example"
expectedErrorType="RETRY_EXHAUSTED"
expectedException="java.lang.RuntimeException"
expectedErrorDescription="retries exhausted">
...
</munit:test>
-
The
expectedErrorType
attribute expects an error ID defined inside the application being tested.
This attribute allows you to validate that a defined error type in your application is thrown. If you define anerrorType
that does not exists in your application, the test does not run.<munit:test name="MUnit-test-suite" description="Test Error Type" expectedErrorType="FTP:ILLEGAL_PATH"> ... </munit:test>
This Error Type test expects that an FTP operation will throw an
FTP:ILLEGAL_PATH
error.
If none of your flows are using an FTP connector, then the error type is not defined within your application and the test will not run.ErrorTypes that belong to the Mule Runtime do not need to be typified. For example,
MULE:RETRY_EXHAUSTED
can be defined asRETRY_EXHAUSTED
. -
The attribute
expectException
expects a literal exception class name.
You must provide the canonical class name of the exception that you expect. MUnit then validates that the underlying cause for the exception thrown is of the exact same type of the class name you are expecting.<munit:test name="testExceptions" description="Test Exceptions" expectedException="java.lang.RuntimeException"> ... </munit:test>
If you define that your test expects an exception and none is thrown, the test fails immediately.
Before and After Scopes
As with other testing frameworks, MUnit provides a set of scopes that allow you to add processing or actions to run before and/or after the entire MUnit test or MUnit test suite execute:
-
Before and After Suite Scopes.
-
Before and After Test Scopes.
The ID field for each component must be unique across all your application. The before and after scopes cannot share the same name between them, nor have the same name as any flow in your application.
See Before/After scopes reference for more information.