I am trying to close these streams since we know in the test the
ComplexData.data is an InputStream
teleivo <teleivo@users.noreply.github.com>
aff6a214fe2a2ed3fe6da29799fc12eef21e94a2
TRUNK-5816 Disable failing HandlerTests on Windows
only for now. We need to replicate what developers are seeing on Windows
see discussion at https://talk.openmrs.org/t/tests-failing-in-core-on-windows/29471/16
the tests still run in our pipelines (Travis/Bamboo) which ensures that
the behaviour stays the same. This will at least unblock developers on
Windows until we find the root cause.
teleivo <teleivo@users.noreply.github.com>
d5585afd4142a3facb1d12340e0c4588f0db6565
TRUNK-5816 powermock reflect is enough for api tests
to set the OpenmrsConstants for more info refer to
bc4adc1efaa488c889d3fd2ab61f8178b7e704b4
we should prevent new contributions from adding tests written with
PowerMock
We still rely on powermock-api-mockito2 to set the
public static final String OPENMRS_VERSION
of OpenmrsConstants during testing.
There might also be a way to replace this usage and simply use
reflection. That could be investigated at a later point.
Most importantly for our migration to JUnit 5 is that we prevent JUnit 4
tests (and therefore also PowerMock tests) from entering openmrs-core.
We should in general avoid reaching for services via the static Context
methods since that makes testing in isolation hard. Springs dependency
injection allows us to wonderfully configure our services during testing
and production. This is what we need to leverage instead of static
methods that need PowerMock during testing. This also just hides the
fact that a Service has certain dependencies and is an easy way out in
designing our system.