Jenkins使用了错误的JUnit版本

时间:2016-03-08 13:33:07

标签: java jenkins junit

我的一个测试(工作正常几周)开始失败,出现JUnit v3.x错误代码:

  [junit] Testcase: testState took 1.079 sec
    [junit]     FAILED
    [junit] null
    [junit] junit.framework.AssertionFailedError
    [junit]     at com.test.PanelTest.testState(PanelTest.java:331)
    [junit]     at org.powermock.modules.junit4.internal.impl.PowerMockJUnit44RunnerDelegateImpl$PowerMockJUnit44MethodRunner.runTestMethod(PowerMockJUnit44RunnerDelegateImpl.java:312)
    [junit]     at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
    [junit]     at java.util.concurrent.FutureTask.run(FutureTask.java:138)
    [junit]     at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)
    [junit]     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)
    [junit]     at java.lang.Thread.run(Thread.java:662)

在任何地方都没有junit.framework的引用。我正在使用import org.junit.*进行所有测试(除了在Jenkins上未经过测试的已弃用的测试)。

编辑:从已弃用的测试中删除了所有junit.framework个导入。

我怀疑Jenkins有时候仍在使用JUnit 3.x,它应该只使用JUnit 4.x.我已经到处搜索其他JUnit版本的存在,并且只保留了JUnit 4.11的jar文件。

无论我在测试代码中更改了什么,此错误都不会消失。我还尝试“擦除”工作区并验证ant脚本没有任何对Junit 3.x的引用。

这是我的ANT插件配置:

enter image description here

这是我的单元测试的精简版:

package com.test;

import org.fest.swing.core.GenericTypeMatcher;
import org.fest.swing.edt.FailOnThreadViolationRepaintManager;
import org.fest.swing.edt.GuiActionRunner;
import org.fest.swing.edt.GuiQuery;
import org.fest.swing.edt.GuiTask;
import org.fest.swing.fixture.*;
import org.junit.*;
import org.junit.runner.RunWith;
import org.mockito.Matchers;
import org.mockito.Mockito;
import org.powermock.api.mockito.PowerMockito;
import org.powermock.core.classloader.annotations.PowerMockIgnore;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;

import javax.swing.*;
import java.awt.*;
import java.util.ArrayList;
import java.util.List;

@RunWith(PowerMockRunner.class)
@PrepareForTest({ SomeFinalClass.class })
@PowerMockIgnore("javax.swing.*")
public class PanelTest {

    private FrameFixture frameFixture = null;
    private MyPanel panel = null;
    private MyModel model = null;

    @BeforeClass
    public static void runOnce() {
        FailOnThreadViolationRepaintManager.install();
    }

    @Before
    public void setUp() throws Exception {

        <TestFrame extends JFrame>
        TestFrame testFrame = GuiActionRunner.execute(new GuiQuery<TestFrame>() {
            @Override
            protected TestFrame executeInEDT() throws Throwable {

                <lots of mocking and stubbing>

                return new TestFrame(panel);
            }
        });

        GuiActionRunner.execute(new GuiTask() {
            @Override
            protected void executeInEDT() throws Throwable {
                SwingUtils.setLookAndFeel();
                SwingUtilities.updateComponentTreeUI(panel);
            }
        });

        frameFixture = new FrameFixture(testFrame);
        frameFixture.show();
        frameFixture.robot.waitForIdle();
    }


    @After
    public void tearDown() {
        frameFixture.cleanUp();
    }

    @Test
    public void testState() {

        AnotherPanel otherPanel = myModel.getOtherPanel();

        Assert.assertFalse(otherPanel.isShowing());

        <create fake data>
        myModel.update(fakeData);

        JButtonFixture button = <get button Fixture>
        button.click();

        Assert.assertTrue(otherPanel.isShowing());

        button.click();

        Assert.assertFalse(otherPanel.isShowing());  <-- here is where it fails
    }
}

2 个答案:

答案 0 :(得分:1)

AssertionFailedError仍然存在于JUnit 4中,并且已被弃用的类junit.framework.Assert使用。

不要在junit.framework.Assert课程上使用PanelTest,而是使用org.junit.Assert。验证导入。

答案 1 :(得分:0)

从您的错误日志中

  [junit] Testcase: testState took 1.079 sec
    [junit]     FAILED
    [junit] null
    [junit] junit.framework.AssertionFailedError
    [junit]     at com.test.PanelTest.testState(PanelTest.java:331)

因此,您的错误发生在PanelTest.java第331行

如果以下行是331,

Assert.assertFalse(otherPanel.isShowing());  // here is where it fails

因此,从您的日志中,otherPanel在此处为空。从otherPanel读取/生成myModel.getOtherPanel();。 因此,对于这种情况,您可以在点击btnExpandInfo.click();后使用睡眠。有时加载可能需要一些时间,并且在这种情况下不会读取相关的otherPanel。

btnExpandInfo.click();
Thread.sleep(5000); // if fails, you can try for 30000ms or more
Assert.assertFalse(otherPanel.isShowing());

btnExpandInfo.click();

的问题

我没有收到有关btnExpandInfo的任何信息。您尚未声明或调用此对象。因此,如果未发现此按钮可点击,它也可能为null。

JUnit版本问题:

&#34;空&#34;在带有空白消息参数的JUnit 3断言(junit.framework.Assert)中显示为消息。这已在JUnit 4org.junit.Assert)中修复。

示例:

JUnit 3:

assertTrue(false)assertTrue("null", false)

具有相同的堆栈跟踪

JUnit 4:

assertTrue(false)assertTrue("", false)

具有相同的堆栈跟踪

归功于@ AnthonyW

资源链接:

  1. AssertionFailedError: null on boolean method