mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
8d18a55212
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6069 GitOrigin-RevId: f7a3b98685c16fec613719eaa05024cd3c9cd3d4
162 lines
5.9 KiB
Go
162 lines
5.9 KiB
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"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 testExportMetadataToStdout = func(projectDirectory string) {
|
|
Context("metadata export to stdout", func() {
|
|
session := testutil.Hasura(testutil.CmdOpts{
|
|
Args: []string{"metadata", "export", "-o", "yaml"},
|
|
WorkingDirectory: projectDirectory,
|
|
})
|
|
Eventually(session, timeout).Should(Exit(0))
|
|
stdout := session.Out.Contents()
|
|
Eventually(isYAML(stdout)).Should(BeTrue())
|
|
|
|
session = testutil.Hasura(testutil.CmdOpts{
|
|
Args: []string{"metadata", "export", "--output", "json"},
|
|
WorkingDirectory: projectDirectory,
|
|
})
|
|
Eventually(session, timeout).Should(Exit(0))
|
|
stdout = session.Out.Contents()
|
|
Eventually(isJSON(stdout)).Should(BeTrue())
|
|
})
|
|
}
|
|
|
|
var testMetadataFileMode = func(projectDirectory string) {
|
|
Context("metadata file mode", func() {
|
|
editMetadataFileInConfig(filepath.Join(projectDirectory, defaultConfigFilename), "metadata.json")
|
|
session := testutil.Hasura(testutil.CmdOpts{
|
|
Args: []string{"metadata", "export"},
|
|
WorkingDirectory: projectDirectory,
|
|
})
|
|
Eventually(session, timeout).Should(Exit(0))
|
|
fileContents, err := ioutil.ReadFile(filepath.Join(projectDirectory, "metadata.json"))
|
|
Expect(err).To(BeNil())
|
|
Eventually(isJSON(fileContents)).Should(BeTrue())
|
|
|
|
editMetadataFileInConfig(filepath.Join(projectDirectory, defaultConfigFilename), "metadata.yaml")
|
|
session = testutil.Hasura(testutil.CmdOpts{
|
|
Args: []string{"metadata", "export"},
|
|
WorkingDirectory: projectDirectory,
|
|
})
|
|
Eventually(session, timeout).Should(Exit(0))
|
|
fileContents, err = ioutil.ReadFile(filepath.Join(projectDirectory, "metadata.json"))
|
|
Expect(err).To(BeNil())
|
|
Eventually(isYAML(fileContents)).Should(BeTrue())
|
|
})
|
|
}
|
|
var verifyRequestTransformsMetadataIsExported = func(projectDirectory string) {
|
|
actionsMetadata := filepath.Join(projectDirectory, "metadata", "actions.yaml")
|
|
Expect(actionsMetadata).To(BeAnExistingFile())
|
|
b, err := ioutil.ReadFile(actionsMetadata)
|
|
Expect(err).To(BeNil())
|
|
Expect(string(b)).To(ContainSubstring("request_transform"))
|
|
}
|
|
|
|
var _ = Describe("hasura metadata export (config v3)", func() {
|
|
var projectDirectory, hgeEndpoint string
|
|
var teardown func()
|
|
sourceName := randomdata.SillyName()
|
|
BeforeEach(func() {
|
|
projectDirectory = testutil.RandDirName()
|
|
hgeEndPort, teardownHGE := testutil.StartHasuraWithMetadataDatabase(GinkgoT(), testutil.HasuraDockerImage)
|
|
hgeEndpoint = fmt.Sprintf("http://0.0.0.0:%s", hgeEndPort)
|
|
|
|
connectionString, teardownPG := testutil.AddDatabaseToHasura(GinkgoT(), hgeEndpoint, sourceName, "postgres")
|
|
|
|
// clone template project directory as test project directory
|
|
copyTestConfigV3Project(projectDirectory)
|
|
editEndpointInConfig(filepath.Join(projectDirectory, defaultConfigFilename), hgeEndpoint)
|
|
editSourceNameInConfigV3ProjectTemplate(projectDirectory, sourceName, connectionString)
|
|
testutil.RunCommandAndSucceed(testutil.CmdOpts{
|
|
Args: []string{"metadata", "apply"},
|
|
WorkingDirectory: projectDirectory,
|
|
})
|
|
// remove the directory after apply to check if it gets recreated after a successful export
|
|
Expect(os.RemoveAll(filepath.Join(projectDirectory, "metadata", "databases", sourceName))).To(BeNil())
|
|
|
|
teardown = func() {
|
|
os.RemoveAll(projectDirectory)
|
|
teardownHGE()
|
|
teardownPG()
|
|
}
|
|
})
|
|
|
|
AfterEach(func() { teardown() })
|
|
|
|
It("can export metadata from server", func() {
|
|
Context("metadata export to project directory", func() {
|
|
session := testutil.Hasura(testutil.CmdOpts{
|
|
Args: []string{"metadata", "export"},
|
|
WorkingDirectory: projectDirectory,
|
|
})
|
|
Eventually(session, timeout).Should(Exit(0))
|
|
Expect(session.Err.Contents()).Should(ContainSubstring("Metadata exported"))
|
|
Expect(filepath.Join(projectDirectory, "metadata", "databases", sourceName, "tables", "public_albums.yaml")).Should(BeAnExistingFile())
|
|
verifyRequestTransformsMetadataIsExported(projectDirectory)
|
|
})
|
|
testExportMetadataToStdout(projectDirectory)
|
|
testMetadataFileMode(projectDirectory)
|
|
})
|
|
|
|
})
|
|
|
|
var _ = Describe("hasura metadata export (config v2)", func() {
|
|
var projectDirectory, hgeEndpoint 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)
|
|
|
|
// clone template project directory as test project directory
|
|
copyTestConfigV2Project(projectDirectory)
|
|
editEndpointInConfig(filepath.Join(projectDirectory, defaultConfigFilename), hgeEndpoint)
|
|
testutil.RunCommandAndSucceed(testutil.CmdOpts{
|
|
Args: []string{"migrate", "apply"},
|
|
WorkingDirectory: projectDirectory,
|
|
})
|
|
testutil.RunCommandAndSucceed(testutil.CmdOpts{
|
|
Args: []string{"metadata", "apply"},
|
|
WorkingDirectory: projectDirectory,
|
|
})
|
|
// remove the directory after apply to check if it gets recreated after a successful export
|
|
Expect(os.RemoveAll(filepath.Join(projectDirectory, "metadata"))).To(BeNil())
|
|
teardown = func() {
|
|
os.RemoveAll(projectDirectory)
|
|
teardownHGE()
|
|
}
|
|
})
|
|
|
|
AfterEach(func() { teardown() })
|
|
|
|
It("can export metadata from server", func() {
|
|
Context("metadata export to project directory", func() {
|
|
session := testutil.Hasura(testutil.CmdOpts{
|
|
Args: []string{"metadata", "export"},
|
|
WorkingDirectory: projectDirectory,
|
|
})
|
|
Eventually(session, timeout).Should(Exit(0))
|
|
Expect(session.Err.Contents()).Should(ContainSubstring("Metadata exported"))
|
|
Expect(filepath.Join(projectDirectory, "metadata", "tables.yaml")).Should(BeAnExistingFile())
|
|
|
|
verifyRequestTransformsMetadataIsExported(projectDirectory)
|
|
})
|
|
testExportMetadataToStdout(projectDirectory)
|
|
testMetadataFileMode(projectDirectory)
|
|
})
|
|
|
|
})
|