/*
 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/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 := cmd.NewRootCommand(&bytes.Buffer{})
			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, _ := cmd.NewRootCommand(nil)
	return rootCmd
}

func getDefaultRootCommand(t *testing.T) *cobra.Command {
	t.Helper()
	rootCmd := cmd.NewAirshipCTLCommand(nil)
	return rootCmd
}

func getSpecializedRootCommand(t *testing.T) *cobra.Command {
	t.Helper()
	rootCmd := getVanillaRootCommand(t)
	rootCmd.AddCommand(baremetal.NewBaremetalCommand(nil))
	return rootCmd
}