我正在研究Citrus Framework,以便在我的项目的测试自动化中使用它。我想运行两个Web服务,让它命名:
http://localhost:port/service1
http://localhosr:port/sercice2
然后调用我的SUT(被测系统)。 SUT将同步调用上述两个模拟服务(service1和service2)并返回答案。
我设法做到了,但是在不同的端口上:
<citrus-ws:server id="helloMockService1"
port="${server.port1}"
servlet-mapping-path="/service1"
auto-start="true"
timeout="10000"
endpoint-adapter="genericResponseAdapter1" />
<citrus-ws:server id="helloMockService2"
port="${server.port2}"
servlet-mapping-path="/service2"
auto-start="true"
timeout="10000" />
我需要在同一端口上。我也尝试编写我的自定义DispatchingEndpointAdapter并以某种方式从请求Message中提取上下文路径,但未成功。
<citrus:dispatching-endpoint-adapter id="dispatchingEndpointAdapter"
mapping-key-extractor="mappingKeyExtractor"
mapping-strategy="mappingStrategy"/>
<bean id="mappingStrategy"
class="com.consol.citrus.endpoint.adapter.mapping.SimpleMappingStrategy">
<property name="adapterMappings">
<map>
<entry key="service1" value-ref="genericResponseAdapter1"/>
<entry key="service2" value-ref="genericResponseAdapter2"/>
</map>
</property>
</bean>
<bean id="mappingKeyExtractor"
class="com.mycompany.citrus.CustomExtractor">
</bean>
我在com.citrus.message.Message类型的请求参数中找不到URL。
package com.mycompany.citrus;
import com.consol.citrus.endpoint.adapter.mapping.MappingKeyExtractor;
import com.consol.citrus.message.Message;
public class CustomExtractor implements MappingKeyExtractor{
@Override
public String extractMappingKey(Message request) {
// ther is no URL information in Message object!!!!!!!!!!!!
return "service1";
}
}
如何在Citrus Framework中的同一端口上运行两个模拟服务?我想通过URL而不是有效载荷本身来区分它们(通过peyload,使用上述自定义MappingKeyExtractor会很容易,因为Message对象包含有效载荷)
请帮忙!我不敢相信Citrus Framework可能设计得如此糟糕,以致错过了这样的基本测试要求。
最佳答案
你快到了除去servlet-mapping-path设置,并使用此映射键提取器:
<bean id="mappingKeyExtractor" class="com.consol.citrus.endpoint.adapter.mapping.HeaderMappingKeyExtractor">
<property name="headerName" value="#{T(com.consol.citrus.http.message.HttpMessageHeaders).HTTP_REQUEST_URI}"/>
</bean>
这将根据请求路径映射传入的请求。因此,您可以在简单的映射策略中使用键/ service1和/ service2添加映射。
关于java - 如何使用citrus在同一端口上运行具有不同URL的两个模拟Web服务?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40342476/