我有一个用Cucumber测试过的应用程序,但自从升级(Cucumber 1.1.6到1.2.5,java 1.6到1.8,Spring 3.2.0到4.2.6)之后,它不再有效,因为它抱怨{{ 1}}
结构如下:
Annotations differs on glue classes found
这两个都应该共享一个bean。
公共部分永远不会自行运行。但我有多个测试,每个测试都使用自己特定的stepdef。由于@ContextConfiguration
,现在拒绝运行
有没有办法让这个运行而不会污染具体情境特定的公共背景?
步骤定义:
Annotations differs on glue classes found
常见的Spring配置:
@ContextConfiguration("classpath:cucumber-common.xml")
public class CommonStepdefs {
@Autowired
private SharedBean sharedBean;
@Value("${some.property}")
private String someProperty;
// actual step def methods
}
@ContextConfiguration("classpath:cucumber-concrete.xml")
public class ConcreteStepdefs {
@Autowired
private SharedBean sharedBean;
@Autowired
private OtherBean otherBean;
// actual step def methods
}
另一个Spring配置(导入常用配置):
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<context:property-placeholder location="classpath:com/example/cucumber-common.properties"/>
<context:spring-configured/>
<context:annotation-config/>
<bean id="glueCodeScope" class="cucumber.runtime.java.spring.GlueCodeScope"/>
<bean id="glueCodeScopeConfigurer" class="org.springframework.beans.factory.config.CustomScopeConfigurer">
<property name="scopes">
<map>
<entry key="cucumber-glue" value-ref="glueCodeScope"/>
</map>
</property>
</bean>
<bean id="sharedBean" class="com.example.SharedBean" scope="cucumber-glue"/>
</beans>
测试使用以下方式运行:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<import resource="classpath:cucumber-common.xml"/>
<context:spring-configured/>
<context:annotation-config/>
<context:component-scan base-package="com.example.rest"/>
<!-- more bean definitions -->
</beans>
答案 0 :(得分:0)
您可以使用qaf-gherkin来简化此类要求的实施。使用QAF,您无需使用弹簧即可实现。它还支持打包jar的步骤。如果您在不同包中的一个包和平台特定步骤中有共同步骤,则您的配置可能如下所示:
step.provider.pkg=com.myapp.steps.common;com.myapp.steps.web
如果您想与您一起运行,可以在TestNG xml配置文件中指定如下:
<test name="Test-web">
<parameter name="step.provider.pkg" value="com.myapp.steps.common;com.myapp.steps.web" />
<parameter name="scenario.file.loc" value="resources/features" />
<classes>
<class name="com.qmetry.qaf.automation.step.client.gherkin.GherkinScenarioFactory" />
</classes>
</test>
<test name="Test-mobile">
<parameter name="step.provider.pkg" value="com.myapp.steps.common;com.myapp.steps.mobile" />
<parameter name="scenario.file.loc" value="resources/features" />
<classes>
<class name="com.qmetry.qaf.automation.step.client.gherkin.GherkinScenarioFactory" />
</classes>
</test>
其中一个好处是,常见的步骤可以在jar中,您可以在多个项目中共享。与spring @Autowired
一样,QAF支持@Inject
注释。