1
0
Fork 0
mirror of https://github.com/foxcpp/maddy.git synced 2025-04-06 06:27:38 +03:00
maddy/tests
fox.cpp 8834501196
tests: Fix cover_test.go deadlock on Go 1.20
Test code seems to hang somewhere after maddy.Run if
os.Stderr, os.Stdout are not consumed.
2023-08-23 16:11:46 +03:00
..
testdata Add integration tests suite for some code paths 2020-02-22 23:06:20 +03:00
basic_test.go Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
build_cover.sh tests: Allow to specify the go executable to use 2021-07-10 22:40:50 +03:00
conn.go tests: Change Conn.Expect to not return an error 2021-08-28 15:43:20 +03:00
cover_test.go tests: Fix cover_test.go deadlock on Go 1.20 2023-08-23 16:11:46 +03:00
dovecot_sasl_test.go Merge branch 'master' into dev 2022-07-09 15:00:46 +03:00
dovecot_sasld_test.go Merge branch 'master' into dev 2022-07-09 15:00:46 +03:00
gocovcat.go Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
golangci-noisy.yml Add more linters to .golangci.yml 2020-02-28 02:33:48 +03:00
imap_test.go Implement auth_map and storage_map at endpoint level 2023-03-12 13:52:04 +03:00
imapsql_test.go Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
issue327_test.go Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
limits_test.go Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
lmtp_test.go Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
mta_test.go Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
README.md Implement the integration testing library 2020-02-18 17:38:15 +03:00
replace_addr_test.go Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
run.sh tests: Allow to specify the go executable to use 2021-07-10 22:40:50 +03:00
smtp_autobuffer_test.go Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
smtp_test.go Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
stress_test.go Fix a few linter warnings + gofmt + goimports 2022-06-23 14:34:57 +03:00
t.go tests: Use a non-127.0.0.1 IP for tests 2021-07-12 17:28:49 +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.