Answers:
库系统规则提供了用于设置环境变量的JUnit规则。
import org.junit.contrib.java.lang.system.EnvironmentVariables;
public class EnvironmentVariablesTest {
@Rule
public final EnvironmentVariables environmentVariables
= new EnvironmentVariables();
@Test
public void setEnvironmentVariable() {
environmentVariables.set("name", "value");
assertEquals("value", System.getenv("name"));
}
}
免责声明:我是系统规则的作者。
import org.junit.contrib.java.lang.system.EnvironmentVariables;
您将需要com.github.stefanbirkner:system-rules
在项目中添加依赖项。它在MavenCentral中可用。
通常的解决方案是创建一个类,该类管理对该环境变量的访问,然后您可以在测试类中进行模拟。
public class Environment {
public String getVariable() {
return System.getenv(); // or whatever
}
}
public class ServiceTest {
private static class MockEnvironment {
public String getVariable() {
return "foobar";
}
}
@Test public void testService() {
service.doSomething(new MockEnvironment());
}
}
然后,被测试的类使用Environment类而不是直接从System.getenv()获取环境变量。
在类似的情况下,我不得不编写依赖于Environment Variable的Test Case,我尝试了以下操作:
我用上述两种方法浪费了一天,但无济于事。然后,Maven救了我。我们可以通过Maven POM文件设置环境变量或系统属性,我认为这是对基于Maven的项目进行单元测试的最佳方法。以下是我在POM文件中创建的条目。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<PropertyName1>PropertyValue1</PropertyName1>
<PropertyName2>PropertyValue2</PropertyName2>
</systemPropertyVariables>
<environmentVariables>
<EnvironmentVariable1>EnvironmentVariableValue1</EnvironmentVariable1>
<EnvironmentVariable2>EnvironmentVariableValue2</EnvironmentVariable2>
</environmentVariables>
</configuration>
</plugin>
</plugins>
</build>
进行此更改之后,我再次运行了“ 测试用例”,突然所有工作都按预期进行。为了让读者了解更多信息,我在Maven 3.x中探索了这种方法,因此我对Maven 2.x不了解。
我认为最干净的方法是使用Mockito.spy()。比创建一个单独的类进行模拟和传递要轻一些。
将获取环境变量移至另一种方法:
@VisibleForTesting
String getEnvironmentVariable(String envVar) {
return System.getenv(envVar);
}
现在在您的单元测试中执行以下操作:
@Test
public void test() {
ClassToTest classToTest = new ClassToTest();
ClassToTest classToTestSpy = Mockito.spy(classToTest);
Mockito.when(classToTestSpy.getEnvironmentVariable("key")).thenReturn("value");
// Now test the method that uses getEnvironmentVariable
assertEquals("changedvalue", classToTestSpy.methodToTest());
}
我认为这尚未被提及,但是您也可以使用Powermockito:
鉴于:
package com.foo.service.impl;
public class FooServiceImpl {
public void doSomeFooStuff() {
System.getenv("FOO_VAR_1");
System.getenv("FOO_VAR_2");
System.getenv("FOO_VAR_3");
// Do the other Foo stuff
}
}
您可以执行以下操作:
package com.foo.service.impl;
import static org.mockito.Mockito.when;
import static org.powermock.api.mockito.PowerMockito.mockStatic;
import static org.powermock.api.mockito.PowerMockito.verifyStatic;
import org.junit.Beforea;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.MockitoAnnotations;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;
@RunWith(PowerMockRunner.class)
@PrepareForTest(FooServiceImpl.class)
public class FooServiceImpTest {
@InjectMocks
private FooServiceImpl service;
@Before
public void setUp() {
MockitoAnnotations.initMocks(this);
mockStatic(System.class); // Powermock can mock static and private methods
when(System.getenv("FOO_VAR_1")).thenReturn("test-foo-var-1");
when(System.getenv("FOO_VAR_2")).thenReturn("test-foo-var-2");
when(System.getenv("FOO_VAR_3")).thenReturn("test-foo-var-3");
}
@Test
public void testSomeFooStuff() {
// Test
service.doSomeFooStuff();
verifyStatic();
System.getenv("FOO_VAR_1");
verifyStatic();
System.getenv("FOO_VAR_2");
verifyStatic();
System.getenv("FOO_VAR_3");
}
}
when(System.getenv("FOO_VAR_1")).thenReturn("test-foo-var-1")
导致org.mockito.exceptions.misusing.MissingMethodInvocationException: when() requires an argument which has to be 'a method call on a mock'.
错误
将Java代码与Environment变量分离,从而提供了一个更抽象的变量读取器,您可以使用EnvironmentVariableReader实现该代码读取器以测试读取的内容。
然后,在测试中,您可以提供变量读取器的另一种实现,该实现提供您的测试值。
依赖注入可以帮助实现这一点。
这个答案的问题如何设置环境变量从Java?提供了一种更改System.getenv()中的(不可修改的)映射的方法。因此,尽管它并没有真正改变OS环境变量的值,但是它可以更改System.getenv返回的值,因此可以用于单元测试。
希望问题得到解决。我只是想告诉我解决方案。
Map<String, String> env = System.getenv();
new MockUp<System>() {
@Mock
public String getenv(String name)
{
if (name.equalsIgnoreCase( "OUR_OWN_VARIABLE" )) {
return "true";
}
return env.get(name);
}
};
即使我认为这个答案对于Maven项目是最好的,也可以通过反射来实现(在Java 8中测试):
public class TestClass {
private static final Map<String, String> DEFAULTS = new HashMap<>(System.getenv());
private static Map<String, String> envMap;
@Test
public void aTest() {
assertEquals("6", System.getenv("NUMBER_OF_PROCESSORS"));
System.getenv().put("NUMBER_OF_PROCESSORS", "155");
assertEquals("155", System.getenv("NUMBER_OF_PROCESSORS"));
}
@Test
public void anotherTest() {
assertEquals("6", System.getenv("NUMBER_OF_PROCESSORS"));
System.getenv().put("NUMBER_OF_PROCESSORS", "77");
assertEquals("77", System.getenv("NUMBER_OF_PROCESSORS"));
}
/*
* Restore default variables for each test
*/
@BeforeEach
public void initEnvMap() {
envMap.clear();
envMap.putAll(DEFAULTS);
}
@BeforeAll
public static void accessFields() throws Exception {
envMap = new HashMap<>();
Class<?> clazz = Class.forName("java.lang.ProcessEnvironment");
Field theCaseInsensitiveEnvironmentField = clazz.getDeclaredField("theCaseInsensitiveEnvironment");
Field theUnmodifiableEnvironmentField = clazz.getDeclaredField("theUnmodifiableEnvironment");
removeStaticFinalAndSetValue(theCaseInsensitiveEnvironmentField, envMap);
removeStaticFinalAndSetValue(theUnmodifiableEnvironmentField, envMap);
}
private static void removeStaticFinalAndSetValue(Field field, Object value) throws Exception {
field.setAccessible(true);
Field modifiersField = Field.class.getDeclaredField("modifiers");
modifiersField.setAccessible(true);
modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL);
field.set(null, value);
}
}
theCaseInsensitiveEnvironment
,而是具有一个字段theEnvironment
,如下所示:```envMap = new HashMap <>(); Class <?> clazz = Class.forName(“ java.lang.ProcessEnvironment”); Field theEnvironmentField = clazz.getDeclaredField(“ theEnvironment”); 字段the UnmodifiableEnvironmentField = clazz.getDeclaredField(“ theUnmodifiableEnvironment”); removeStaticFinalAndSetValue(theEnvironmentField,envMap); removeStaticFinalAndSetValue(theUnmodifiableEnvironmentField,envMap); ```
如果要检索有关Java中环境变量的信息,可以调用方法:System.getenv();
。作为属性,此方法返回一个Map,其中包含变量名作为键,变量值作为映射值。这是一个例子:
import java.util.Map;
public class EnvMap {
public static void main (String[] args) {
Map<String, String> env = System.getenv();
for (String envName : env.keySet()) {
System.out.format("%s=%s%n", envName, env.get(envName));
}
}
}
该方法getEnv()
也可以接受参数。例如 :
String myvalue = System.getEnv("MY_VARIABLE");
为了测试,我会做这样的事情:
public class Environment {
public static String getVariable(String variable) {
return System.getenv(variable);
}
@Test
public class EnvVariableTest {
@Test testVariable1(){
String value = Environment.getVariable("MY_VARIABLE1");
doSometest(value);
}
@Test testVariable2(){
String value2 = Environment.getVariable("MY_VARIABLE2");
doSometest(value);
}
}
我使用System.getEnv()获取地图,并且将其保留为字段,因此可以对其进行模拟:
public class AAA {
Map<String, String> environmentVars;
public String readEnvironmentVar(String varName) {
if (environmentVars==null) environmentVars = System.getenv();
return environmentVars.get(varName);
}
}
public class AAATest {
@Test
public void test() {
aaa.environmentVars = new HashMap<String,String>();
aaa.environmentVars.put("NAME", "value");
assertEquals("value",aaa.readEnvironmentVar("NAME"));
}
}