maddy/tests
fox.cpp 9b279735e8
Address several TODO comments
Several comments were removed since they are not worth the trouble.
A few minor issues were addressed.
Most of remaining comments got corresponding GitHub issues assigned.
2020-03-05 02:26:30 +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 Clean unnecessry whitespace 2020-03-01 02:36:54 +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
golangci-noisy.yml Add more linters to .golangci.yml 2020-02-28 02:33:48 +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 Address several TODO comments 2020-03-05 02:26:30 +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.