私は webdriver でいくつかの機能テストを作成し、それらを JUnit で実行しています。私は TestWatcher クラスを利用しようとしているので、イベントが発生するたびに特定のアクションを実行できます。私は終了したメソッドと失敗したメソッドをオーバーライドしていますが、これらはほぼ同時に起動されているようです。そのため、失敗したメソッドが処理を実行する前に、ドライバーは終了メソッドによって既に破棄されています。
TestWatcher は次のとおりです。
public class TestRules extends TestWatcher {
private static WebDriver driver;
private static final Logger Log = LogManager.getLogger(TestRules.class);
public TestRules() {
if (driver == null)
try {
driver = TestHelpers.getWebDriver();
} catch (Exception e) {
throw new RuntimeException(e);
}
}
@Override
protected void starting(Description description){
Log.info(String.format("Started test: %s::%s", description.getClassName(), description.getMethodName()));
try {
new LoginTest().testDoLogin();
} catch (Exception e) {
Log.error(e);
}
}
@Override
protected void failed(Throwable e, Description description) {
File scrFile = ((TakesScreenshot) driver).getScreenshotAs(OutputType.FILE);
String path = String.format("C:\\localdev\\screenshot\\%d__%s_%s.png",
Calendar.getInstance().getTimeInMillis(), description.getClassName(), description.getMethodName());
try {
FileUtils.copyFile(scrFile, new File(path));
} catch (IOException ioe) {
Log.error(ioe);
}
Log.error(String.format("Error: %s\nScreenshot: %s", e.getMessage(), path));
}
@Override
protected void finished(Description description) {
Log.info(String.format("Finished test: %s::%s", description.getClassName(), description.getMethodName()));
try {
// This actually calling driver.quit() <- (driver == WebDriver)
TestHelpers.close();
} catch (Exception e) {
Log.error(e);
}
}
}
テストは次のようになります。
public class testSomething {
private static final Logger Log = LogManager.getLogger(testSomething.class);
@Rule
public TestRules testRules = new TestRules();
@Test
public void filterTableByNameWildcard() throws Exception {
Log.info("Starting the test filterTable");
MainView mainView = getMainView();
String searchString = "A*";
mainView.setFilterParametersAndDoFilter(searchString, "", true, true);
mainView.validateWildCardSearchReturnsCorrectData(searchString);
// Random failing point for testing
Assert.assertTrue(false);
テストを実行すると、次のエラーが発生します。
java.lang.AssertionError:
Expected :true
Actual :false
<Click to see difference>
at org.junit.Assert.fail(Assert.java:88)
at org.junit.Assert.failNotEquals(Assert.java:789)
at org.junit.Assert.assertEquals(Assert.java:118)
at org.junit.Assert.assertEquals(Assert.java:144)
at xxx.Tests.xxx.testSomething.filterSomething(TestSomething.java:34)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55)
at org.junit.rules.RunRules.evaluate(RunRules.java:20)
.... skipped
org.openqa.selenium.remote.SessionNotFoundException: The FirefoxDriver cannot be used after quit() was called.
Build info: version: '2.33.0', revision: '4e90c97', time: '2013-05-22 15:33:32'
System info: os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.7.0_21'
Driver info: driver.version: FirefoxDriver
at org.openqa.selenium.firefox.FirefoxDriver$LazyCommandExecutor.execute(FirefoxDriver.java:352)
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:527)
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:569)
at org.openqa.selenium.firefox.FirefoxDriver.getScreenshotAs(FirefoxDriver.java:316)
at xxx.TestHelpers.TestRules.failed(TestRules.java:47)
at org.junit.rules.TestWatcher.failedQuietly(TestWatcher.java:84)
at org.junit.rules.TestWatcher.access$300(TestWatcher.java:46)
at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:62)
at org.junit.rules.RunRules.evaluate(RunRules.java:20)
合格する方法はありますか?
編集:ドキュメントから:
protected void finished(Description description) テストメソッドが終了したときに呼び出されます (合格または不合格に関係なく)
protected void failed(Throwable e, Description description) テストが失敗したときに呼び出されます
最初に「失敗」が呼び出され、その後「終了」が呼び出されるのは理にかなっていますが、逆のようです。