黄瓜测试不启动 Spring 启动应用程序



当启动我的Cucumber测试(通过Selenium和集成/休息)时,Spring Boot(测试)应用程序不会自动启动。

如何配置黄瓜启动 Spring 启动应用程序(以及)?

我尝试了很多方法。我的文件是:

黄瓜主开胃菜:

@RunWith(Cucumber.class)
@CucumberOptions(features = "src/test/resources/cucumber_integration_tests")
public class Cucumber_Integration_Test {
}

粘附代码文件如下所示:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = Application.class, loader = SpringApplicationContextLoader.class)
@WebAppConfiguration
@IntegrationTest
public class StepDefsIntegrationTest extends SpringIntegrationTest {
@When("^the client calls /version$")
public void the_client_issues_GET_version() throws Throwable {
executeGet("http://localhost:8080/version");
}
etc. 
}

在粘附代码文件中启动应用程序的替代方法:

@SpringBootTest( properties = "server.port=8080", classes = Application.class, webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT)
public class wine_Cucumber_Selenium_Steps {
private WebDriver driver;
private String baseUrl = "http://localhost";
private int port = 8080;
@Given("^I visit the wine cellar home page$")
public void goToWineCellarHomePage() {
// Firefox
// System.setProperty("webdriver.gecko.driver", "K:\k_schijf\download_via_firefox\geckodriver-v0.11.1-win64\geckodriver.exe");
// driver = new FirefoxDriver();
// Chrome
System.setProperty("webdriver.chrome.driver", "K:\k_schijf\download_via_firefox\chromedriver_win32\chromedriver.exe");
driver = new ChromeDriver();
baseUrl += ":" + port;
driver.navigate().to(baseUrl + "/index.html");
}

诊断:

  • 我没有看到春天以消息开始
  • 我收到错误消息"资源访问异常:GET请求"http://localhost:8080/version"上的I/O错误:连接被拒绝">

您可能希望将@ContextConfiguration与@SpringBootTest注释一起使用。我这里有黄瓜测试工作示例

谢谢@ravinikam显示一个好的方向。我将进一步尝试ContextPath和SpringBootTest的组合。

一个答案(也许不是最好的)是我使用了 Cucumber 的 1.2.4 版本,并将这段代码添加到 Cucumber 的 runTest 中。这奏效了。

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@ContextConfiguration(classes = Application.class, loader = SpringApplicationContextLoader.class)
@WebIntegrationTest
@RunWith(SpringJUnit4ClassRunner.class)
public @interface CucumberStepsDefinition {
}

Bealdung给出了另一个想法:看看这个集成测试的简短示例。

相关内容

  • 没有找到相关文章

最新更新