SVRUnit
  • Welcome
  • Installation
    • Installation
    • First Run
  • Use Cases
    • Verify Server
    • Verify Server for Project
    • Post Deployment Tests
    • Unit Test Docker Image
    • Testing your frameworks
  • Configuration
    • Configuration
  • Commands
    • list:suites
    • list:groups
    • test
  • Assertions
    • Command
    • Directory Exists
    • File Exists
    • File Content
    • File Permissions
    • PHP INI
    • PHP Modules
  • Reports
    • HTML Report
    • JUnit Report
  • Resources
    • svrunit.com
    • Github
Powered by GitBook
On this page

Was this helpful?

  1. Use Cases

Unit Test Docker Image

PreviousPost Deployment TestsNextTesting your frameworks

Last updated 2 years ago

Was this helpful?

SVRUnit allows you to fully test Docker Images or Containers.

This means, you can use it to automatically verify that your built images work properly.

With (one of our projects) we build > 180 different images automatically with pipelines. SVRUnit helps us to verify all kinds of developer features, just like the correct installation of XDebug, switching of PHP Versions, correct file permission, Node versions, NVM usage, SSH users and way more.

You can indeed build some rock-solid Docker images with more confidence by running unit tests before pushing them to your repository.

To get you started, here is a link to a single Docker image test. You can see that lots of tests from different folders are included. Every single image is also started with different environment variables that launch the images with different PHP Versions, with or without Xdebug and way more.

Here is the link:

The tests itself can be found in these subfolders:

https://github.com/dockware/dockware/blob/master/tests/svrunit/suites/dev/6.4.16.1.xml
https://github.com/dockware/dockware/tree/master/tests/svrunit/tests
dockware.io