2019-02-25 22:32:47 +01:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2019-03-14 22:52:07 +01:00
|
|
|
"path/filepath"
|
2019-02-25 22:32:47 +01:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestProvidersSchema_error(t *testing.T) {
|
|
|
|
ui := new(cli.MockUi)
|
|
|
|
c := &ProvidersSchemaCommand{
|
|
|
|
Meta: Meta{
|
|
|
|
testingOverrides: metaOverridesForProvider(testProvider()),
|
|
|
|
Ui: ui,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if code := c.Run(nil); code != 1 {
|
|
|
|
fmt.Println(ui.OutputWriter.String())
|
|
|
|
t.Fatalf("expected error: \n%s", ui.OutputWriter.String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestProvidersSchema_output(t *testing.T) {
|
|
|
|
// there's only one test at this time. This can be refactored to have
|
|
|
|
// multiple test cases in individual directories as needed.
|
2019-06-30 09:38:36 +02:00
|
|
|
fixtureDir := "testdata/providers-schema"
|
2019-03-14 22:52:07 +01:00
|
|
|
testDirs, err := ioutil.ReadDir(fixtureDir)
|
2019-02-25 22:32:47 +01:00
|
|
|
if err != nil {
|
2019-03-14 22:52:07 +01:00
|
|
|
t.Fatal(err)
|
2019-02-25 22:32:47 +01:00
|
|
|
}
|
|
|
|
|
2019-03-14 22:52:07 +01:00
|
|
|
for _, entry := range testDirs {
|
|
|
|
if !entry.IsDir() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
t.Run(entry.Name(), func(t *testing.T) {
|
|
|
|
td := tempDir(t)
|
|
|
|
inputDir := filepath.Join(fixtureDir, entry.Name())
|
2020-10-07 18:48:25 +02:00
|
|
|
testCopyDir(t, inputDir, td)
|
2019-03-14 22:52:07 +01:00
|
|
|
defer os.RemoveAll(td)
|
|
|
|
defer testChdir(t, td)()
|
|
|
|
|
2020-03-31 23:02:40 +02:00
|
|
|
providerSource, close := newMockProviderSource(t, map[string][]string{
|
|
|
|
"test": []string{"1.2.3"},
|
|
|
|
})
|
|
|
|
defer close()
|
|
|
|
|
2019-03-14 22:52:07 +01:00
|
|
|
p := showFixtureProvider()
|
|
|
|
ui := new(cli.MockUi)
|
|
|
|
m := Meta{
|
|
|
|
testingOverrides: metaOverridesForProvider(p),
|
|
|
|
Ui: ui,
|
2020-03-31 23:02:40 +02:00
|
|
|
ProviderSource: providerSource,
|
2019-03-14 22:52:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// `terrafrom init`
|
|
|
|
ic := &InitCommand{
|
|
|
|
Meta: m,
|
|
|
|
}
|
|
|
|
if code := ic.Run([]string{}); code != 0 {
|
|
|
|
t.Fatalf("init failed\n%s", ui.ErrorWriter)
|
|
|
|
}
|
|
|
|
|
|
|
|
// flush the init output from the mock ui
|
|
|
|
ui.OutputWriter.Reset()
|
|
|
|
|
|
|
|
// `terraform provider schemas` command
|
|
|
|
pc := &ProvidersSchemaCommand{Meta: m}
|
|
|
|
if code := pc.Run([]string{"-json"}); code != 0 {
|
|
|
|
t.Fatalf("wrong exit status %d; want 0\nstderr: %s", code, ui.ErrorWriter.String())
|
|
|
|
}
|
|
|
|
var got, want providerSchemas
|
|
|
|
|
|
|
|
gotString := ui.OutputWriter.String()
|
|
|
|
json.Unmarshal([]byte(gotString), &got)
|
|
|
|
|
|
|
|
wantFile, err := os.Open("output.json")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
defer wantFile.Close()
|
|
|
|
byteValue, err := ioutil.ReadAll(wantFile)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
json.Unmarshal([]byte(byteValue), &want)
|
|
|
|
|
|
|
|
if !cmp.Equal(got, want) {
|
|
|
|
t.Fatalf("wrong result:\n %v\n", cmp.Diff(got, want))
|
|
|
|
}
|
|
|
|
})
|
2019-02-25 22:32:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type providerSchemas struct {
|
|
|
|
FormatVersion string `json:"format_version"`
|
|
|
|
Schemas map[string]providerSchema `json:"provider_schemas"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type providerSchema struct {
|
|
|
|
Provider interface{} `json:"provider,omitempty"`
|
|
|
|
ResourceSchemas map[string]interface{} `json:"resource_schemas,omitempty"`
|
|
|
|
DataSourceSchemas map[string]interface{} `json:"data_source_schemas,omitempty"`
|
|
|
|
}
|