使用黄瓜

时间:2015-04-26 19:57:58

标签: java spring cucumber bdd

我想让Cucumber与Spring合作。在我们的代码中,我们已经在使用基于Java的Spring配置。我无法在以下场景中使用它。有人可以帮忙吗?

今天,在我们的集成测试类中,我们为每个类使用@ContextConfiguration,并提供在该集成测试类中声明的用于加载bean的配置类。 Config类使用@Configuration注释。可以在2个不同的类中使用不同的集成测试类中使用的Config类来实例化相同的bean。

因此,当我使用Cucumber时,由于Contextconfiguration在不同的类上有所不同,因此它会查找' Cucumber.xml' 。在xml文件中,我使用组件扫描来扫描黄瓜步骤定义类,给出这些类使用的包名称(两个类具有相同的包名称)。由于所有bean都在相同的上下文中加载,因此当Cucumber找到在这些不同配置类中定义的相同bean时,它无法加载bean。

如何以不同的方式解决创建相同bean的问题并在不同的类中使用它们? 请注意,我不是在寻找一种能够从我们现有的编码实践中产生大量流失的解决方案,因此使用per-test-xml文件对我来说不是一个选择。

以下是我们的代码的外观:

类NameAndAddressProviderIntegrationTestSteps: -

@ContextConfiguration(locations="classpath:cucumber.xml")
public class NameAndAddressProviderIntegrationTestSteps {
@Configuration
@Import({
    xyz.class,
    abc.class,
    NameAndAddressProvider.class
})
@ImportResource({
        "file:configuration/spring-configuration/abc.xml",
        "file:configuration/spring-configuration/xyz.xml"
})
public static class Config {

    @Bean
    AccountHolderDataMap dataMap() {
        AccountHolderDataMap data = new AccountHolderDataMap();
        data.put(ID,
                new AccountHolderData(customerID));
       data.get(customerID).setCustomerplaceID(testCustomerplaceID);
        return data;
    }

 }
@Inject
private NameAndAddressProvider provider;

@When("^I call nameandAddress provider with a 'customerId'$")
public void i_call_nameandAddress_provider_with_a_customerId() throws DependencyException {
    System.out.println("Entering when method");
    names = provider.getNames(customerID);
    System.out.println(provider.toString());       
}
......
}

类AddressProviderIntegrationTestSteps: -

 @ContextConfiguration(locations="classpath:cucumber.xml")
 public class AddressProviderIntegrationTestSteps {
 @Configuration
 @Import({
        abc.class,
        xyz.class,
        AddressesProvider.class
})
@ImportResource({
        "file:configuration/spring-configuration/test-environment.xml",
        "file:configuration/spring-configuration/test-logging-config.xml"
})
public static class Config {
    @Bean
    @DependsOn("Environment")
    AccountHolderDataMap data() {
        AccountHolderDataMap data = new AccountHolderDataMap();
       data.put(testCustomerID,
                new AccountHolderData(testCustomerID, testCustomerplaceID,businessType));
        return data;
    }
}

private static final String testCustomerID = "1234";
private static final String testMarketplaceID = "abc";

@Inject
private AddressesProvider provider;

@When("^I call AddressesProvider provider with a 'CustomerID'$")
public void i_call_AddressesProvider_provider_with_a_CustomerID() throws Throwable {
    List<Address> addresses = provider.getAddresses(testCustomerID);
    Log.info(addresses.get(0).toString());
    assertTrue(addresses.size()==1);
  }    

}

这是我得到的嵌套异常: - &#34;嵌套异常是org.springframework.beans.factory.NoUniqueBeanDefinitionException:没有定义[.... AccountHolderDataMap]类型的限定bean:期望的单个匹配bean但找到2:dataMap,data&#34;

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

我为bean定义管理了多个来源。您可以在起点(或互联网上的其他人)使用此功能,因为您的问题很老了 我正在使用spring4,看到我的另一个cucumer帖子为pom

在stepdef使用config.class

@ContextConfiguration(classes = { CucumberConfiguration.class })
public class StepdefsTest123 { 

    @Autowired bean; // from cucumberBeanContext.xml


    @When("^A$")
    public void a() throws Throwable {
        System.out.println(bean.getFoo());
    }

}

在config-class中添加aditional beandefinitions

@Configuration
@ComponentScan(basePackages   = "package.here.cucumber")
@ImportResource("classpath:cucumberBeanContext.xml")
public class CucumberConfiguration {

    // nothing to do here

}