graphql-engine/cli/commands/migrate_apply_test.go
2018-07-09 19:17:38 +05:30

92 lines
2.2 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/sirupsen/logrus/hooks/test"
"github.com/stretchr/testify/assert"
)
func testMigrateApply(t *testing.T, endpoint *url.URL, migrationsDir string, up string, down string, version string, versionType string) {
logger, hook := test.NewNullLogger()
opts := &migrateApplyOptions{
EC: &cli.ExecutionContext{
Logger: logger,
Spinner: spinner.New(spinner.CharSets[7], 100*time.Millisecond),
MigrationDir: migrationsDir,
Config: &cli.HasuraGraphQLConfig{
Endpoint: endpoint.String(),
AccessKey: "",
ParsedEndpoint: endpoint,
},
},
upMigration: up,
downMigration: down,
versionMigration: version,
migrationType: versionType,
}
err := opts.run()
if err != nil {
t.Fatalf("failed applying migration: %v", err)
}
assert.Equal(t, "migrations applied", hook.LastEntry().Message)
}
func TestMigrateApplyWithInvalidEndpoint(t *testing.T) {
logger, _ := test.NewNullLogger()
opts := &migrateApplyOptions{
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")
}
}
func TestMigrateApplyWithMultipleFlags(t *testing.T) {
logger, _ := test.NewNullLogger()
opts := &migrateApplyOptions{
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: "",
},
},
upMigration: "1",
downMigration: "2",
}
err := opts.EC.Config.ParseEndpoint()
if err == nil {
t.Fatalf("expected err not to be nil")
}
err = opts.run()
if err == nil {
t.Fatalf("expected err not to be nil")
}
}