This project builds the following artifacts:
- A docker image that can be used to run this application stand-alone.
- A .jar file with only the Frank configuration of this project. The .jar file can be uploaded in het-integratie-platform, see https://github.com/wearefrank/het-integratie-platform.
We use conventional commits, see https://www.conventionalcommits.org/en/v1.0.0/. Releases are created automatically by GitHub Actions, see .github/workflows/ci.yaml and .github/workflows/release.yaml.
Please take care to write meaningful commit messages that result in meaningful entries in CHANGELOG.md. Here is an example of the commit message for a breaking change:
chore: example of a chore that breaks
BREAKING: This is what breaks
This commit message appears as follows in the release notes:
A breaking change means that this version is not backwards compatible with the previous release. A breaking change should result in a major release (first number of semantic version is incremented). Please note the following:
- The word BREAKING should appear on the last line of the commit message.
- The word BREAKING is followed by a
:
and a description. This description appears in the release notes in a bullet that explains what is breaking. - The commit type (e.g. chore) is still relevant for breaking changes. This information appears in the release notes in the same way as a non-breaking change.
- For non-breaking changes, omit the line with BREAKING and make a commit message like the first line shown.
Here is a checklist for testing the CI/CD.
- Testing goes best when you make hot fixes on the main branch. Check with the team that you are allowed to do this.
- Do a commit on main that has a commit message starting with
fix:
. The following should happen:- The pipeline succeeds - this checks all authorizations are in place.
- A commit with a message starting with
chore:
has been added automatically. - The extra commit updates files
src/main/resources/BuildInfo.properties
,configurations/xxllnc/BuildInfo.properties
,publiccode.yaml
andCHANGELOG.md
. - These files should have trustworthy contents - speaks for itself.
- On GitHub, there is a tag for the new version that starts with
v
. For example if the new release is3.2.1
then the tag should bev3.2.1
. You can get this tag usinggit fetch origin
on the command line. - The docker image for the release has been created on http://www.dockerhub.com. The
latest
tag should have been updated - creation time should be the current time. Depending on the type of release, the3.2.1
, the3.2
or the3
tags should be the current date. - Check on dockerhub that tags that should not have been updated do not have the current time as creation time.
- Run the docker image using
docker run -p 8080:8080 wearefrank/xxllnc:3.2.1
. Check the name of the docker container you started usingdocker ps -a
. Login to the docker container usingdocker exec -it <container name> bash
. Check that/opt/frank/resources/BuildInfo.properties
and/opt/frank/configurations/xxllnc/BuildInfo.properties
contain the right version and the right date.
- Check a breaking change like above. This should update the major version.
- Do a commit with [skip ci] in the commit message. It should not make a release and it should not push a docker image.
- Make a pull request. Check that no release is made and that no docker image is pushed.
We like to stay up-to-date with the latest version of the Frank!Framework to get the latest features, improvements, bug fixes and security patches. For stability reasons we do not want to use the "latest" tag for this. Instead we periodically(~weekly) do a manual bump to the latest available snapshot build of Frank!Framework at that time. Mainly because we use custom code that needs to be manual checked and updated with changes made in the Frank!Framework.
Execute the following steps when bumping the Frank!Framework version:
- Look up the latest framework snapshot build on DockerHub - Frank!Framework. The format of the tag should be:
<major>.<minor>-<date>.<build>
. For example: 7.9-20230907.223421. - Replace the value of
FF_VERSION
in theDockerfile
with the new tag. - Replace the default value for
FF_VERSION
underservices.frank.build.args
indocker-compose.frank.dev.yaml
with the new tag. NOTE: Watch out to not replace the '-' in front of the tag: ${FF_VERSION:-} - Replace the value of
ff.version
infrank-runner.properties
with the new tag. - Start with the
Frank!Runner
to automatically replace the./src/main/configuration/<configuration-name>/FrankConfig.xsd
and./src/main/configuration/FrankConfig.xsd
with the newer version. You can stop the Frank!Runner once the files are replaced. Note that currently the Frank!Runner will also addFrankConfig.xsd
to the.gitignore
file. Make sure to revert the change to.gitignore
. - Run the e2e testsuite on SoapUI and be sure everything works fine.
- Commit you changes on a branch with as message:
build(dependencies): bump f!f version to <new tag>
. Create a PR to have you changes merged to master.
- Navigate to "docusaurus" subfolder with
cd ./docusaurus
. - Update dependencies with
npm i @docusaurus/core@latest @docusaurus/preset-classic@latest @docusaurus/module-type-aliases@latest @docusaurus/tsconfig@latest @docusaurus/types@latest
.
- Navigate to "docusaurus" subfolder with
cd ./docusaurus
. - Install dependencies with
npm install
. - Serve Docusaurus webserver locally with
docusaurus start
. By default it is served athttp://localhost:3000/
. - Basic guide on how to use Docusaurus and a styleguide can be found at
./docusaurus/docs/_README.md
.
Out-of-the-box SoapUI saves the dynamic properties set during execution of the tests to the project file. Having these dynamic properties value changes in the project file, makes it harder for Git to merge without a merge conflict. Git does not know the context of the changes and will simply see local and incoming changes to the same part of the project file, leading to a merge conflict that is hard to manually solve due to the sheer size of the projec t file. To combat this, we added a save script to the project that automatically clears all dynamic property values when saving the project, so that only functional changes end up in the project file.
Unfortunatly Load and Save scripts are disabled by default in SoapUI. You can enable them by unchecking Disable the Load and Save scripts under File -> Preferences -> Global Security Settings
.
Additionally, to help out diff tools, also enable the option Pretty Print Project Files and disable the option Cache WSDLs under File -> Preferences -> WSDL Settings
.
If you are gonna use the mock services, don't forget to start the Document API Mock, ZDS-VrijeBerichten-Mock, ZDS-BeantwoordVraag-Mock and ZDS-OntvangAsynchroon-Mock services. And be sure the endpoints in DeploymentSpecifics.properties file under Resources folder are pointing the mock urls.
- Put dynamic properties(temporary values during test execution) in the "Properties" TestStep. Their values get cleared when saving the project.
- Put static properties in the Custom Properties section of TestCase, TestSuite or Project.
- When you open the SoapUI project in a new version of SoapUI, Save the project and create a seperate PR for any changes in the project file.
- Try to keep to one change at a time and keep them small.
- Whenever possible, avoid combining changes that both add and remove lots of things.
The docker-compose development environment is designed to be flexible and composable. This prevents the need for developers to run the entire stack eventhough their work requires only a small part of the stack. For this we make use of a docker-compose feature that merges a given array of docker-compose files together. Simply provide a -f ./docker-compose.<application>.yaml
argument for each docker-compose file you wish to include in the docker-compose up
command.
For example: docker compose -f ./docker-compose.frank.dev.yaml -f ./docker-compose.frank.postgres.yaml -f ./docker-compose.frank.dev.utrecht.yaml -f ./docker-compose.frank.smtp.yaml up --watch --build --force-recreate
.
WARNING: It is important to use
localhost
instead of the usuallocalhost
. The url-validator that is used by most components with invalidate any urls that contain only a hostname. It requires a full canonical domain name.
The webgui's of the different components are only accesible through a dedicated Nginx reverse-proxy at localhost:9000
.
Url | Component |
---|---|
localhost:9000/zaakbrug/ | Openforms2xxllnc. |
localhost:9000/openforms/ | Open Formulieren. |
Most components also have their own Nginx proxy that is exposed to the Docker host. This is mostly to make use of X-Sendfile functionality and to more closely simulate production infrastructure. X-Sendfile allows applications to redirect and delegate the request for a file to the webserver. It is generally a much more performant way to transfer files.
Url | Component |
---|---|
localhost:8080/ | Openforms2xxllnc. |
localhost:9003/ | Open-forms. |
Contains an instance of Openforms2xxllnc built locally from source and a Nginx reverse proxy is used to provide access to the different components in the stack. By default Nginx is exposed on port 9000
.
Openforms2xxllnc is also exposed on localhost:8080/
By default a filebased H2 database is used for storing data. To facilitate easy swapping between development with docker-compose and the Frank!Runner, the default mount for the database file is ../frank-runner/data
. Using the same database file between the Frank!Runner and docker-compose prevents errors surrounding duplicate identifiers while running tests against OpenZaak. If you don't have the Frank!Runner installed, you can use ./data
that is commented out instead or add a volume for it.
Instead of the default filebased H2 database, a Postgresql database can be used too. Adding -f ./docker-compose.frank.postgres.yaml
to your docker-compose up
command is all that is needed for this.
For example: docker-compose -f ./docker-compose.frank.dev.yaml -f ./docker-compose.frank.postgres.yaml up --build
Note: Database data is not seamlessly shared with the Frank!Runner out-off-the-box. In
src/webapp/META_INF/context.xml
you can comment out the H2 configuration and uncomment the Postgress one. The Frank!Runner will then use the Postgres database used in the docker-compose.
To aid with debugging you can use PgAdmin4 to browse/edit the Postgres database. PgAdmin4 is included and pre-configured in docker-compose.frank.postgres
and can be enabled by adding --profile pgadmin
to your docker-compose up
command.
The PgAdmin4 web-GUI is exposed on port 5050
, so can be accessed with localhost:5050
.
default login:
email: [email protected]
password: admin
For example: docker-compose -f ./docker-compose.frank.dev.yaml -f ./docker-compose.frank.postgres.yaml --profile pgadmin up --build
TODO
Open-forms can be accessed from localhost:9000/openforms/
Open-forms is also exposed on localhost:9003/
TODO
Contains a Sentry instance for monitoring applications in the environment. Particularly useful for troubleshooting OpenZaak, Open-forms, etc.
The Sentry GUI can be accessed at localhost:9500
.
Running Sentry for the first time requires some configuration.
TODO: Automate configuration
- Makes sure the
docker-compose.sentry.dev.yaml
is included in yourdocker-compose up
and is running. - Open a CMD or Powershell in this repository folder and run
docker-compose -f ./docker-compose.sentry.dev.yaml exec sentry sentry upgrade
. - After approx. a minute you will get asked if you want to create a user account. Choose
y
and hit enter. - We use the following defaults: email=
[email protected]
, password:admin
. - Once finished, run the command:
docker-compose -f ./docker-compose.sentry.dev.yaml restart sentry
to restart the sentry container. - Open a browser and navigate to
localhost:9500
orlocalhost:9500
. You should see the Sentry login page. Login we the email and password from step 4. - Make sure the root url is
http://localhost:9500
and choosePlease keep my usage information anonymous
under Usage Statistics. - In the top-right corner hit the
add...
button and chooseproject
. - Select the appropriate platform. For OpenZaak and Open-forms this will be
Django
. Change the project name appropriately and hit theCreate Project
button. - On the next page look for the word
dsn
and copy the value. - In the appropriate docker-compose file, add the following to the environment variables of the
open-zaak
and/oropen-forms
service:
- SENTRY_DSN=<Your copied DSN from step 10>
- SDK_SENTRY_DSN=<Your copied DSN from step 10>
- Repeat step 8 - 11 for each application you want to monitor.