graphql-engine/cli/commands/actions_create_test.go
Kali Vara Purushotham Santhati 94a3be3e6e cli: fix lint errors
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/1749
Co-authored-by: Aravind K P <8335904+scriptonist@users.noreply.github.com>
GitOrigin-RevId: 4515f7f2c58b7f28645b2c5a5d9842aa7a844eae
2021-10-13 14:39:15 +00:00

69 lines
1.7 KiB
Go

package commands
// TODO: we should make this test check the user actual user interaction
// this can be done with some changes in how we get input from the user
/*
var _ = Describe("actions_create", func() {
var dirName string
var session *Session
var teardown func()
BeforeEach(func() {
dirName = testutil.RandDirName()
hgeEndPort, teardownHGE := testutil.StartHasura(GinkgoT(), testutil.HasuraDockerImage)
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("actions create tests", func() {
data := `type Mutation {
# Define your action as a mutation here
action1 (arg1: SampleInput!): SampleOutput
}
type SampleOutput {
accessToken: String!
}
input SampleInput {
username: String!
password: String!
}`
It("should create a new action action1 ", func() {
filePath := filepath.Join(dirName, "action1.graphql")
file, err := os.Create(filePath)
if err != nil {
fmt.Println(err)
}
_, err = file.Write([]byte(data))
Expect(err).To(BeNil())
file.Close()
session = testutil.Hasura(testutil.CmdOpts{
Args: []string{"actions", "create", "action1", "--file", filePath},
WorkingDirectory: dirName,
})
wantKeywordList := []string{
".*action created*.",
}
for _, keyword := range wantKeywordList {
Eventually(session.Wait(timeout)).Should(Say(keyword))
}
Eventually(session, timeout).Should(Exit(0))
})
})
})
*/