maddy/tests
2021-06-27 15:26:04 +00:00
..
testdata Add integration tests suite for some code paths 2020-02-22 23:06:20 +03:00
basic_test.go tests: Update TestBasic to expect CHUNKING extension 2020-07-24 15:19:58 +03:00
build_cover.sh Implement the integration testing library 2020-02-18 17:38:15 +03:00
conn.go tests: Remove unused Conn.error 2020-08-23 15:51:11 +03:00
cover_test.go MIT => GPLv3; Add license/copyright notices everywhere 2020-07-22 16:12:26 +03:00
dovecot_sasl_test.go MIT => GPLv3; Add license/copyright notices everywhere 2020-07-22 16:12:26 +03:00
dovecot_sasld_test.go tests: Check for chasquid executable existance before starting test server 2020-12-13 19:48:42 +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
imapsql_test.go tests: Fix some tests assuming a particular result of rDNS lookup of 127.0.0.1 2020-12-12 18:51:05 +03:00
issue327_test.go Fix two issues in handling of DSN messages in SMTP pipeline and checks 2021-01-16 21:08:39 +03:00
limits_test.go MIT => GPLv3; Add license/copyright notices everywhere 2020-07-22 16:12:26 +03:00
lmtp_test.go config/module: Always pass the fully qualified module name to constructor 2020-11-30 14:57:49 +03:00
mta_test.go target/remote: Force MX domain to be FQDN when looking up TLSA records 2020-12-24 14:07:25 +03:00
README.md Implement the integration testing library 2020-02-18 17:38:15 +03:00
replace_addr_test.go config/module: Always pass the fully qualified module name to constructor 2020-11-30 14:57:49 +03:00
run.sh tests: Fix run.sh to return non-zero status on failed tests 2020-12-11 23:46:34 +03:00
smtp_autobuffer_test.go tests: Fix remaining cases of tests depending on rDNS name of 127.0.0.1 2020-12-13 19:14:19 +03:00
smtp_test.go add max_header_size, check header size in smtp session 2021-06-27 15:26:04 +00:00
stress_test.go MIT => GPLv3; Add license/copyright notices everywhere 2020-07-22 16:12:26 +03:00
t.go tests: Log when server is being killed with SIGKILL due to a hung up 2021-01-16 21:15:17 +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.