mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
489835eb36
- modified the `dry-run` flag of metadata apply command. - added new flag `o` which takes "json" or "yaml" as parameters for metadata apply command. - added new flag `o` which takes "json" or "yaml" as parameters for metadata export command. It outputs the metadata from server to stdout in form of json or yaml and won't change the project's metadata. - added deprecation warnings for `--from-file` flag - added info message for describing change of behavior of `--dry-run` flag - v3 metadata objects like `rest_endpoints` was also added to list of metadata objects in config v2 (fix) - the order in which metadata objects are appended to metadata objects list matter when using `--dry-run` flag, refactored this order to match server metadata. - `metadata apply` command can now accept json/yaml metadata from io pipe - config v3 `metadata apply` didn't show any information to user when applied metadata is inconsistent, this is addressed. - removed `github.com/ghodss/yaml` dependency from repo - version metadata object was added twice during intialization (fix) Co-authored-by: Aravind K P <8335904+scriptonist@users.noreply.github.com> GitOrigin-RevId: 2316f519eb40645efd86ffee2a85d3c90543ec17
106 lines
3.3 KiB
Go
106 lines
3.3 KiB
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/hasura/graphql-engine/cli/internal/testutil"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
. "github.com/onsi/gomega/gexec"
|
|
)
|
|
|
|
var _ = Describe("metadata_apply", 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()
|
|
})
|
|
|
|
It("metadata apply", func() {
|
|
Context("should apply metadata to server", func() {
|
|
session = testutil.RunCommandAndSucceed(testutil.CmdOpts{
|
|
Args: []string{"metadata", "export"},
|
|
WorkingDirectory: dirName,
|
|
})
|
|
session = testutil.Hasura(testutil.CmdOpts{
|
|
Args: []string{"metadata", "apply"},
|
|
WorkingDirectory: dirName,
|
|
})
|
|
Eventually(session, 60*40).Should(Exit(0))
|
|
Eventually(session.Wait().Err.Contents()).Should(ContainSubstring("Metadata applied"))
|
|
})
|
|
Context("apply metadata to server and it should output the metadata of project to stdout", func() {
|
|
session = testutil.Hasura(testutil.CmdOpts{
|
|
Args: []string{"metadata", "apply", "--output", "json"},
|
|
WorkingDirectory: dirName,
|
|
})
|
|
Eventually(session, 60*40).Should(Exit(0))
|
|
Eventually(isJSON(session.Wait().Out.Contents())).Should(BeTrue())
|
|
})
|
|
|
|
Context("metadata dry run ", func() {
|
|
args := strings.Join([]string{
|
|
"hasura", "metadata", "export", "-o", "json",
|
|
"|", "jq", `'.sources[0].configuration.connection_info.pool_settings.max_connections = 51'`,
|
|
"|", "hasura", "md", "apply", "--dry-run",
|
|
}, " ")
|
|
cmd := exec.Command("bash", "-c", args)
|
|
cmd.Dir = dirName
|
|
session, err := Start(
|
|
cmd,
|
|
NewPrefixedWriter(testutil.DebugOutPrefix, GinkgoWriter),
|
|
NewPrefixedWriter(testutil.DebugErrPrefix, GinkgoWriter),
|
|
)
|
|
Expect(err).To(BeNil())
|
|
Eventually(session, 60*40).Should(Exit(0))
|
|
Eventually(string(session.Wait().Out.Contents())).Should(ContainSubstring("\"max_connections\": 51\n"))
|
|
})
|
|
Context("metadata apply metadata from pipe", func() {
|
|
args := strings.Join([]string{
|
|
"hasura", "metadata", "export", "-o", "json",
|
|
"|", "jq", `'.sources[0].configuration.connection_info.pool_settings.max_connections = 51'`,
|
|
"|", "hasura", "md", "apply",
|
|
}, " ")
|
|
cmd := exec.Command("bash", "-c", args)
|
|
cmd.Dir = dirName
|
|
session, err := Start(
|
|
cmd,
|
|
NewPrefixedWriter(testutil.DebugOutPrefix, GinkgoWriter),
|
|
NewPrefixedWriter(testutil.DebugErrPrefix, GinkgoWriter),
|
|
)
|
|
Expect(err).To(BeNil())
|
|
Eventually(session, 60*40).Should(Exit(0))
|
|
|
|
session = testutil.Hasura(testutil.CmdOpts{
|
|
Args: []string{"metadata", "export", "--output", "yaml"},
|
|
WorkingDirectory: dirName,
|
|
})
|
|
Eventually(session, 60*40).Should(Exit(0))
|
|
out := session.Wait().Out.Contents()
|
|
Expect(isYAML(out)).To(BeTrue())
|
|
Eventually(string(out)).Should(ContainSubstring("max_connections: 51"))
|
|
})
|
|
})
|
|
})
|