graphql-engine/cli/commands/metadata_inconsistency_list_test.go
Mohd Bilal 8d18a55212 cli: move AddDatabaseToHasura to testutil package
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6069
GitOrigin-RevId: f7a3b98685c16fec613719eaa05024cd3c9cd3d4
2022-09-27 11:16:22 +00:00

70 lines
2.2 KiB
Go

package commands
import (
"fmt"
"os"
"path/filepath"
"github.com/Pallinder/go-randomdata"
"github.com/hasura/graphql-engine/cli/v2/internal/testutil"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
. "github.com/onsi/gomega/gexec"
)
var _ = Describe("hasura metadata inconsistency list", func() {
var projectDirectory string
var teardown func()
BeforeEach(func() {
projectDirectory = testutil.RandDirName()
hgeEndPort, teardownHGE := testutil.StartHasura(GinkgoT(), testutil.HasuraDockerImage)
hgeEndpoint := fmt.Sprintf("http://0.0.0.0:%s", hgeEndPort)
sourceName := randomdata.SillyName()
connectionString, teardownPG := testutil.AddDatabaseToHasura(GinkgoT(), hgeEndpoint, sourceName, "postgres")
copyTestConfigV3Project(projectDirectory)
editEndpointInConfig(filepath.Join(projectDirectory, defaultConfigFilename), hgeEndpoint)
editSourceNameInConfigV3ProjectTemplate(projectDirectory, sourceName, connectionString)
testutil.RunCommandAndSucceed(testutil.CmdOpts{
Args: []string{"metadata", "apply"},
WorkingDirectory: projectDirectory,
})
teardown = func() {
os.RemoveAll(projectDirectory)
teardownHGE()
teardownPG()
}
})
AfterEach(func() { teardown() })
var matcher = func(out []byte) {
want := []string{"genres", "albums", "media_types", "playlists", "artists", "tracks", "playlist_track"}
for _, v := range want {
Expect(out).To(ContainSubstring(v))
}
}
It("should list inconsistent metadata objects", func() {
Context("Lists all inconsistent objects in table format", func() {
session := testutil.Hasura(testutil.CmdOpts{
Args: []string{"metadata", "inconsistency", "list"},
WorkingDirectory: projectDirectory,
})
Eventually(session, timeout).Should(Exit(0))
stdout := session.Out.Contents()
matcher(stdout)
})
Context("Lists all inconsistent objects in json format", func() {
session := testutil.Hasura(testutil.CmdOpts{
Args: []string{"metadata", "inconsistency", "list", "-o", "json"},
WorkingDirectory: projectDirectory,
})
Eventually(session, timeout).Should(Exit(0))
stdout := session.Out.Contents()
Eventually(isJSON(stdout)).Should(BeTrue())
matcher(stdout)
})
})
})