|
1 | 1 | ## GitHub Action for launching a Microcks test
|
2 | 2 | ### What is it?
|
3 | 3 |
|
4 |
| -This is a GitHub Action you may use in your Workflow to launch a Microcks test on a deployed API endpoint. If test succeeds (ie. API endpoint is compliant with API contract in Microcks) the workflow is pursuing, if not it fails. This action is basically a wrapper around the [Microcks CLI](https://github.com/microcks/microcks-cli) and provides the same configuration capabilities. |
| 4 | +This is a GitHub Action you may use in your Workflow to launch a Microcks test on a deployed API endpoint. If test succeeds (ie. API endpoint is compliant with API contract in Microcks) the workflow is pursuing, if not it fails. This action is basically a wrapper around the [Microcks CLI](https://github.com/microcks/microcks-cli) and provides the same configuration capabilities. |
5 | 5 |
|
6 | 6 | The `test` command of the CLI needs 3 arguments:
|
| 7 | + |
7 | 8 | * `<apiName:apiVersion>` : Service to test reference. Exemple: `'Beer Catalog API:0.9'`
|
8 | 9 | * `<testEndpoint>` : URL where is deployed implementation to test
|
9 |
| -* `<runner>` : Test strategy (one of: `HTTP`, `SOAP`, `SOAP_UI`, `POSTMAN`, `OPEN_API_SCHEMA`, `ASYNC_API_SCHEMA`)) |
| 10 | +* `<runner>` : Test strategy (one of: `HTTP`, `SOAP`, `SOAP_UI`, `POSTMAN`, `OPEN_API_SCHEMA`, `ASYNC_API_SCHEMA`, `GRPC_PROTOBUF`, `GRAPHQL_SCHEMA`)) |
10 | 11 |
|
11 | 12 | With a bunch of mandatory flags:
|
| 13 | + |
12 | 14 | * `--microcksURL` for the Microcks API endpoint,
|
13 | 15 | * `--keycloakClientId` for the Keycloak Realm Service Account ClientId,
|
14 | 16 | * `--keycloakClientSecret` for the Keycloak Realm Service Account ClientSecret.
|
15 | 17 |
|
16 | 18 | And some optional ones:
|
| 19 | + |
17 | 20 | * `--waitFor` for the time to wait for test to finish (int + one of: milli, sec, min). Default is `5sec`,
|
18 | 21 | * `--secretName='<Secret Name>'` is an optional flag specifying the name of a Secret to use for connecting endpoint,
|
19 | 22 | * `--operationsHeaders=<JSON>` allows to override some operations headers for the tests to launch.
|
|
52 | 55 | As you probably saw just above, we do think it's a best practice to use GitHub Secrets (general or tied to `Environment` like in the example) to hold the Keycloak credentials (client Id and Secret). See below the Secrets configuration we've used for the example:
|
53 | 56 |
|
54 | 57 | 
|
55 |
| - |
|
0 commit comments