I have a piece of Java code which uses an environment variable and the behaviour of the code depends on the value of this variable. I would like to test this code with different values of the environment variable. How can I do this in JUnit?
|
The usual solution is to create a class which manages the access to this environmental variable, which you can then mock in your test class.
The class under test then gets the environment variable using the Environment class, not directly from System.getenv(). |
|||||
|
|
|
Decouple the Java code from the Environment variable providing a more abstract variable reader that you realize with an EnvironmentVariableReader your code to test reads from. Then in your test you can give an different implementation of the variable reader that provides your test values. Dependency injection can help in this. |
|||
|
|
|
This answer to the question How do I set environment variables from Java? provides a way to alter the (unmodifiable) Map in System.getenv(). So while it doesn't REALLY change the value of the OS environment variable, it can be used for unit testing as it does change what System.getenv will return. |
|||
|
|
|
Well you can use the setup() method to declare the different values of your env. variables in constants. Then use these constants in the tests methods used to test the different scenario. |
|||
|
|
|
If you want to retrieve informations about the environment variable in Java, you can call the method :
The method
For testing, I would do something like this :
|
|||
|
|