0

下面是 TestFX 的测试片段,直接从他们的GitHub README中提取:

@ExtendWith(ApplicationExtension.class)
class ClickableButtonTest_JUnit5Hamcrest {

    private Button button;

    /**
     * Will be called with {@code @Before} semantics, i. e. before each test method.
     *
     * @param stage - Will be injected by the test runner.
     */
    @Start
    private void start(Stage stage) {
        button = new Button("click me!");
        button.setId("myButton");
        button.setOnAction(actionEvent -> button.setText("clicked!"));
        stage.setScene(new Scene(new StackPane(button), 100, 100));
        stage.show();
    }

    /**
     * @param robot - Will be injected by the test runner.
     */
    @Test
    void should_contain_button_with_text(FxRobot robot) {
        FxAssert.verifyThat(button, LabeledMatchers.hasText("click me!"));
        // or (lookup by css id):
        FxAssert.verifyThat("#myButton", LabeledMatchers.hasText("click me!"));
        // or (lookup by css class):
        FxAssert.verifyThat(".button", LabeledMatchers.hasText("click me!"));
    }

我的问题是,特别是改变场景/根源的动作。正在测试的控制器/场景的方面在最后更改了根,这会产生以下堆栈跟踪:

Caused by: java.lang.NullPointerException
    at org.example/org.example.App.setRoot(App.java:67)
    at org.example/org.example.services.AppService.setRoot(AppService.java:20)
    at org.example/org.example.controllers.SecondaryController.switchToGameScreen(SecondaryController.java:64)
    ... 57 more

我的解决方案是,正如您可能看到的那样,我为其中的静态方法创建了一个服务包装类App(例如setRoot导致 NPE),如果我可以访问控制器,理论上我可以用莫基托。不幸的是,如果您回到上面的代码示例,似乎没有任何访问控制器类的概念。您可以获得表面级别的创建和与舞台的交互,但我无法弄清楚如何访问底层控制器。当然,我需要访问物理控制器才能模拟它的服务类。

有谁知道我如何访问该类,以便我可以将其包装类设置为模拟版本?

如果有人想实际使用它,我可以提供源代码。

4

1 回答 1

0

弄清楚了。

javafx.fxml.FXMLLoader有一个方法叫做getController. 但这并不是那么简单,因为控制器javafx.fxml.FXMLLoader必须在物理上load变成一个javafx.scene.Parent对象才能存在。

无论如何,这是您可以遵循的简短引导设置。

@ExtendWith(ApplicationExtension.class)
public class ToTest {
  private Controller controller;

  @Start
  public void setUp(Stage stage) throws IOException {
    FXMLLoader loader = new FXMLLoader(getClass().getResource("totest.fxml"));
    Parent root = loader.load();
    //This must happen AFTER loader.load()
    this.controller = loader.getController();
    stage.setScene(new Scene(root, 0, 0));
    stage.show();
  }
}

从那里,你可以对控制器做任何你想做的事情。(在我的情况下,嘲笑它)

于 2021-02-27T20:16:15.837 回答