Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use godog flags #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 22 additions & 9 deletions test/feature.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,19 @@ func newContext(t *testing.T) *Context {
return tc
}

var feature = flag.String("feature", "features", "Feature file to test.")
var (
feature = flag.String("feature", "features", "Feature file to test.")
godogOptions = godog.Options{
Format: "pretty-failed",
Strict: true,
Tags: os.Getenv("GODOG_TAGS"),
StopOnFailure: os.Getenv("GODOG_STOP_ON_FAILURE") == "1",
}
)

func init() {
godog.BindFlags("godog.", flag.CommandLine, &godogOptions)
}

// RunFeatures runs feature tests.
func RunFeatures(t *testing.T, envPrefix string, cfg brick.WithBaseConfig, init func(tc *Context) (*brick.BaseLocator, http.Handler)) {
Expand All @@ -78,14 +90,15 @@ func RunFeatures(t *testing.T, envPrefix string, cfg brick.WithBaseConfig, init

godogx.RegisterPrettyFailedFormatter()

options := godog.Options{
Format: "pretty-failed",
Strict: true,
Paths: []string{*feature},
Tags: os.Getenv("GODOG_TAGS"),
StopOnFailure: os.Getenv("GODOG_STOP_ON_FAILURE") == "1",
TestingT: t,
Concurrency: tc.Concurrency,
options := godogOptions

options.TestingT = t
if options.Concurrency == 0 {
options.Concurrency = tc.Concurrency
}

if len(options.Paths) == 0 {
options.Paths = []string{*feature}
}

if tc.OptionsInitializer != nil {
Expand Down