如何在TestFX中测试多个场景

时间:2017-06-29 15:46:56

标签: java javafx testfx jfoenix

我在TestFX中为ArithmeticProblem类编写了一个单元测试。

public class ArithmeticProblemTextFx extends TestFxBase {

    @Test(expected = FxRobotException.class)
    public void fxIdNotExist() {
        clickOn("#test123");
    }

    @Test
    public void allComponentsShouldHaveRightText() {
        verifyThat("#jfxButtonCheck", hasText("PRÜFEN"));
        verifyThat("#jfxButtonNextArithmeticProblem", hasText("NÄCHSTE AUFGABE"));
        verifyThat("#jfxButtonSave", hasText("SPEICHERN"));
        verifyThat("#jfxTextFieldResult", hasText(""));
    }

    @Test
    public void checkTextFieldResult() {
        JFXTextField jfxTextFieldResult = find("#jfxTextFieldResult");
        JFXButton jfxButtonCheck = find("#jfxButtonCheck");

        jfxTextFieldResult.setText("5");
        assertFalse(
                "Der Button ist darf NICHT disable sein, da eine Zahl in TextFieldResult steht.",
                jfxButtonCheck.isDisable()
        );

        jfxTextFieldResult.setText("g");
        assertTrue(
                "Der Button muss disable sein, da KEINE Zahl in TextFieldResult steht.",
                jfxButtonCheck.isDisable()
        );
    }

    @Test
    public void checkJfxButtonSaveClick() {

        clickOn("#jfxButtonSave");

        verifyThat("#labelTotalResults", hasText("0"));
        verifyThat("#labelNumberOfRightResults", hasText("0"));
        verifyThat("#labelAmountOfRightResults", hasText("(0%)"));
        verifyThat("#labelNumberOfWrongResults", hasText("0"));
        verifyThat("#labelAmountOfWrongResults", hasText("(0%)"));
        verifyThat("#labelTimePerArithmeticProblem", hasText(""));
        verifyThat("#labelMark", hasText("-"));
        verifyThat("#labelRightResult", hasText(""));
        verifyThat("#jfxTextFieldResult", hasText(""));
    }

    @Test
    public void checkJfxButtonNextArithmeticProblemClick() {

        clickOn("#jfxButtonNextArithmeticProblem");

        verifyThat("#labelRightResult", hasText(""));
        verifyThat("#jfxTextFieldResult", hasText(""));
        verifyThat("#labelTimePerArithmeticProblem", hasText(""));
    }
}

以下是" TestFxBase"

的代码
public class TestFxBase extends ApplicationTest {

    @Before
    public void setUpClass() throws Exception {
        ApplicationTest.launch(Main.class);
    }

    @After
    public void afterEachTest() throws TimeoutException {
        FxToolkit.hideStage();
        release(new KeyCode[]{});
        release(new MouseButton[]{});
    }

    @Override
    public void start(Stage stage) throws Exception {
        stage.show();
    }

    public <T extends Node> T find(final String query) {
        return (T) lookup(query).queryAll().iterator().next();
    }
}

当我加载Main.class时,它只显示ArithmeticProblem-Scene。这是它的外观。

enter image description here

所以我只能测试ArithmeticProblem.class,因为我不知道如何加载其他场景。 在我的菜单中,我有一些其他的点,如评估或设置,我如何加载这个场景?

1 个答案:

答案 0 :(得分:4)

实际上你不应该在一个测试类中测试所有场景。它违反了SRP(单一责任原则)。相反,您应该分离您的组件,以便您可以单独测试它们。即ArithmeticProblem应在ArithmeticProblemTest班级进行测试,Settings班级应在SettingsTest班级等进行测试。

TestFX github存储库中有一个很好的例子。

public class DesktopPaneTest extends ApplicationTest {
    @Override
    public void start(Stage stage) {
        Scene scene = new Scene(new DesktopPane(), 800, 600);
        stage.setScene(scene);
        stage.show();
    }

    @Test
    public void should_drag_file_into_trashcan() {
        // given:
        rightClickOn("#desktop").moveTo("New").clickOn("Text Document");
        write("myTextfile.txt").push(ENTER);

        // when:
        drag(".file").dropTo("#trash-can");

        // then:
        verifyThat("#desktop", hasChildren(0, ".file"));
    }
}

start方法中,您可以将组件(JavaFX Node)添加到场景中,此示例为new DesktopPane(),在您的情况下,它将为new ArithmeticProblem(),{ {1}}等 并且new Settings()不再需要{。}}。

ApplicationTest.launch(Main.class);

请注意,在此示例中,仅使用 Given-When-Then 方案测试行为。我建议你在测试中使用这个场景。

我认为这些测试也是多余的:

@Before
public void setUpClass() throws Exception {
    ApplicationTest.launch(Main.class);
}

因为第一个测试只是测试不存在,而第二个测试只是测试文本而不做任何事情。如果您使用这些文本创建了文本字段,那么它们必须存在,并且应该在某些行为后检查它们。

我希望我的回答对你有用。如果您有任何问题,请随时给我写信。