
This commit adds a makefile target for generating a report for unit test coverage. It also adds the coverage_check tool to assert that the actual test coverage meets the specified requirement. This also improves various aspects of the testing utilities: * The "test" package has been renamed to "testutil" * The "Objs" member has been removed from the CmdTest object * The "Cmd" member has been added to the CmdTest object. This allows testing of multiple variants of a root airshipctl command Finally, this commit includes additional tests for root.go. These are required in order to meet the required coverage threshold. Change-Id: Id48343166c0488c543a405ec3143e4a75355ba43
59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
package cmd_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"opendev.org/airship/airshipctl/cmd"
|
|
"opendev.org/airship/airshipctl/cmd/bootstrap"
|
|
"opendev.org/airship/airshipctl/pkg/environment"
|
|
"opendev.org/airship/airshipctl/testutil"
|
|
)
|
|
|
|
func TestRoot(t *testing.T) {
|
|
tests := []*testutil.CmdTest{
|
|
{
|
|
Name: "rootCmd-with-no-defaults",
|
|
CmdLine: "",
|
|
Cmd: getVanillaRootCmd(t),
|
|
},
|
|
{
|
|
Name: "rootCmd-with-defaults",
|
|
CmdLine: "",
|
|
Cmd: getDefaultRootCmd(t),
|
|
},
|
|
{
|
|
Name: "specialized-rootCmd-with-bootstrap",
|
|
CmdLine: "",
|
|
Cmd: getSpecializedRootCmd(t),
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
testutil.RunTest(t, tt)
|
|
}
|
|
}
|
|
|
|
func getVanillaRootCmd(t *testing.T) *cobra.Command {
|
|
rootCmd, _, err := cmd.NewRootCmd(nil)
|
|
if err != nil {
|
|
t.Fatalf("Could not create root command: %s", err.Error())
|
|
}
|
|
return rootCmd
|
|
}
|
|
|
|
func getDefaultRootCmd(t *testing.T) *cobra.Command {
|
|
rootCmd, _, err := cmd.NewAirshipCTLCommand(nil)
|
|
if err != nil {
|
|
t.Fatalf("Could not create root command: %s", err.Error())
|
|
}
|
|
return rootCmd
|
|
}
|
|
|
|
func getSpecializedRootCmd(t *testing.T) *cobra.Command {
|
|
rootCmd := getVanillaRootCmd(t)
|
|
rootCmd.AddCommand(bootstrap.NewBootstrapCommand(&environment.AirshipCTLSettings{}))
|
|
return rootCmd
|
|
}
|