-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathconfig_init_test.go
35 lines (30 loc) · 1.16 KB
/
config_init_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package cmd
import (
"fmt"
"os"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func Test_configInitCmd(t *testing.T) {
globalTestConfigFile := "./test_global_configInitCmd.yaml"
// Test configInitCmd.
output, err := executeCommandC(rootCmd, "config", "init", "-c", globalTestConfigFile)
require.NoError(t, err, "configInitCmd should not return an error")
assert.Equal(t,
fmt.Sprintf("Config file '%s' was created successfully.", globalTestConfigFile),
output,
"configInitCmd should print the correct output")
// Check that the config file was created.
assert.FileExists(t, globalTestConfigFile, "configInitCmd should create a config file")
// Test configInitCmd with the --force flag to overwrite the config file.
output, err = executeCommandC(rootCmd, "config", "init", "--force", "-c", globalTestConfigFile)
require.NoError(t, err, "configInitCmd should not return an error")
assert.Equal(t,
fmt.Sprintf("Config file '%s' was overwritten successfully.", globalTestConfigFile),
output,
"configInitCmd should print the correct output")
// Clean up.
err = os.Remove(globalTestConfigFile)
assert.Nil(t, err)
}