Tests are an important part of the development work to ensure the functionality of the code. This wiki page covers the guideline regarding unit tests and states difficulties to define integration tests for new devices.
Unit tests are used to test the correct behavior of functions. The Open eCard project uses for test creation the TestNG Framework which is inspired by JUnit and NUnit but provides new functionalities and is easier to use.
Test files have to be placed into the separate source tree src/test
relative to the root directory of the project or module. The Java files should be placed into src/test/java
while supporting files like images, XML files or whatever the test requires has to be located in src/test/resources
. Most Java IDEs have integrated support for this structure and create it automatically but if you just use a editor without project support you should know this. In the java
directory the same package structure as in the source tree should be applied.
There is no strict rule which methods have to be tested. Here we give a brief overview of thing which should be tested and which not.
@Test(expectedExceptions=...)
is legit in case of a test with wrong data.There are some aspects of the test development which can not be covered by a simple unit test because they require for instance a specific card attached to the test system or a special network configuration or the ability to interact with a certain communication endpoint. It is not possible to automate all of these things.
The developer team endeavors to keep the tests running on all systems. This means tests requiring e.g. a direct http connection are rejected because there is the possibility that a developer works behind a proxy so the test is probably not recognizing this and fails because a connection could not be established.
Test with cards or specific types of readers are also not recommend or wanted because you can not expect anyone to own a specific card or reader. But you probably may want to test your implemented behavior locally with your card or reader so what to do in such cases?
At first the details should be discussed with the responsible release manager and the testers. Besides of this you are free to write a unit test and disable the test per default with the annotation @Test(enabled=false)
which means the test is not executed if someone invokes the tests.
Other tests have to be done totally by hand in case there are some specifications for the UI or the correct ResultMinors in case of a failed authentication with the German eID card. Such tests are described in the Quality Management.