<set-payload
value="#[MunitTools::getResourceAsStream('util/files/example.txt')]"/>
Resource Matchers
getResourceAsStream(String)
Returns the resource from the path String as a stream.
Example
getResourceAsReusableStream(String)
Returns the resource from the path String as a reusable stream.
Example
<set-payload
value="#[MunitTools::getResourceAsReusableStream('util/files/example.txt')]"/>
getResourceAsString(path:String,encoding:String)
Returns the resource from the path String as a String, where the second parameter (encoding) is optional.
Example
<set-payload
value="#[MunitTools::getResourceAsString('util/files/example.txt')]"/>
You can also specify the encoding:
Example
<set-payload
value="#[MunitTools::getResourceAsString('util/files/exampleISO.txt', 'ISO-8859-1')]"/>
getResourceAsByteArray(String)
Returns the resource from the path String as a byte array.
Example
<set-payload
value="#[MunitTools::getResourceAsByteArray('util/files/example.txt')]"/>
queueSize(String)
Returns the size of the queue specified inside #[MunitTools::queueSize()]
.
For example, to assert the size of a queue named QUEUE_SIZE
:
Example
<munit:execution>
<munit-tools:queue queueName="QUEUE_SIZE">
<munit-tools:value>#['EXAMPLE']</munit-tools:value>
</munit-tools:queue>
</munit:execution>
<munit:validation>
<munit-tools:assert-that expression="#[MunitTools::queueSize('QUEUE_SIZE')]" is="#[MunitTools::equalTo(1)]"/>
</munit:validation>
createMessage(payload: Any, mimeType: String|Null , attributes: Any, attributeMimeType: String|Null)
Creates a Mule message with the specified attributes.
Example
<munit:execution>
<set-payload value="#[MunitTools::createMessage( 'ITEM-1', 'text/plain', { property : 'ATTRIBUTE-1'}, null )]"/>
</munit:execution>