Skip to content

Commit 6f08412

Browse files
committed
#1 Upgrade to microckds-cli:0.5.0
1 parent c2c7d17 commit 6f08412

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
## GitHub Action for launching a Microcks test
22
### What is it?
33

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.
55

66
The `test` command of the CLI needs 3 arguments:
7+
78
* `<apiName:apiVersion>` : Service to test reference. Exemple: `'Beer Catalog API:0.9'`
89
* `<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`))
1011

1112
With a bunch of mandatory flags:
13+
1214
* `--microcksURL` for the Microcks API endpoint,
1315
* `--keycloakClientId` for the Keycloak Realm Service Account ClientId,
1416
* `--keycloakClientSecret` for the Keycloak Realm Service Account ClientSecret.
1517

1618
And some optional ones:
19+
1720
* `--waitFor` for the time to wait for test to finish (int + one of: milli, sec, min). Default is `5sec`,
1821
* `--secretName='<Secret Name>'` is an optional flag specifying the name of a Secret to use for connecting endpoint,
1922
* `--operationsHeaders=<JSON>` allows to override some operations headers for the tests to launch.
@@ -52,4 +55,3 @@ jobs:
5255
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:
5356

5457
![secret configuration](./assets/secrets.png)
55-

action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ author: 'Microcks.io'
33
description: 'Launch a Microcks test on an API endpoint'
44
inputs:
55
apiNameAndVersion:
6-
description: "<apiName:apiVersion>: Service to test reference. Exemple: 'Beer Catalog API:0.9'"
6+
description: "<apiName:apiVersion>: Service to test reference. Example: 'Beer Catalog API:0.9'"
77
required: true
88
testEndpoint:
99
description: 'URL where is deployed implementation to test'
1010
required: true
1111
runner:
12-
description: 'Test strategy (one of: HTTP, SOAP, SOAP_UI, POSTMAN, OPEN_API_SCHEMA, ASYNC_API_SCHEMA)'
12+
description: 'Test strategy (one of: HTTP, SOAP, SOAP_UI, POSTMAN, OPEN_API_SCHEMA, ASYNC_API_SCHEMA, GRPC_PROTOBUF, GRAPHQL_SCHEMA)'
1313
required: true
1414
default: 'HTTP'
1515
microcksURL:
@@ -35,7 +35,7 @@ inputs:
3535
default: ''
3636
runs:
3737
using: 'docker'
38-
image: 'docker://quay.io/microcks/microcks-cli:0.3.0'
38+
image: 'docker://quay.io/microcks/microcks-cli:0.5.0'
3939
entrypoint: '/usr/bin/bash'
4040
args:
4141
- '-c'

assets/marketplace.png

98.7 KB
Loading

0 commit comments

Comments
 (0)