我开始使用TestBench为我的Vaadin Flow应用程序创建集成测试,我要测试的一件事就是成功登录。为了使用有效的凭据测试登录,我需要提供凭据。但是我真的想避免将我的凭据硬编码到测试用例中。
因此,我想利用@Value annotation从我的settings.xml中注入我的用户名和密码,但是为此,我的Test类必须是一个弹簧管理的bean。
有没有办法使我的TestBenchTestCase成为Spring管理的Bean?还是有更好的方法实现我的目标?我相信在使用TestBench进行几乎所有集成测试用例时,最终都会使用执行成功的登录吗?
答案 0 :(得分:4)
仅回答问题,您可以使用@TestPropertySource(locations="...")
和@RunWith(SpringRunner.class)
,在下面可以找到完整的样本(尽管如此,但还是一个简单的intro)。
但是,根据您的最终目标(单元测试,回归,系统,压力等),您可能需要重新考虑您的方法,例如拥有一个初始的“设置” 部分来为系统配置运行整个套件所需的任何数据,可能包括创建和授权要使用的专用用户帐户。
1)代码
package com.example;
import com.vaadin.testbench.TestBenchTestCase;
import com.vaadin.testbench.elements.TextFieldElement;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.test.context.TestPropertySource;
import org.springframework.test.context.junit4.SpringRunner;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;
@RunWith(SpringRunner.class)
@TestPropertySource(locations = "my-custom-config.properties")
public class SpringTestbenchTest extends TestBenchTestCase {
@Value("${input.text:unknown}")
private String text;
@Before
public void setUp() throws Exception {
System.setProperty("webdriver.chrome.driver", "D:\\Kit\\Selenium\\chromedriver_win32\\chromedriver.exe");
setDriver(new ChromeDriver());
}
@After
public void tearDown() throws Exception {
getDriver().quit();
}
@Test
public void shouldTypeTextInInputBox() {
// open the browser
getDriver().get("https://demo.vaadin.com/sampler/#ui/data-input/text-input/text-field");
// wait till the element is visible
WebDriverWait wait = new WebDriverWait(getDriver(), 5);
TextFieldElement textBox = (TextFieldElement) wait.until(ExpectedConditions.visibilityOf($(TextFieldElement.class).first()));
// set the value and check that its caption was updated accordingly
textBox.setValue(text);
assertThat(textBox.getCaption(), is(Math.min(text.length(), 10) + "/10 characters"));
}
}
2)src / test / resources / com / example / my-custom-config.properties
input.text=vaadin
3)结果