mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
ea9b187e7c
Closes #113
61 lines
1.5 KiB
Go
61 lines
1.5 KiB
Go
package commands
|
|
|
|
import (
|
|
"math/rand"
|
|
"net/url"
|
|
"os"
|
|
"path/filepath"
|
|
"strconv"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/briandowns/spinner"
|
|
"github.com/hasura/graphql-engine/cli"
|
|
"github.com/hasura/graphql-engine/cli/migrate"
|
|
"github.com/sirupsen/logrus/hooks/test"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func testMigrateStatus(t *testing.T, endpoint *url.URL, migrationsDir string, expectedStatus *migrate.Status) {
|
|
logger, _ := test.NewNullLogger()
|
|
opts := &migrateStatusOptions{
|
|
EC: &cli.ExecutionContext{
|
|
Logger: logger,
|
|
Spinner: spinner.New(spinner.CharSets[7], 100*time.Millisecond),
|
|
MigrationDir: migrationsDir,
|
|
Config: &cli.HasuraGraphQLConfig{
|
|
Endpoint: endpoint.String(),
|
|
AccessKey: os.Getenv("HASURA_GRAPHQL_TEST_ACCESS_KEY"),
|
|
ParsedEndpoint: endpoint,
|
|
},
|
|
},
|
|
}
|
|
|
|
status, err := opts.run()
|
|
if err != nil {
|
|
t.Fatalf("failed fetching migration status: %v", err)
|
|
}
|
|
assert.Equal(t, expectedStatus, status)
|
|
}
|
|
|
|
func TestMigrateStatusWithInvalidEndpoint(t *testing.T) {
|
|
logger, _ := test.NewNullLogger()
|
|
opts := &migrateStatusOptions{
|
|
EC: &cli.ExecutionContext{
|
|
Logger: logger,
|
|
Spinner: spinner.New(spinner.CharSets[7], 100*time.Millisecond),
|
|
MigrationDir: filepath.Join(os.TempDir(), "hasura-cli-test-"+strconv.Itoa(rand.Intn(1000))),
|
|
Config: &cli.HasuraGraphQLConfig{
|
|
Endpoint: ":",
|
|
AccessKey: "",
|
|
ParsedEndpoint: &url.URL{},
|
|
},
|
|
},
|
|
}
|
|
|
|
_, err := opts.run()
|
|
if err == nil {
|
|
t.Fatalf("expected err not to be nil")
|
|
}
|
|
}
|