Модульное тестирование Mockito - исключение Nullpointer происходит при настройке теста - PullRequest
0 голосов
/ 01 ноября 2019

Я использую Mockito и JUnit для модульного тестирования. Недавно я добавил флаг разработки / среды, чтобы отделить код, находящийся в разработке, от производственного кода. Проблема в том, что я получаю NullpointerException при запуске своих модульных тестов после добавления строки кода, которая проверяет флаг среды. Сам код способен правильно скомпилироваться и работать.

Я очень, очень плохо знаком с Mockito, поэтому, пожалуйста, направьте меня к ресурсам, которые могут быть полезны.

Флаг среды вызывается следующим образом: RimRegistrationUtil.isBulkMedicalDeviceSubmissionAndROCreationHidden(environment)

Вот код, который использует флаг среды:

RimJoinMappingService.java


import greely.util.rimclient.util.RimRegistrationUtil;

public class RimJoinMappingService implements RimJoinMappingClient 

    @Autowired
    private Environment environment;

    ......


    if (!RimRegistrationUtil.isBulkMedicalDeviceSubmissionAndROCreationHidden(environment));
        // do this
    else
        // do that

RimRegistrationUtil.java


public static boolean isBulkMedicalDeviceSubmissionAndROCreationHidden(Environment environment) {
        String HIDE_BULK_MEDICAL_DEVICE_SUBMISSION_AND_RO_CREATION_CONFIG_PATH = "WzlUI.RIM.Registrations.hideBulkMedicalDeviceSubmissionAndROCreation";
        return environment.getBooleanConfiguration(HIDE_BULK_MEDICAL_DEVICE_SUBMISSION_AND_RO_CREATION_CONFIG_PATH, true);   
// THE ABOVE LINE IS WHERE THE NULLPOINTEREXCEPTION OCCURS
}

Сообщение об ошибке модульных тестов из-за использования флага среды:

java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
    at greely.util.common.BaseUnitTest.setup(BaseUnitTest.java:114)
    at greely.util.docs.application.rim.impl.RimJoinMappingServiceTestU.setup(RimJoinMappingServiceTestU.java:95)
    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.RunBefores.evaluate(RunBefores.java:24)
    at org.junit.rules.RunRules.evaluate(RunRules.java:20)
    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)
Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
    at greely.util.common.BaseUnitTest.initTestTarget(BaseUnitTest.java:174)
    at greely.util.common.BaseUnitTest.mockVeevaMockDeps(BaseUnitTest.java:145)
    at greely.util.common.BaseUnitTest.setup(BaseUnitTest.java:105)
    ... 24 more
Caused by: java.lang.NullPointerException
    at greely.util.rimclient.util.RimRegistrationUtil.isBulkMedicalDeviceSubmissionAndROCreationHidden(RimRegistrationUtil.java:56)
    at greely.util.docs.application.rim.impl.RimJoinMappingService.<init>(RimJoinMappingService.java:195)
    ... 31 more

Продолжение Описание:

Как видите, я определенно создаю экземпляр "Environment" в RimJoinMappingService.java с помощью автопроводки. Однако при запуске модульных тестов считается, что «среда» равна null.

...