MCVE は次のとおりです。
main.groovy:
package core
import javafx.application.Application
import javafx.stage.Stage
import javafx.fxml.FXMLLoader
class App extends Application {
FXMLLoader fxmlLoader = new FXMLLoader()
static App instance
FXMLController fxmlController
void start(Stage primaryStage) {
instance = this
fxmlLoader.load( getClass().getResource("mainWindow.fxml").openStream() )
primaryStage.show()
}
}
class FXMLController {}
testfx.groovy:
package core
import javafx.fxml.FXMLLoader
import javafx.scene.Node
import javafx.stage.Stage
import org.testfx.framework.spock.ApplicationSpec
class FirstFXSpec extends ApplicationSpec {
void start(Stage stage) { }
def 'at start, fxmlLoader should load mainWindow.fxml'() {
given:
App.instance = new App()
App.instance.fxmlLoader = Mock(FXMLLoader) {
getController() >> Mock(FXMLController)
}
Node mockNode = Mock(Node)
// Stage mockStage = GroovyMock( Stage ){
Stage mockStage = Mock( Stage ){
show() >> null
}
when:
App.instance.start( mockStage )
then:
true // details of test omitted
}
}
build.gradle:
plugins {
id 'groovy'
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
repositories { mavenCentral() }
javafx {
version = '11.0.2'
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
dependencies {
implementation 'org.codehaus.groovy:groovy:2.5.+'
testImplementation 'junit:junit:4.12'
testImplementation 'org.spockframework:spock-core:1.3-groovy-2.5'
testImplementation 'net.bytebuddy:byte-buddy:1.9.3'
testImplementation 'org.objenesis:objenesis:2.6'
testImplementation 'org.testfx:testfx-spock:4.0.15-alpha'
}
application {
mainClassName = 'core.App'
}
ファイル src/main/resources/core/mainWindow.fxml の詳細は重要ではありませんが、例を次に示します。
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.VBox?>
<VBox prefHeight="600.0" prefWidth="900.0" xmlns="http://javafx.com/javafx/11.0.1"
xmlns:fx="http://javafx.com/fxml/1" fx:controller="core.FXMLController" >
<children>
<Label text="Some label"></Label>
</children>
</VBox>
上記のテストは失敗します。実際のメソッドStage.show()
が呼び出され、それがモックであるという事実は無視されます。これを aから
a に変更すると、代わりにモック メソッドが使用され、テストに合格します。通常の Spockが無視される
のはなぜですか?Mock
GroovyMock
show()
Mock