Important! Before you proceed, please read the EUDI Wallet Reference Implementation project description
- Project overview
- Disclaimer
- Quick reference
- Repository structure
- Using and uploading tests
- Run the ITB stack (core services)
- About the pre-seeded data
- Build the custom handler (
verifier-testbed) - Integrating the custom handler with the ITB stack
- Tests
- How to contribute
- License
This repository provides a local setup of the Interoperability Test Bed (ITB) together with custom handlers. It includes:
- The ITB Docker compose
- A sample custom handler implementation (
verifier-testbed) exposing GITB messaging and validation services - Example test artifacts and test suit you can zip and upload to the ITB UI
- A pre-seeded ITB data import that is auto-restored at startup
The released software is a initial development release version:
- The initial development release is an early endeavor reflecting the efforts of a short timeboxed period, and by no means can be considered as the final product.
- The initial development release may be changed substantially over time, might introduce new features but also may change or remove existing ones, potentially breaking compatibility with your existing code.
- The initial development release is limited in functional scope.
- The initial development release may contain errors or design flaws and other problems that could cause system or other failures and data loss.
- The initial development release has reduced security, privacy, availability, and reliability standards relative to future releases. This could make the software slower, less reliable, or more vulnerable to attacks than mature software.
- The initial development release is not yet comprehensively documented.
- Users of the software must perform sufficient engineering and additional testing in order to properly evaluate their application and determine whether any of the open-sourced components is suitable for use in that application.
- We strongly recommend to not put this version of the software into production use.
- Only the latest version of the software will be supported
- Start ITB:
cd ./docker && docker compose up -d - Get admin OTP:
docker logs -f itb-ui
custom-handlers/verifier-testbed/: Spring Boot implementation of GITB test services (messaging and validation).
Can be built and run as a Docker image. This handler is not included in the default Docker Compose.
If you want it running alongside ITB, you must add it manually (see below).example/: Contains a zip of tests that can be uploaded to the ITB.tests/: Contains the raw test assets (e.g.,testSuite1.xml,tests/testCase1.xml,tests/testCase2.xml).
Zip this folder to upload the same content to the Test Bed (the resulting zip should match
the one provided underexample/).docker/:docker-compose.yml: Composition for ITB services (gitb-redis,gitb-mysql,gitb-srv,gitb-ui).data/export.zip: Backup archive that the UI container restores on startup to pre-seed data.
- Test suit under
tests/. Zip the content of this folder to produce an uploadable package (equivalent to the one found underexample/). - Upload the zip through the ITB UI more information can be found here.
cd ./docker
docker compose up -dOn the first startup, the administrator account uses a one-time password printed in the UI container logs:
docker logs -f itb-uiUse this OTP to sign in at http://localhost:9000 and then change the password.
- The file
docker/data/export.zipis a backup archive that is restored by thegitb-uicontainer on startup. - The
gitb-uicontainer uses the following notable environment variables indocker-compose.yml:DATA_ARCHIVE_KEY=passwd(used to decrypt/restore the archive)AUTOMATION_API_ENABLED=true
Create the necessary image for verifier-testbed information can be found in the verifier-testbed README
The provided docker-compose.yml does not include the verifier-testbed custom handler. To run it alongside ITB:
- Build the handler image (see README here).
- Extend
docker/docker-compose.ymlwith a new service, for example:verifier-testbed: image: local/verifier-testbed container_name: verifier-testbed restart: unless-stopped ports: - "8080:8080" depends_on: gitb-srv: condition: service_started - Recreate the stack:
docker compose up -d
Tests are organized as follows:
testSuite1.xml: Contains definitions of the metadata, actors and includes the test cases to be loaded by ITB.tests/: Contains the test cases.tests/testCase1.xml: A test case that requires the custom handler to be running.tests/testCase2.xml: A test case that runs only with the basic XML test structure (no custom handlers).`
- Create a new XML file under
tests/with a unique name and id. - Add the new file id reference to
testSuite1.xmlunder the already existing test cases. - Zip the content of the
./testfolder to produce an uploadable package. - Upload the zip through the ITB UI.
- Follow the instructions on the UI to update the already uploaded tests with the new ones.
- Create a zip file containing the
testSuite1.xmlandtests/folder. - Upload the zip file to the ITB UI.
We welcome contributions to this project. To ensure that the process is smooth for everyone involved, follow the guidelines found in CONTRIBUTING.md.
Copyright (c) 2025-2026 European Commission
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.