5

我们有一个 Mule 应用程序,它有 6 个或 7 个流,每个流大约有 5 个组件。这是设置。我们将 JMS 请求发送到 ActiveMQ 队列。骡听着。根据消息的内容,我们将其转发到相应的流。

 <flow name="MyAPPAutomationFlow" doc:name="MyAPPAutomationFlow">
      <composite-source>
            <jms:inbound-endpoint queue="MyAPPOrderQ" connector-ref="Active_MQ_1" doc:name="AMQ1 Inbound Endpoint"/>
            <jms:inbound-endpoint queue="MyAPPOrderQ" connector-ref="Active_MQ_2" doc:name="AMQ2 Inbound Endpoint"/>
      </composite-source>
        <choice doc:name="Choice">
            <when expression="payload.getProcessOrder().getOrderType().toString().equals(&quot;ANC&quot;)" evaluator="groovy">
                <processor-chain>
                    <flow-ref name="ProcessOneFLow" doc:name="Go to ProcessOneFLow"/>
                </processor-chain>
            </when>
            <when....
            ...........


         </choice>
    </flow>


 <flow name="ProcessOneFLow" doc:name="ProcessOneFLow">
        <vm:inbound-endpoint exchange-pattern="one-way" path="ProcessOneFLow" responseTimeout="10000" mimeType="text/xml" doc:name="New Process Order"/>
        <component doc:name="Create A">
            <spring-object bean="createA"/>
        </component>
        <component doc:name="Create B">
            <spring-object bean="createB"/>
        </component>
        <component doc:name="Create C">
            <spring-object bean="createC"/>
        </component>
        <component doc:name="Create D">
            <spring-object bean="createD"/>
        </component>    
</flow>


 <spring:beans>

    <spring:import resource="classpath:spring/service.xml"/>
    <spring:bean id="createA" name="createA" class="my.app.components.CreateAService"/>
    <spring:bean id="createB" name="createB" class="my.app.components.CreateBService"/>
    <spring:bean id="createC"  name="createC" class="my.app.components.CreateCService"/>
    <spring:bean id="createD" name="createD" class="my.app.components.CreateDService"/>
            ......
            ......
 </spring:beans>

现在我不确定如何使用它们编写功能测试。

我浏览了 Mule 网站上的功能测试文档,但那里有非常简单的测试。

功能测试是否不应该使用 DAO 或服务层进行实际的后端更新,或者它只是模拟服务层的单元测试的扩展?

我的想法是——它可以接收一个请求并使用内存中的 Mule 服务器将请求-响应从一个组件传递到另一个组件。另请注意,我们的任何流都没有出站端点,因为它们主要是 Fire 和 Forget 类型的流,并且状态更新由组件执行的数据库更新管理。

另外,为什么我需要为测试创建单独的 mule config xml 文件?如果我没有测试将实际部署在 Live 上的流 xml,那么测试的意义何在?如果我只是为了测试而创建单独的 xml 配置,这在某种程度上违背了我的目的...... 一些专家能否详细说明并指出与我们正在使用的测试类似的示例测试。

PS:Mule 内部的组件依赖于 Web 服务、数据库等外部系统。对于功能测试,我们是否需要运行这些组件,或者我们是否应该模拟这些服务/数据库访问?

4

2 回答 2

3

Mule 应用程序的功能测试与测试依赖于外部资源(如数据库或 JMS 代理)的任何应用程序没有什么不同,因此您需要使用与标准应用程序相同的技术。

通常这意味着使用内存实现将资源存根,例如用于数据库的 HSQLDB 或用于 JMS 的瞬态 ActiveMQ 内存代理。对于 Mule 应用程序,这意味着将您的配置模块化,以便在单独的文件中定义“实时”传输,在测试时将其替换为包含内存中变体的文件。

要验证 Mule 与资源的交互是否正确,您可以使用其 Java 客户端(例如 JDBC 或 JMS)直接读取资源,如果您想确保纯粹的非 Mule 客户端在读取 Mule 时没有问题,这是很好的已调度,或使用 MuleClient 从这些资源中读取或创建使用这些资源并将消息传递给<test:component>.

仅供参考,这些不同的技术在Mule in Action,第二版的第 12 章中进行了解释和演示。

于 2012-11-29T16:52:49.070 回答
0

https://blog.codecentric.de/en/2015/01/mule-esb-testing-part-13-unit-functional-testing/

https://developer.mulesoft.com/docs/display/current/Functional+Testing 请参考此链接 如您所见,这是一个扩展 FunctionalMunitSuite 类的普通 JUnit 测试。在测试中我们需要做两件事:

准备 MuleEvent 对象作为我们流程的输入。我们可以通过使用提供的 testEvent(Object payload) 方法来做到这一点。执行 runFlow(String flowName, MuleEvent event) 方法,指定要测试的流名称和我们在第一步中刚刚创建的事件。

于 2015-06-03T13:28:36.057 回答