首页 > 解决方案 > 尝试在从源代码构建的 IntelliJ 社区上运行无操作“LightCodeInsightFixtureTestCase”时出现“NullPointerException”

问题描述

我尝试根据手册创建一个简单的 IDEA 插件和一个测试用例:

package com.example;

import com.intellij.testFramework.fixtures.LightCodeInsightFixtureTestCase;

public class NoopTest extends LightCodeInsightFixtureTestCase {
    public void testNothing() {

    }
}

然后我创建 JUnit 运行配置,让它运行这个类,将工作目录指向D:\idea-community\bin目录(见下文)并按照手册设置 VM 选项:

-ea -Xbootclasspath/p:../out/classes/production/boot -XX:+HeapDumpOnOutOfMemoryError -Xmx512m -XX:MaxPermSize=320m -Didea.system.path=../test-system -Didea.home.path=../ -Didea.config.path=../test-config -Didea.test.group=ALL_EXCLUDE_DEFINED

然后我在调试模式下运行测试并得到以下错误:

CompositeException (2 nested):
------------------------------
[0]: java.lang.NullPointerException
    at com.intellij.testFramework.IdeaTestUtil.createMockJdk(IdeaTestUtil.java:77)
    at com.intellij.testFramework.IdeaTestUtil.getMockJdk(IdeaTestUtil.java:72)
    at com.intellij.testFramework.IdeaTestUtil.getMockJdk17(IdeaTestUtil.java:85)
    at com.intellij.testFramework.fixtures.LightCodeInsightFixtureTestCase$1.getSdk(LightCodeInsightFixtureTestCase.java:60)
    at com.intellij.testFramework.LightProjectDescriptor.lambda$createContentEntry$3(LightProjectDescriptor.java:135)
    at com.intellij.openapi.roots.ModuleRootModificationUtil.updateModel(ModuleRootModificationUtil.java:143)
    at com.intellij.testFramework.LightProjectDescriptor.createContentEntry(LightProjectDescriptor.java:134)
    at com.intellij.testFramework.LightProjectDescriptor.lambda$setUpProject$0(LightProjectDescriptor.java:58)
    at com.intellij.openapi.application.WriteAction.run(WriteAction.java:105)
    at com.intellij.testFramework.LightProjectDescriptor.setUpProject(LightProjectDescriptor.java:52)
    at com.intellij.testFramework.LightPlatformTestCase.initProject(LightPlatformTestCase.java:242)
    at com.intellij.testFramework.LightPlatformTestCase.doSetup(LightPlatformTestCase.java:303)
    at com.intellij.testFramework.fixtures.impl.LightIdeaTestFixtureImpl.setUp(LightIdeaTestFixtureImpl.java:37)
    at com.intellij.testFramework.fixtures.impl.CodeInsightTestFixtureImpl.lambda$setUp$24(CodeInsightTestFixtureImpl.java:1190)
    at com.intellij.testFramework.EdtTestUtil$Companion$runInEdtAndWait$1.invoke(EdtTestUtil.kt:19)
    at com.intellij.testFramework.EdtTestUtil$Companion$runInEdtAndWait$1.invoke(EdtTestUtil.kt:14)
    at com.intellij.testFramework.EdtTestUtilKt.runInEdtAndWait(EdtTestUtil.kt:55)
    at com.intellij.testFramework.EdtTestUtil$Companion.runInEdtAndWait(EdtTestUtil.kt:19)
    at com.intellij.testFramework.EdtTestUtil.runInEdtAndWait(EdtTestUtil.kt)
    at com.intellij.testFramework.fixtures.impl.CodeInsightTestFixtureImpl.setUp(CodeInsightTestFixtureImpl.java:1189)
    at com.intellij.testFramework.fixtures.LightCodeInsightFixtureTestCase.setUp(LightCodeInsightFixtureTestCase.java:76)
    at com.intellij.testFramework.UsefulTestCase.defaultRunBare(UsefulTestCase.java:358)
    at com.intellij.testFramework.EdtTestUtil$Companion$runInEdtAndWait$1.invoke(EdtTestUtil.kt:19)
    at com.intellij.testFramework.EdtTestUtil$Companion$runInEdtAndWait$1.invoke(EdtTestUtil.kt:14)
    at com.intellij.testFramework.EdtTestUtilKt$runInEdtAndWait$2.run(EdtTestUtil.kt:59)
    at java.awt.event.InvocationEvent.dispatch$$$capture(InvocationEvent.java:301)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
    at java.awt.EventQueue.access$500(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:709)
    at java.awt.EventQueue$3.run(EventQueue.java:703)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
    at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:361)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)

[1]: java.lang.AssertionError: setUp() has not been called
    at org.junit.Assert.fail(Assert.java:88)
    at org.junit.Assert.assertTrue(Assert.java:41)
    at com.intellij.testFramework.fixtures.impl.BaseFixture.tearDown(BaseFixture.java:48)
    at com.intellij.testFramework.fixtures.impl.LightTempDirTestFixtureImpl.tearDown(LightTempDirTestFixtureImpl.java:64)
    at com.intellij.testFramework.fixtures.impl.CodeInsightTestFixtureImpl.lambda$null$32(CodeInsightTestFixtureImpl.java:1241)
    at com.intellij.testFramework.EdtTestUtil$Companion$runInEdtAndWait$1.invoke(EdtTestUtil.kt:19)
    at com.intellij.testFramework.EdtTestUtil$Companion$runInEdtAndWait$1.invoke(EdtTestUtil.kt:14)
    at com.intellij.testFramework.EdtTestUtilKt.runInEdtAndWait(EdtTestUtil.kt:37)
    at com.intellij.testFramework.EdtTestUtil$Companion.runInEdtAndWait(EdtTestUtil.kt:19)
    at com.intellij.testFramework.EdtTestUtil.runInEdtAndWait(EdtTestUtil.kt)
    at com.intellij.testFramework.fixtures.impl.CodeInsightTestFixtureImpl.lambda$tearDown$33(CodeInsightTestFixtureImpl.java:1241)
    at com.intellij.testFramework.RunAll.collectExceptions(RunAll.java:60)
    at com.intellij.testFramework.RunAll.run(RunAll.java:52)
    at com.intellij.testFramework.fixtures.impl.CodeInsightTestFixtureImpl.tearDown(CodeInsightTestFixtureImpl.java:1247)
    at com.intellij.testFramework.fixtures.LightCodeInsightFixtureTestCase.tearDown(LightCodeInsightFixtureTestCase.java:88)
    at com.intellij.testFramework.UsefulTestCase.defaultRunBare(UsefulTestCase.java:370)
    at com.intellij.testFramework.EdtTestUtil$Companion$runInEdtAndWait$1.invoke(EdtTestUtil.kt:19)
    at com.intellij.testFramework.EdtTestUtil$Companion$runInEdtAndWait$1.invoke(EdtTestUtil.kt:14)
    at com.intellij.testFramework.EdtTestUtilKt$runInEdtAndWait$2.run(EdtTestUtil.kt:59)
    at java.awt.event.InvocationEvent.dispatch$$$capture(InvocationEvent.java:301)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
    at java.awt.EventQueue.access$500(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:709)
    at java.awt.EventQueue$3.run(EventQueue.java:703)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
    at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:361)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)

我的设置:

  1. IDEA 社区,按照“ Check Out And Build Community Edition ”手册后点击“Build - Build project”在本地构建。到源根的路径是这样的D:\idea-community\,所以有D:\idea-community\getPlugins.bat。Git 提交是ef98a0ccb.
  2. IDEA 在调试模式下成功运行。
  3. 此 IDEA 作为 IntelliJ 平台插件 SDK 添加到我的插件项目中。
  4. 我从我的插件项目中成功运行了 IDEA,甚至浏览了源代码。

运行测试时如何修复错误并使其通过?

标签: intellij-ideaintellij-plugin

解决方案


我能够通过删除来解决问题D:\idea-community\out\production\intellij.pycharm.community\META-INF\PyCharmCorePlugin.xml,但这感觉像是作弊,因为每次构建都会重新创建该文件。

经过进一步调查,我发现在这种情况下PlatformTestCase.doAutodetectPlatformPrefix()检测到PyCharmCore而不是Idea并且看起来模拟 Java SDK(或其他)没有加载,因此NullPointerException.

我在此处(从 2009 年开始)、此处(从 2012 年开始)和那里(从 2014 年开始)在 JetBrains 论坛上发现了一些类似问题的提及。看起来测试中的平台自动检测是最近的事情(从 2015 年开始)。此外,它看起来覆盖-Didea.platform.prefix=Idea了我作为 JVM 选项传递的任何内容,所以我看不到任何更好的解决方案。


推荐阅读