maddy/tests
2020-05-23 02:55:45 +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
dovecot_sasl_test.go tests: Add interop test for dovecot_sasld using chasquid 2020-05-23 02:55:45 +03:00
dovecot_sasld_test.go tests: Add interop test for dovecot_sasld using chasquid 2020-05-23 02:55:45 +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 tests: Improve check/spf tests 2020-05-04 00:02:59 +03:00
t.go tests: Add interop test for dovecot_sasld using chasquid 2020-05-23 02:55:45 +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.