We’ve been chatting both on Slack and delivery circle on requirements for the best and cost effective way to save and restore the DB state on a staging server. This could serve as a good starting point to manage new sample data.
In short,
testers would like to have the possibility to:
- take “snapshots” of the DB in different states, in staging servers, and be able to restore them after making changes on the server
- use sample data as an alternative to set up complex test scenarios
- do this via Github Actions
The longer version
Describing the use case
A tester wishes to test a PR on invoices, for example. To do this, the tester chooses a staging server, stages the PR and encounters several, pre-existing enterprises on that server. Currently, these mostly come from anonymized production data, and from previous manual tests. At this stage it’s not possible to know, which enterprise has the settings required to test invoices and related features.
This means, chances are, the test setup may have to be created from scratch, (i.e., manually create and set up an enterprise and, in some cases, change the tax settings of the server, as superadmin, etc). After this is done, the DB will eventually be changed due to test execution and server use. So, it is challenging for a tester to repeat the tests at a later stage, and assure reproducibility.
Saving/restoring DB “snapshots”
It would be great to be able to roll back the DB to a previous state, after some changes were made on the server. This way, tests could be repeated without needing to set up everything from scratch. So, ideally we’d come up with a process to:
- save a “snapshot” of the DB in a given state
- roll back any changes
Sample data
Manually setting up test data has the advantage of being very granular: we can create and set up the app exactly the way it is needed. However, it can be very time consuming, and with limited reproducibility (with manual set up it’s fairly easy to forget minor details).
As an alternative, generating sample data (and server setup) by running scripts to manual setup, has been implemented for some time now, but it’s only i) being used on the development environment and ii) only covers very basic test scenarios.
Extending sample data
To extend the existing sample data, we’d need to code specific test setups, basically, extending or creating files similar to this one.
Bringing it all together
Having a process to control the DB state on staging servers would allow:
- saving the DB state, after setting up complex test scenarios
- restoring to a previous DB state, would save setup time and improve reproducibility, before starting manual testing
- serve as a process to manage (new) sample data
Open questions