Project

General

Profile

How to Unit Test in Z2 » History » Version 8

Henning Blohm, 16.08.2021 10:53

1 1 Henning Blohm
h1. How to Unit Test in Z2
2
3 8 Henning Blohm
(Applies to z2 Version 2.9 and later)
4
5 1 Henning Blohm
The *Z2 Jupiter* of "z2-base.base":http://redmine.z2-environment.net/projects/z2-base/repository/base?rev=master allow to run in-system tests on z2, from anywhere where you can run JUnit tests. To learn more about the JUnit testing framework, please visit http://www.junit.org.
6
7
In-system tests are ordinary unit tests that run within the server environment. Running tests within the running environment is also called integration testing. 
8
9
Standard JUnit tests run in an environment that often has little to do with the tested code's "native" environment, other than seeing the same types. Anything else, database connectivity, domain test data, component and naming abstractions (e.g. JNDI) need to be firstly abstracted out from the tested code and secondly _mocked_, that is, simulated one way or the other, into the test assembly of things. 
10
11
While that has the advantage of a defined, clean-room test bed, for higher-level components this can become unreasonable and assuring the correctness of the mocked up environment becomes a testing issue on its own.
12
13
The z2 Jupiter feature is built on the "JUnit 5":https://junit.org/junit5/ API that succeeded the "JUnit 4":https://junit.org/junit4/ API that is the underlying foundation of the previously promoted z2Unit feature (see [[How to z2Unit]]). It is recommended that you use the z2 Jupiter implementation today starting with z2 Version 2.9.
14
15
The foundation Z2 Jupiter is the Z2 Jupiter Test Engine implementation that delegate test discovery and test execution to a running z2 server runtime. That is, although JUnit believes to run a locally defined test class, the actual test runs in another process, running the methods and reporting results corresponding to the structure of the local test implementation (which matches its server-side equivalent).
16
17
h2. Using z2 Jupiter
18
19
Using z2 Jupiter is as easy as referencing the module *com.zfabrik.dev.z2jupiter* from the test module and adding one more annotation to your test class: "Z2JupiterTestable":http://www.z2-environment.net/javadoc/com.zfabrik.dev.z2jupiter!2Fjava/api/com/zfabrik/dev/z2jupiter/Z2JupiterTestable.html.
20
21 4 Henning Blohm
Z2 Jupiter uses itself for testing. You can see a simple "Hello World" test at z2-base:source:base|com.zfabrik.dev.z2jupiter/java/src.test/com/zfabrik/dev/z2jupiter/test/HelloZ2JupiterTest.java:
22 1 Henning Blohm
23 2 Henning Blohm
<pre><code class="java">
24
package com.zfabrik.dev.z2jupiter.test;
25 1 Henning Blohm
26 2 Henning Blohm
import org.junit.jupiter.api.Test;
27 1 Henning Blohm
28 2 Henning Blohm
import com.zfabrik.dev.z2jupiter.Z2JupiterTestable;
29
import com.zfabrik.dev.z2jupiter.impl.Z2JupiterImpl;
30 1 Henning Blohm
31 2 Henning Blohm
@Z2JupiterTestable(componentName = Z2JupiterImpl.MODULE_NAME)
32
public class HelloZ2JupiterTest {
33
	
34
	@Test
35
	public void helloZ2Jupiter() {
36
		System.err.println("Hello Z2 Jupiter");
37
	}
38
}
39
</code></pre>
40 1 Henning Blohm
41 5 Henning Blohm
Check out more test examples in z2-base:source:base|com.zfabrik.dev.z2jupiter/java/src.test/com/zfabrik/dev/z2jupiter/test .
42
43 2 Henning Blohm
If you want to use Z2 Jupiter in your projects for tests implemented under *java/src.test*, make sure to have the framework referenced in *java/z.properties* like this:
44 1 Henning Blohm
45 2 Henning Blohm
<pre><code class="bash">
46
java.testReferences=\
47
	com.zfabrik.dev.z2jupiter,\
48
</code></pre>
49 1 Henning Blohm
50
h2. To see how this works in Eclipse
51
52
# Follow the "Up in 5 minutes" trail [[Step_2_-_Install_and_run_in_5_minutes]] to make sure you understand how to setup z2 and Eclipse.
53
# Create a Z2 Java project my_tests in your Eclipse workspace. Make sure it is armed.
54 3 Henning Blohm
# Add a test reference to *com.zfabrik.dev.z2jupiter* to your Java component, say *my_tests/java*. 
55 1 Henning Blohm
# Create a test class in src.test of your Java component like the following:
56
<pre><code class="java">
57
package mytest;
58
59 3 Henning Blohm
import org.junit.jupiter.api.Test;
60 1 Henning Blohm
61 3 Henning Blohm
import com.zfabrik.dev.z2jupiter.Z2JupiterTestable;
62
63
@Z2JupiterTestable(componentName="my_tests/java")
64 1 Henning Blohm
public class AZ2UnitTest {
65
66
    @Test
67
    public void someTestMethod() {  
68 7 Henning Blohm
        System.out.println("Hello World!");
69 1 Henning Blohm
    }
70
}
71
</code></pre>
72
# Resolve using the Eclipsoid plugin (see above)
73
# Right-click and choose Run-As / JUnit Test
74
75
h2. Using and Configuring z2Unit outside of the IDE
76
77
Note that resolving the dependencies and synchronizing the runtime is an important prerequisite to running a z2Unit Unit Test class. You need to have all dependencies of the test class resolved so that JUnit can resolve the test class locally (although all the action will happen elsewhere) and you need to have synchronized so that the matching definitions are found on the server side.
78
79 6 Henning Blohm
If you want to automate tests and cannot rely on the Eclipsoid to have a suitable class path, you should use the "com.zfabrik.dev.util/jarRetriever":http://www.z2-environment.eu/v21doc#Retrieving%20jars%20from%20Z2 tool to retrieve all required dependencies. In that case, you can run Z2 Jupiter tests just as any unit tests also from an ANT script for example. A typical application is to run Z2 Jupiter integration tests as part of your test automation effort.
80 1 Henning Blohm
81 6 Henning Blohm
See in particular [[How to download jars from Z2]] on how to integrate jar retrieving with ANT.
82 1 Henning Blohm
83 6 Henning Blohm
The execution of a Z2 Jupiter test requires the test client, which is the local JUnit runtime invoked by ANT (or your IDE as above) invoking the *Z2 Jupiter Test Engine*, to connect via HTTP to the Z2 application server. If you run tests on the same operating system instance the application runs on, this works by default by reaching out to localhost. If your application server is on a different machine though, you will want to configure that accordingly.
84 1 Henning Blohm
85 6 Henning Blohm
For example, you could define a different URL when configuring the @Z2JupiterTestable@ annotation. 
86
87 1 Henning Blohm
That is not practical when running test automatically however, as you would not want to change application code for that purpose.
88
89 6 Henning Blohm
Instead you can specify essentially the same configuration that the @Z2JupiterTestable@ annotation holds by setting any of the system properties or environment variables shown belown before test execution. For example in your ANT script.
90 1 Henning Blohm
91 6 Henning Blohm
Properties that control the behavior of the @Z2JupiterTestable@, and that may be specified as system properties or via the configuration file are shown in the following table:
92 1 Henning Blohm
93 6 Henning Blohm
|_. Property Name |_. Environment Variable |_. Property Meaning |
94
| com.zfabrik.dev.z2jupiter.url | Z2_JUPITER_URL | URL to send the test request to. Defaults to @http://localhost:8080/z2unit.jupiter/run@. |
95 1 Henning Blohm
96
h2. References
97
98 6 Henning Blohm
Read on in the "Javadocs":http://www.z2-environment.net/javadoc/com.zfabrik.dev.z2jupiter!2Fjava/api/com/zfabrik/dev/z2jupiter/Z2JupiterTestable.html. for more details.