graphql-engine/cli/integration_test/v2/metadata.go
Aravind Shankar bb63d7e60e
cli: allow managing actions (#3859)
Co-authored-by: Rishichandra Wawhal <rishichandra.wawhal@gmail.com>
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
Co-authored-by: Aravind <aravindkp@outlook.in>
Co-authored-by: Anon Ray <ecthiender@users.noreply.github.com>
Co-authored-by: Shahidh K Muhammed <muhammedshahid.k@gmail.com>
2020-02-24 21:44:46 +05:30

141 lines
3.1 KiB
Go

package v2
import (
"bytes"
"io/ioutil"
"os"
"path/filepath"
"testing"
"github.com/hasura/graphql-engine/cli"
"github.com/hasura/graphql-engine/cli/commands"
"github.com/hasura/graphql-engine/cli/util"
"github.com/stretchr/testify/assert"
)
type metadataInterface interface {
Run() error
}
func TestMetadataCmd(t *testing.T, ec *cli.ExecutionContext) {
currDir, _ := os.Getwd()
tt := []struct {
name string
opts metadataInterface
err error
copyMetadataFolder string
expectedMetadataFolder string
}{
{
"metadata-export",
&commands.MetadataExportOptions{
EC: ec,
ActionType: "export",
},
nil,
"",
filepath.Join(currDir, getMetadataDir(), "1_metadata"),
},
{
"metadata-apply",
&commands.MetadataApplyOptions{
EC: ec,
ActionType: "apply",
},
nil,
filepath.Join(currDir, getMetadataDir(), "2_metadata"),
"",
},
{
"metadata-export",
&commands.MetadataExportOptions{
EC: ec,
ActionType: "export",
},
nil,
"",
filepath.Join(currDir, getMetadataDir(), "2_metadata"),
},
{
"metadata-clear",
&commands.MetadataClearOptions{
EC: ec,
ActionType: "clear",
},
nil,
"",
"",
},
{
"metadata-export",
&commands.MetadataExportOptions{
EC: ec,
ActionType: "export",
},
nil,
"",
filepath.Join(currDir, getMetadataDir(), "1_metadata"),
},
{
"metadata-diff",
&commands.MetadataDiffOptions{
EC: ec,
Args: []string{filepath.Join(currDir, getMetadataDir(), "1_metadata")},
Output: new(bytes.Buffer),
},
nil,
"",
"",
},
{
"down-all-migrations",
&commands.MigrateApplyOptions{
EC: ec,
DownMigration: "all",
},
nil,
"",
"",
},
}
for _, tc := range tt {
t.Run(tc.name, func(t *testing.T) {
if tc.copyMetadataFolder != "" {
err := os.RemoveAll(ec.MetadataDir)
if err != nil {
t.Fatalf("%s: unable to remove metadata directory, got %v", tc.name, err)
}
err = util.CopyDir(tc.copyMetadataFolder, ec.MetadataDir)
if err != nil {
t.Fatalf("%s: unable to copy metadata file, got %v", tc.name, err)
}
}
err := tc.opts.Run()
if err != tc.err {
t.Fatalf("%s: expected %v, got %v", tc.name, tc.err, err)
}
if tc.expectedMetadataFolder != "" {
assert.DirExists(t, ec.MetadataDir)
files, err := ioutil.ReadDir(tc.expectedMetadataFolder)
if err != nil {
t.Fatalf("%s: unable to read expected metadata directory, got %v", tc.name, err)
}
for _, file := range files {
name := file.Name()
expectedByt, err := ioutil.ReadFile(filepath.Join(tc.expectedMetadataFolder, name))
if err != nil {
t.Fatalf("%s: unable to read expected metadata file %s, got %v", tc.name, name, err)
}
actualByt, err := ioutil.ReadFile(filepath.Join(ec.MetadataDir, name))
if err != nil {
t.Fatalf("%s: unable to read actual metadata file %s, got %v", tc.name, name, err)
}
assert.Equal(t, string(expectedByt), string(actualByt))
}
}
})
}
}