airshipctl/cmd/root_test.go
Ian Howell a8bdae6c9a Uplift cobra to v1.0.0
This commit uplifts cobra to the latest version. It also includes
various changes accounting for differences in the new version.

Change-Id: I0d1ed3ecd3b8d406428fded92abf6e782951d005
2020-08-14 09:19:34 -05:00

110 lines
2.7 KiB
Go

/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cmd_test
import (
"bytes"
"testing"
"github.com/spf13/cobra"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"opendev.org/airship/airshipctl/cmd"
"opendev.org/airship/airshipctl/cmd/baremetal"
"opendev.org/airship/airshipctl/pkg/environment"
"opendev.org/airship/airshipctl/testutil"
)
func TestRoot(t *testing.T) {
tests := []*testutil.CmdTest{
{
Name: "rootCmd-with-no-subcommands",
CmdLine: "--help",
Cmd: getVanillaRootCommand(t),
},
{
Name: "rootCmd-with-default-subcommands",
CmdLine: "--help",
Cmd: getDefaultRootCommand(t),
},
{
Name: "specialized-rootCmd-with-bootstrap",
CmdLine: "--help",
Cmd: getSpecializedRootCommand(t),
},
}
for _, tt := range tests {
testutil.RunTest(t, tt)
}
}
func TestFlagLoading(t *testing.T) {
tests := []struct {
name string
args []string
expected string
}{
{
name: "default, no flags",
args: []string{},
expected: "",
},
{
name: "alternate airshipconfig",
args: []string{"--airshipconf", "/custom/path/to/airshipconfig"},
expected: "/custom/path/to/airshipconfig",
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(subTest *testing.T) {
// We don't care about the output of this test, so toss
// it into a throwaway &bytes.buffer{}
rootCmd, settings, err := cmd.NewRootCommand(&bytes.Buffer{})
require.NoError(t, err)
rootCmd.SetArgs(tt.args)
err = rootCmd.Execute()
require.NoError(t, err)
assert.Equal(t, settings.AirshipConfigPath, tt.expected)
})
}
}
func getVanillaRootCommand(t *testing.T) *cobra.Command {
t.Helper()
rootCmd, _, err := cmd.NewRootCommand(nil)
require.NoError(t, err, "Could not create root commands")
return rootCmd
}
func getDefaultRootCommand(t *testing.T) *cobra.Command {
t.Helper()
rootCmd, _, err := cmd.NewAirshipCTLCommand(nil)
require.NoError(t, err, "Could not create root commands")
return rootCmd
}
func getSpecializedRootCommand(t *testing.T) *cobra.Command {
t.Helper()
rootCmd := getVanillaRootCommand(t)
rootCmd.AddCommand(baremetal.NewBaremetalCommand(&environment.AirshipCTLSettings{}))
return rootCmd
}