maddy/tests
fox.cpp e4ad3bdd5a
target/remote: Reimplement TLSA records discovery algorithm, add tests
Now it covers all edge cases described by RFC 7672.

There is an unrelated change in tests/ due to interface change in
go-mockdns.
2020-11-30 18:40:59 +03: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 MIT => GPLv3; Add license/copyright notices everywhere 2020-07-22 16:12:26 +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: Add integration/smoke test for imapsql delivery 2020-08-21 23:07:04 +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
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 Implement the integration testing library 2020-02-18 17:38:15 +03:00
smtp_autobuffer_test.go endpoint/smtp: Fix handling of empty messages in auto-buffer code 2020-10-24 21:23:12 +03:00
smtp_test.go MIT => GPLv3; Add license/copyright notices everywhere 2020-07-22 16:12:26 +03:00
stress_test.go MIT => GPLv3; Add license/copyright notices everywhere 2020-07-22 16:12:26 +03:00
t.go target/remote: Reimplement TLSA records discovery algorithm, add tests 2020-11-30 18:40:59 +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.