aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/plans/sdc/sanity/testplan.txt
blob: 801f37d38fe6d330cdc97ffe3890cf661c587f94 (plain)
1
2
3
# Test suites are relative paths under [integration.git]/test/csit/tests/.
# Place the suites in run order.
sdc/sanity
nction.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
---
swagger: '2.0'
info:
  description: This page lists all the rest apis for PRH app server.
  version: '1.0'
  title: PRH app server
host: localhost:8100
basePath: "/"
tags:
- name: heartbeat-controller
  description: Check liveness of PRH service
- name: schedule-controller
  description: Schedule Controller
paths:
  "/heartbeat":
    get:
      tags:
      - heartbeat-controller
      summary: Returns liveness of PRH service
      operationId: heartbeatUsingGET
      produces:
      - "*/*"
      responses:
        '200':
          description: PRH sevice is living
          schema:
            "$ref": "#/definitions/Mono«ResponseEntity«string»»"
        '401':
          description: You are not authorized to view the resource
        '403':
          description: Accessing the resource you were trying to reach is forbidden
        '404':
          description: The resource you were trying to reach is not found
  "/start":
    get:
      tags:
      - schedule-controller
      summary: Start scheduling worker request
      operationId: startTasksUsingGET
      produces:
      - "*/*"
      responses:
        '200':
          description: OK
          schema:
            "$ref": "#/definitions/Mono«ResponseEntity«string»»"
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  "/stopPrh":
    get:
      tags:
      - schedule-controller
      summary: Stop scheduling worker request
      operationId: stopTaskUsingGET
      produces:
      - "*/*"
      responses:
        '200':
          description: OK
          schema:
            "$ref": "#/definitions/Mono«ResponseEntity«string»»"
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
definitions:
  Mono«ResponseEntity«string»»:
    type: object
    title: Mono«ResponseEntity«string»»