mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 05:07:38 +03:00
87 lines
2.4 KiB
Go
87 lines
2.4 KiB
Go
//go:build cover_main
|
|
// +build cover_main
|
|
|
|
/*
|
|
Maddy Mail Server - Composable all-in-one email server.
|
|
Copyright © 2019-2020 Max Mazurov <fox.cpp@disroot.org>, Maddy Mail Server contributors
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package tests
|
|
|
|
/*
|
|
Go toolchain lacks the ability to instrument arbitrary executables with
|
|
coverage counters.
|
|
|
|
This file wraps the maddy executable into a minimal layer of "test" logic to
|
|
make 'go test' work for it and produce the coverage report.
|
|
|
|
Use ./build_cover.sh to compile it into ./maddy.cover.
|
|
|
|
References:
|
|
https://stackoverflow.com/questions/43381335/how-to-capture-code-coverage-from-a-go-binary
|
|
https://blog.cloudflare.com/go-coverage-with-external-tests/
|
|
https://github.com/albertito/chasquid/blob/master/coverage_test.go
|
|
*/
|
|
|
|
import (
|
|
"flag"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/foxcpp/maddy"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
// -test.* flags are registered somewhere in init() in "testing" (?).
|
|
|
|
// maddy.Run changes the working directory, we need to change it back so
|
|
// -test.coverprofile writes out profile in the right location.
|
|
wd, err := os.Getwd()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
flag.Parse()
|
|
|
|
app := cli.NewApp()
|
|
// maddycli wrapper registers all necessary flags with flag.CommandLine by default
|
|
ctx := cli.NewContext(app, flag.CommandLine, nil)
|
|
err = maddy.Run(ctx)
|
|
code := 0
|
|
if ec, ok := err.(cli.ExitCoder); ok {
|
|
code = ec.ExitCode()
|
|
}
|
|
|
|
if err := os.Chdir(wd); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Silence output produced by "testing" runtime.
|
|
_, w, err := os.Pipe()
|
|
if err == nil {
|
|
os.Stderr = w
|
|
os.Stdout = w
|
|
}
|
|
|
|
// Even though we do not have any tests to run, we need to call out into
|
|
// "testing" to make it process flags and produce the coverage report.
|
|
m.Run()
|
|
|
|
// TestMain doc says we have to exit with a sensible status code on our
|
|
// own.
|
|
os.Exit(code)
|
|
}
|