Skip to content
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
18 changes: 14 additions & 4 deletions cmd/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,23 @@ func NewTestCommand(globalClientOpts *connectors.ClientOptions) *cobra.Command {
oAuth2Context string
)
var testCmd = &cobra.Command{

Use: "test <apiName:apiVersion> <testEndpoint> <runner>",
Short: "Run tests on Microcks",
Long: `Run tests on Microcks`,
Args: cobra.ExactArgs(3),
Long: `Run a test on a Microcks server against a deployed implementation.

Required arguments:
<apiName:apiVersion> Service reference, e.g. "Beer Catalog API:0.9".
<testEndpoint> URL of the deployed implementation under test.
<runner> Test strategy. One of: HTTP, SOAP_HTTP, SOAP_UI,
POSTMAN, OPEN_API_SCHEMA, ASYNC_API_SCHEMA,
GRPC_PROTOBUF, GRAPHQL_SCHEMA.`,
Example: ` microcks test "Beer Catalog API:0.9" http://my-service/api/ POSTMAN \
--microcksURL=http://microcks.example.com/api \
--keycloakClientId=microcks-serviceaccount \
--keycloakClientSecret=<secret> \
--waitFor=10sec`,
Args: cobra.ExactArgs(3),
Comment on lines +46 to +59

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add a small test for the command behavior (no args / wrong arg count / help text) so this UX contract is covered going forward.

Run: func(cmd *cobra.Command, args []string) {

serviceRef := args[0]
testEndpoint := args[1]
runnerType := args[2]
Expand Down
Loading