-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'provider_contract_link' into auto_detect_commit
- Loading branch information
Showing
7 changed files
with
241 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
openapi: 3.0.1 | ||
info: | ||
title: Product API | ||
description: Pactflow Product API demo | ||
version: 1.0.0 | ||
paths: | ||
/products: | ||
post: | ||
summary: Create a product | ||
description: Creates a new product | ||
operationId: createProduct | ||
requestBody: | ||
description: Create a new Product | ||
required: true | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/Product' | ||
examples: | ||
application/json: | ||
value: | ||
id: "1234" | ||
type: "food" | ||
price: 42 | ||
responses: | ||
"200": | ||
description: successful operation | ||
content: | ||
"application/json; charset=utf-8": | ||
schema: | ||
$ref: '#/components/schemas/Product' | ||
examples: | ||
application/json: | ||
value: | ||
id: "1234" | ||
type: "food" | ||
price: 42 | ||
get: | ||
summary: List all products | ||
description: Returns all products | ||
operationId: getAllProducts | ||
responses: | ||
"200": | ||
description: successful operation | ||
content: | ||
"application/json; charset=utf-8": | ||
schema: | ||
type: "array" | ||
items: | ||
$ref: '#/components/schemas/Product' | ||
examples: | ||
application/json: | ||
value: | ||
- id: "1234" | ||
type: "food" | ||
price: 42 | ||
# name: "pizza" | ||
# version: "1.0.0" | ||
# see https://github.com/apiaryio/dredd/issues/1430 for why | ||
"400": | ||
description: Invalid ID supplied | ||
content: {} | ||
/product/{id}: | ||
get: | ||
summary: Find product by ID | ||
description: Returns a single product | ||
operationId: getProductByID | ||
parameters: | ||
- name: id | ||
in: path | ||
description: ID of product to get | ||
schema: | ||
type: string | ||
required: true | ||
example: 10 | ||
responses: | ||
"200": | ||
description: successful operation | ||
content: | ||
"application/json; charset=utf-8": | ||
schema: | ||
$ref: '#/components/schemas/Product' | ||
examples: | ||
application/json: | ||
value: | ||
id: "1234" | ||
type: "food" | ||
price: 42 | ||
# name: "pizza" | ||
# version: "1.0.0" | ||
# see https://github.com/apiaryio/dredd/issues/1430 for why | ||
"400": | ||
description: Invalid ID supplied | ||
content: {} | ||
"404": | ||
description: Product not found | ||
content: {} | ||
components: | ||
schemas: | ||
Product: | ||
type: object | ||
required: | ||
- id | ||
- name | ||
- price | ||
properties: | ||
id: | ||
type: string | ||
type: | ||
type: string | ||
name: | ||
type: string | ||
version: | ||
type: string | ||
price: | ||
type: number |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# assumes you've set PACT_BROKER_BASE_URL, PACT_BROKER_USERNAME and PACT_BROKER_PASSWORD already | ||
|
||
bundle exec bin/pactflow publish-provider-contract $(dirname "$0")/oas.yml \ | ||
--provider pactflow-cli-test-provider \ | ||
--provider-app-version 1.0.0 \ | ||
--branch master \ | ||
--tag master \ | ||
--content-type application/yaml \ | ||
--verification-exit-code=0 \ | ||
--verification-results $(dirname "$0")/oas.yml \ | ||
--verification-results-content-type application/yaml \ | ||
--verifier pactflow-cli-test-provider |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters