maddy/tests
2020-02-22 23:06:20 +03:00
..
testdata Add integration tests suite for some code paths 2020-02-22 23:06:20 +03:00
basic_test.go Add integration tests suite for some code paths 2020-02-22 23:06:20 +03:00
build_cover.sh Implement the integration testing library 2020-02-18 17:38:15 +03:00
conn.go Add integration tests suite for some code paths 2020-02-22 23:06:20 +03:00
cover_test.go Implement the integration testing library 2020-02-18 17:38:15 +03:00
gocovcat.go Implement the integration testing library 2020-02-18 17:38:15 +03:00
limits_test.go Add integration tests suite for some code paths 2020-02-22 23:06:20 +03:00
README.md Implement the integration testing library 2020-02-18 17:38:15 +03:00
run.sh Implement the integration testing library 2020-02-18 17:38:15 +03:00
smtp_test.go Add integration tests suite for some code paths 2020-02-22 23:06:20 +03:00
t.go Add integration tests suite for some code paths 2020-02-22 23:06:20 +03:00

maddy integration testing

Tests structure

The test library creates a temporary state and runtime directory, starts the server with the specified configuration file and lets you interact with it using a couple of convenient wrappers.

Running

To run tests, use go test -tags integration in this directory. Make sure to have a maddy executable in the current working directory. Use -integration.executable if the executable is named different or is placed somewhere else. Use -integration.coverprofile to pass -test.coverprofile your_value.RANDOM to test executable. See ./build_cover.sh to build a server executable instrumented with coverage counters.