spf13--cobra/cobra/cmd/init_test.go

40 lines
847 B
Go
Raw Normal View History

2017-05-05 08:06:27 +00:00
package cmd
import (
"fmt"
2017-05-05 08:06:27 +00:00
"os"
"path/filepath"
"testing"
)
func getProject() *Project {
2019-01-30 07:41:41 +00:00
wd, _ := os.Getwd()
return &Project{
AbsolutePath: fmt.Sprintf("%s/testproject", wd),
2019-01-30 07:41:41 +00:00
Legal: getLicense(),
2019-01-30 08:46:53 +00:00
Copyright: copyrightLine(),
2019-01-30 07:41:41 +00:00
AppName: "testproject",
PkgName: "github.com/spf13/testproject",
Viper: true,
2019-01-30 07:41:41 +00:00
}
}
func TestGoldenInitCmd(t *testing.T) {
project := getProject()
defer os.RemoveAll(project.AbsolutePath)
2019-01-30 07:41:41 +00:00
if err := project.Create(); err != nil {
2019-01-30 07:41:41 +00:00
t.Fatal(err)
}
expectedFiles := []string{"LICENSE", "main.go", "cmd/root.go"}
for _, f := range expectedFiles {
generatedFile := fmt.Sprintf("%s/%s", project.AbsolutePath, f)
goldenFile := fmt.Sprintf("testdata/%s.golden", filepath.Base(f))
err := compareFiles(generatedFile, goldenFile)
2017-05-05 08:06:27 +00:00
if err != nil {
t.Fatal(err)
2017-05-05 08:06:27 +00:00
}
}
}