有没有办法在另一个项目中重复使用多个项目中的黄瓜步骤?

问题描述

我有2个微服务A和B,在他们自己的项目中为其定义了黄瓜测试。

服务A

@ContextConfiguration(classes = [AppConfiguration::class])
class ServiceAStepDefs @Autowired constructor(private var serviceAProfile: ServiceAProfile) : En {
    //stepdefs live here
}

class AppConfiguration {

    @Bean
    fun serviceAProfileMaker(): ServiceAEnvironmentProfile {
        val oktaConfig = DefaultOAuth2Config.getToken()
        return ProfileManager.getEnvProfile(token)
    }

}

服务B

@ContextConfiguration(classes = [AppConfiguration::class])
class ServiceBStepDefs {
    //stepdefs live here
}    
@ComponentScan("com.hello.*")
class AppConfiguration {

    @Bean
    fun serviceBProfileMaker(): ServiceBEnvironmentProfile {
        val token = DefaultOAuth2Config.getToken()
        return ProfileManager.getEnvProfile(token)
    }
}

在另一个项目C中,我想一起测试这两个服务。为此,我创建了一个jar文件,其中包含每个服务的步骤定义,并将它们作为依赖项拉入项目C。

当我尝试使用服务A和服务B中的步骤从项目C运行黄瓜测试时,我看到一个问题,即在两个项目中都使用了Spring Context,我猜是正确的。

10:17:59.936 [DEBUG] [TestEventLogger]     io.cucumber.core.backend.CucumberBackendException: Glue class class com.hello.serviceA.stepdefs.ServiceASteps and class com.hello.stepdefs.ServiceBSteps both attempt to configure the spring context. Please ensure only one glue class configures the spring context

我是否有办法连接这两个服务,以便我可以同时配置这两个Bean并重复使用这些步骤?

解决方法

使用cucumber-spring时,Cucumber使用Spring的TestContextManager框架。该框架使用单个类启动测试上下文。此类会检查是否有任何配置应用程序上下文的注释,例如@ContextConfiguration

由于两个步骤定义都具有此批注,因此Cucumber无法决定使用哪个批注,因此您会因抱怨而出错。要解决此问题,您应确保只有一个胶水类具有@ContextConfiguration批注。

Cucumber v5.6.0添加了@CucumberContextConfiguration,使此操作变得更容易。

因此,您可能希望像这样构建项目:

a
|- config
| | AConfiguration with `@CucumberContextConfiguration` and `@ContextConfiguration(...)`
| | RunCucumberTest with `@CucumberOptions(extraGlue="a.steps")`
|- steps
| | ASteps

b
|- config
| | BConfiguration with `@CucumberContextConfiguration` and `@ContextConfiguration(...)`
| | RunCucumberTest with `@CucumberOptions(extraGlue="b.steps")`
|- steps
| | BSteps

c
|- config
| | CConfiguration with `@CucumberContextConfiguration` and `@ContextConfiguration(...)`
| | RunCucumberTest with `@CucumberOptions(extraGlue={"a.steps","b.steps"})`

请参阅:https://github.com/cucumber/cucumber-jvm/tree/main/spring

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...