当前位置: 首页 > 知识库问答 >
问题:

我不能用AssertJ测试Swing GUI

常坚
2023-03-14

我无法使用AssertJ库测试应用程序中的GUI。为了不扩散你程序的所有代码,编写了一个测试程序来显示问题的本质。

package AssertJ;

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class SomeFrame extends JFrame {
    JFrame frame;
    JLabel label1;
    JButton button1;

    public SomeFrame() {
        createGUI();

    }

    public void createGUI() {
        frame = new JFrame("EspiaServer");
        frame.setLayout(new FlowLayout());
        frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
        label1 = new JLabel("Random");
        button1 = new JButton("Click Me!");
        button1.setName("button");
        button1.setSize(200, 200);
        button1.addActionListener(listener);
        frame.add(label1);
        frame.add(button1);
        frame.pack();


    }

    public static void main(String[] args) {
        new SomeFrame();
    }


    ActionListener listener = new ActionListener() {
        @Override
        public void actionPerformed(ActionEvent e) {
            int i = (int) (Math.random() * 99999) + 0;
            label1.setText(String.valueOf(i));
        }
    };
}

以下是对它的测试:

package AssertJ;

import org.assertj.swing.edt.GuiActionRunner;
import org.assertj.swing.fixture.FrameFixture;
import org.junit.Before;
import org.junit.Test;


public class SomeFrameTest {
    private FrameFixture window;

    @Before
    public void setUp() {
        SomeFrame frame = GuiActionRunner.execute(() -> new SomeFrame());
        window = new FrameFixture(frame);
        window.show(); // shows the frame to test
    }


    @Test
    public void createGUI() {
        window.button("button").click();
    }
}

几秒钟后,应用程序抛出异常:

rg.assertj.swing.exception.ComponentLookupException: Unable to find component using matcher org.assertj.swing.core.NameMatcher[name='button', type=javax.swing.JButton, requireShowing=true].

Component hierarchy:
AssertJ.SomeFrame[name='frame0', title='', enabled=true, visible=true, showing=true]
  javax.swing.JRootPane[]
    javax.swing.JPanel[name='null.glassPane']
    javax.swing.JLayeredPane[]
      javax.swing.JPanel[name='null.contentPane']


    at org.assertj.swing.core.BasicComponentFinder.componentNotFound(BasicComponentFinder.java:287)
    at org.assertj.swing.core.BasicComponentFinder.find(BasicComponentFinder.java:272)
    at org.assertj.swing.core.BasicComponentFinder.find(BasicComponentFinder.java:265)
    at org.assertj.swing.core.BasicComponentFinder.findByName(BasicComponentFinder.java:200)
    at org.assertj.swing.fixture.AbstractContainerFixture.findByName(AbstractContainerFixture.java:641)
    at org.assertj.swing.fixture.AbstractContainerFixture.button(AbstractContainerFixture.java:143)
    at AssertJ.SomeFrameTest.createGUI(SomeFrameTest.java:23)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
    at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
    at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)

共有1个答案

时经纬
2023-03-14

在window.show()后面写window.最大化()。

 类似资料:
  • 我有一个简单的单元测试来确保应用程序的主窗口被解除: AbstractMainWindowTest是: ScaleRuler是我的框架,它暂时什么也不做,只是setundered(真)。测试运行良好。如何从Cucumber中执行相同的测试? 我尝试使用WindowAspectSteps来扩展AbstractMainWindowTest,但是窗口变量仍然为null。

  • 我使用assertJ,在我的测试用例中有多个assertThat断言。当第一个断言失败时,测试就完成了,但我不希望这样。我想知道测试用例单次执行后所有失败断言的信息。有什么办法可以做到吗?我在这里找到了SoftAssertions的解决方案->http://joel-costigliola.github.io/assertj/assertj-core-features-highlight.html

  • 我试图测试银行系统应用程序的GUI,但在TestLogin类中,我出现了一个错误“无法解析构造函数”FrameFixture(GUI.Login)”。我试图在Login类中扩展SampleFrame类,但IntelliJ找不到依赖项。我能做些什么来解决这个问题? 这里是登录类:

  • 我想对Java8使用最新的assertj-core(例如,对选项进行断言)。我使用spring-boot-starter-test1.4.1,它随预配置的AssertJ2.5.0一起提供。 null 现在,当我在测试模块上排除assertj-core(并包括3.5.2)时,测试模块的依赖关系是正常的。但是当我检查根级别上的依赖关系时,我在类路径上同时有assertJ-core-2.5.0和asse

  • 在使用Swing开发Java桌面应用程序时,我遇到了直接测试UI的需求,而不仅仅是通过单元测试来测试底层的控制器/模型类。 这个答案(关于“基于Swing的应用程序的最佳测试工具是什么?”)建议使用FEST,不幸的是,它已经停止了。然而,有几个项目是从费斯特离开的地方继续进行的。一个特别的(在这个答案中提到的)引起了我的注意,因为我以前在单元测试中使用过它:AssertJ。 显然存在AssertJ

  • 问题内容: 我在通过此测试时遇到问题。问题是,我的结构体中的方法需要写入属性,但接口不接受指针作为其接收者。 测试输出: 正如我提到的,不会被写入,因为我无法将函数接收器设置为指针,因为它不能满足。 问题答案: 如果继续使用一个 指针 来,它应该工作: 然后: 我错过了: 您需要调用指针接收器,而不是值接收器。 由于所有内容都是通过Go中的值传递的,因此使用值接收器将 复制 该实例。