1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-17 14:37:02 +00:00
Files
go-chasquid-smtp/test
Alberto Bertogli 74e7c96031 aliases: Drop characters when parsing, and support suffix-specific aliases
Today, when a user sets an alias with drop characters and/or suffixes,
those go unused, since we always "clean" addresses before alias
resolution.

This results in unexpected and surprising behaviour, and it's not
properly documented either.

This patch resolves this unexpected behaviour as follows:

- Drop characters are ignored, both at parsing time and at lookup time.
- Lookups are done including the suffixes first, and if that results in
  no matches, they are retried without suffixes.

This results in aliases working more intuitively for the most common use
cases: of users wanting to have different aliases for specific suffixes,
and not having to care for drop characters.

Hooks can be used to get different behaviour if needed, since the first
lookup is done with the address as-is.

Thanks to znerol@ (lo+github@znerol.ch) for reporting this, and the
discussion on how to fix it, in
https://github.com/albertito/chasquid/issues/41.
2023-09-24 09:33:01 +01:00
..
2018-03-26 01:58:47 +01:00

Testing

Go tests

All Go packages have their own test suite, which provides easy and portable tests with decent enough coverage.

Integration tests

In the test/ directory there is a set of end to end integration tests, written usually in a combination of bash and Python 3.

They're not expected to be portable, as that gets impractical very quickly, but should be usable in most Linux environments.

They provide critical coverage and integration tests for real life scenarios, as well as interactions with other software (like Exim or Dovecot).

Dependencies

The tests depend on the following things being installed on the system (listed as Debian package, for consistency):

  • msmtp
  • util-linux (for /usr/bin/setsid)

Some individual tests have additional dependencies, and the tests are skipped if the dependencies are not found:

  • t-02-exim Exim interaction tests:
    • gettext-base (for /usr/bin/envsubst)
    • The exim binary available somewhere, but it doesn't have to be installed. There's a script get-exim4-debian.sh to get it from the archives.
  • t-11-dovecot Dovecot interaction tests:
    • dovecot
  • t-15-driusan_dkim DKIM integration tests:
    • The dkimsign dkimverify dkimkeygen binaries, from driusan/dkim (no Debian package yet).
  • t-18-haproxy HAProxy integration tests:
    • haproxy
  • t-19-dkimpy: dkimpy integration tests:
    • python3-dkim

For some tests, python >= 3.5 is required; they will be skipped if it's not available.

Most tests depend on the $HOSTALIASES environment variable being functional, and will be skipped if it isn't. This works by default in most Linux systems, but note that the use of systemd-resolved can prevent it from working properly.

Stress tests

Also in the test/ directory there is a set of stress tests, which generate load against chasquid to measure performance and resource consumption.

While they are not exhaustive, they are useful to catch regressions and track improvements on the main code paths.

Fuzz tests

Some Go packages also have instrumentation to run fuzz testing against them, using the Go native fuzzing support.

This is critical for packages that handle sensitive user input, such as authentication encoding, aliases files, or username normalization.

Command-line tool tests

Each command-line tool has their own set of tests, see the test.sh file on their corresponding directories.

Docker

The test/Dockerfile can be used to set up a suitable isolated environment to run the integration and stress tests.

This is very useful for automated tests, or running the integration tests in constrained or non supported environments.

Automated tests

There are two sets of automated tests which are run on every commit to upstream, and also weekly:

  • Github Actions, configured in the .github directory, runs the Go tests, the integration tests, checks for vulnerabilities, and finally also builds the public Docker images.

  • Cirrus CI, configured in the .cirrus.yml file, runs Go tests on FreeBSD.

Coverage

The test/cover.sh script runs the integration tests in coverage mode, and produces a code coverage report in HTML format, for ease of analysis.

The target is to keep coverage of the chasquid binary above 90%.