-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tronje Krop <[email protected]>
- Loading branch information
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package main | ||
|
||
import ( | ||
"errors" | ||
"os" | ||
"os/exec" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"github.com/tkrop/go-testing/test" | ||
) | ||
|
||
type MainParams struct { | ||
args []string | ||
expectExitCode int | ||
} | ||
|
||
var testMainParams = map[string]MainParams{ | ||
"no mock to generate": { | ||
args: []string{"mock"}, | ||
expectExitCode: 0, | ||
}, | ||
} | ||
|
||
func TestMain(t *testing.T) { | ||
test.Map(t, testMainParams). | ||
Run(func(t test.Test, param MainParams) { | ||
// Switch to execute main function in separate process. | ||
if name := os.Getenv("TEST"); name != "" { | ||
// Ensure only expected test is running. | ||
if name == t.Name() { | ||
os.Args = param.args | ||
main() | ||
assert.Fail(t, "os-exit not called") | ||
} | ||
// Skip other test. | ||
return | ||
} | ||
|
||
// Call the main function in a separate process. | ||
cmd := exec.Command(os.Args[0], "-test.run=TestMain") | ||
cmd.Env = append(os.Environ(), "TEST="+t.Name()) | ||
if err := cmd.Run(); err != nil || param.expectExitCode != 0 { | ||
errExit := &exec.ExitError{} | ||
if errors.As(err, &errExit) { | ||
assert.Equal(t, param.expectExitCode, errExit.ExitCode()) | ||
} else { | ||
assert.Fail(t, "unexpected error", err) | ||
} | ||
} | ||
}) | ||
} |