mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 09:51:59 +03:00
52 lines
1.3 KiB
Go
52 lines
1.3 KiB
Go
|
package commands
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
|
||
|
"github.com/hasura/graphql-engine/cli/internal/testutil"
|
||
|
. "github.com/onsi/ginkgo"
|
||
|
. "github.com/onsi/gomega"
|
||
|
. "github.com/onsi/gomega/gbytes"
|
||
|
. "github.com/onsi/gomega/gexec"
|
||
|
)
|
||
|
|
||
|
var _ = Describe("metadata_inconsistency", func() {
|
||
|
|
||
|
var dirName string
|
||
|
var session *Session
|
||
|
var teardown func()
|
||
|
BeforeEach(func() {
|
||
|
dirName = testutil.RandDirName()
|
||
|
hgeEndPort, teardownHGE := testutil.StartHasura(GinkgoT(), testutil.HasuraVersion)
|
||
|
hgeEndpoint := fmt.Sprintf("http://0.0.0.0:%s", hgeEndPort)
|
||
|
testutil.RunCommandAndSucceed(testutil.CmdOpts{
|
||
|
Args: []string{"init", dirName},
|
||
|
})
|
||
|
editEndpointInConfig(filepath.Join(dirName, defaultConfigFilename), hgeEndpoint)
|
||
|
|
||
|
teardown = func() {
|
||
|
session.Kill()
|
||
|
os.RemoveAll(dirName)
|
||
|
teardownHGE()
|
||
|
}
|
||
|
})
|
||
|
|
||
|
AfterEach(func() {
|
||
|
teardown()
|
||
|
})
|
||
|
|
||
|
Context("metadata inconsistency test", func() {
|
||
|
It("Manage inconsistent objects in Hasura metadata", func() {
|
||
|
session = testutil.Hasura(testutil.CmdOpts{
|
||
|
Args: []string{"metadata", "inconsistency"},
|
||
|
WorkingDirectory: dirName,
|
||
|
})
|
||
|
want := `.*Manage inconsistent objects in Hasura metadata*.`
|
||
|
Eventually(session, 60*40).Should(Say(want))
|
||
|
Eventually(session, 60*40).Should(Exit(0))
|
||
|
})
|
||
|
})
|
||
|
})
|