Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions code/API_definitions/brand-registration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ info:
# Further info and support

(FAQs will be added in a later version of the documentation)
version: 0.1.0
version: wip

license:
name: Apache 2.0
Expand All @@ -59,7 +59,7 @@ externalDocs:
description: Project documentation at Camara
url: https://github.com/camaraproject/VerifiedCaller
servers:
- url: '{apiRoot}/brand-registration/v0.1'
- url: '{apiRoot}/brand-registration/vwip'
variables:
apiRoot:
default: http://localhost:9091
Expand Down
4 changes: 2 additions & 2 deletions code/API_definitions/verified-caller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ info:

(FAQs will be added in a later version of the documentation)

version: 0.1.0
version: wip
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
Expand All @@ -60,7 +60,7 @@ externalDocs:
description: Project documentation at Camara
url: https://github.com/camaraproject/VerifiedCaller
servers:
- url: '{apiRoot}/verified-caller/v0.1'
- url: '{apiRoot}/verified-caller/vwip'
variables:
apiRoot:
default: http://localhost:9091
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Feature: Camara Brand Registration API, v0.1.0 - Operation: POST /registrations
Feature: Camara Brand Registration API, vwip - Operation: POST /registrations

# Input to be provided by the implementation to the tests
# References to OAS spec schemas refer to schemas specified in /code/API_definitions/brand-registration.yml
Expand All @@ -15,7 +15,7 @@ Feature: Camara Brand Registration API, v0.1.0 - Operation: POST /registrations

Background: Brand Registration setup
Given an environment at "apiRoot"
And the resource "/brand-registration/v0.1/registrations"
And the resource "/brand-registration/vwip/registrations"
And the header "Content-Type" is set to "application/json"
And the header "Authorization" is set to a valid access token
And the header "x-correlator" complies with the schema at "#/components/schemas/XCorrelator"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Feature: Camara Brand Registration API, v0.1.0 - Operation: DEL
Feature: Camara Brand Registration API, vwip - Operation: DEL

# Input to be provided by the implementation to the tests
# References to OAS spec schemas refer to schemas specified in /code/API_definitions/brand-registration.yml
Expand All @@ -16,7 +16,7 @@ Feature: Camara Brand Registration API, v0.1.0 - Operation: DEL

Background: Brand Registration setup
Given an environment at "apiRoot"
And the resource "/brand-registration/v0.1/registrations"
And the resource "/brand-registration/vwip/registrations"
And the header "Authorization" is set to a valid access token
And the header "x-correlator" complies with the schema at "#/components/schemas/XCorrelator"
And the request URI includes a registrationId parameter that is is a valid UUID format
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Feature: Camara Brand Registration API, v0.1.0 - Operation: GET
Feature: Camara Brand Registration API, vwip - Operation: GET

# Input to be provided by the implementation to the tests
# References to OAS spec schemas refer to schemas specified in /code/API_definitions/brand-registration.yml
Expand All @@ -16,7 +16,7 @@ Feature: Camara Brand Registration API, v0.1.0 - Operation: GET

Background: Brand Registration setup
Given an environment at "apiRoot"
And the resource "/brand-registration/v0.1/registrations"
And the resource "/brand-registration/vwip/registrations"
And the header "Authorization" is set to a valid access token
And the header "x-correlator" complies with the schema at "#/components/schemas/XCorrelator"
And the request URI includes a registrationId parameter that is is a valid UUID format
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Feature: Camara Brand Registration API, v0.1.0 - Operation: PUT /registrations
Feature: Camara Brand Registration API, vwip - Operation: PUT /registrations

# Input to be provided by the implementation to the tests
# References to OAS spec schemas refer to schemas specified in /code/API_definitions/brand-registration.yml
Expand All @@ -16,7 +16,7 @@ Feature: Camara Brand Registration API, v0.1.0 - Operation: PUT /registrations

Background: Brand Registration setup
Given an environment at "apiRoot"
And the resource "/brand-registration/v0.1/registrations"
And the resource "/brand-registration/vwip/registrations"
And the header "Content-Type" is set to "application/json"
And the header "Authorization" is set to a valid access token
And the header "x-correlator" complies with the schema at "#/components/schemas/XCorrelator"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Feature: CAMARA Verified Caller API, v0.1.0 - Operation: createPreAnnouncement
Feature: CAMARA Verified Caller API, vwip - Operation: createPreAnnouncement

# Input to be provided by the implementation to the tests
# References to OAS spec schemas refer to schemas specified in /code/API_definitions/verified-caller.yaml
Expand All @@ -12,7 +12,7 @@ Feature: CAMARA Verified Caller API, v0.1.0 - Operation: createPreAnnouncement

Background: setup
Given an environment at "apiRoot"
And the resource "/verified-caller/v0.1/pre-announce"
And the resource "/verified-caller/vwip/pre-announce"
And the header "Content-Type" is seVerified Caller Pre-announcet to "application/json"
And the header "Authorization" is set to a valid access token
And the header "x-correlator" complies with the schema at "#/components/schemas/XCorrelator"
Expand Down