-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
32 additions
and
3 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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ openapi: 3.0.3 | |
info: | ||
title: TiMessengerTestDriver | ||
description: REST interface to automate the test of a TI-Messenger client implementation. | ||
version: 0.9.2 | ||
version: 0.9.3 | ||
contact: | ||
name: gematik GmbH | ||
email: [email protected] | ||
|
@@ -33,6 +33,8 @@ servers: | |
tags: | ||
- name: info | ||
description: This operation returns meta data about this interface and the status of available resources | ||
- name: signalTestStart | ||
description: This endpoint serves the possibility to clean system before test | ||
- name: devices | ||
description: Operations for device management | ||
- name: account | ||
|
@@ -83,6 +85,21 @@ paths: | |
default: | ||
$ref: "#/components/responses/DefaultResponse" | ||
|
||
post: | ||
tags: | ||
- signalTestStart | ||
description: Implementation is optional! Testsuite sends a request to the org-admin endpoint of each involved homeserver (even if the org-admin is not named in the feature-file). There will be no claiming attempt before triggering this endpoint. After getting any response the testcase starts. This is an opportunity for the org-admin to clean user/rooms/FHIR-VZD etc. Even if errorcode returned the testsuite will start the test. | ||
operationId: cleanUp | ||
responses: | ||
"200": | ||
description: System clean | ||
"404": | ||
$ref: "#/components/responses/NotFound" | ||
"500": | ||
$ref: "#/components/responses/InternalServerError" | ||
default: | ||
$ref: "#/components/responses/DefaultResponse" | ||
|
||
/devices: | ||
get: | ||
tags: | ||
|
@@ -1658,6 +1675,12 @@ components: | |
application/json: | ||
schema: | ||
$ref: "#/components/schemas/Error" | ||
InternalServerError: | ||
description: "Something went wrong server internally" | ||
content: | ||
application/json: | ||
schema: | ||
$ref: "#/components/schemas/Error" | ||
Unauthorized: | ||
description: "Unauthorized - you have to login first" | ||
content: | ||
|