X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=enrichment-coordinator-service%2Fsrc%2Ftest%2Fjava%2Forg%2Foransc%2Fenrichment%2Fcontroller%2FProducerSimulatorController.java;h=1c0767b01e759ea3c9ba359c2056fd4eb43daedf;hb=a893ee0669b7820fdb30af24b213ea69956377e1;hp=2a3688cf97d214f14514dab9e4b9b41efe4909eb;hpb=8489de0f43f28c5cd62206b4e242c0308f9864b9;p=nonrtric.git diff --git a/enrichment-coordinator-service/src/test/java/org/oransc/enrichment/controller/ProducerSimulatorController.java b/enrichment-coordinator-service/src/test/java/org/oransc/enrichment/controller/ProducerSimulatorController.java index 2a3688cf..1c0767b0 100644 --- a/enrichment-coordinator-service/src/test/java/org/oransc/enrichment/controller/ProducerSimulatorController.java +++ b/enrichment-coordinator-service/src/test/java/org/oransc/enrichment/controller/ProducerSimulatorController.java @@ -20,10 +20,12 @@ package org.oransc.enrichment.controller; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.ApiResponse; -import io.swagger.annotations.ApiResponses; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.media.Content; +import io.swagger.v3.oas.annotations.media.Schema; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.responses.ApiResponses; +import io.swagger.v3.oas.annotations.tags.Tag; import java.lang.invoke.MethodHandles; import java.util.ArrayList; @@ -34,7 +36,8 @@ import lombok.Getter; import org.oransc.enrichment.controllers.ErrorResponse; import org.oransc.enrichment.controllers.VoidResponse; -import org.oransc.enrichment.controllers.producer.ProducerJobInfo; +import org.oransc.enrichment.controllers.r1producer.ProducerConsts; +import org.oransc.enrichment.controllers.r1producer.ProducerJobInfo; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.http.HttpStatus; @@ -48,13 +51,13 @@ import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RestController; @RestController("ProducerSimulatorController") -@Api(tags = {"Producer Callbacks"}) +@Tag(name = ProducerConsts.PRODUCER_API_CALLBACKS_NAME) public class ProducerSimulatorController { private final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); - public static final String JOB_URL = "/producer_simulator/ei_job"; - public static final String JOB_ERROR_URL = "/producer_simulator/ei_job_error"; + public static final String JOB_URL = "/producer_simulator/info_job"; + public static final String JOB_ERROR_URL = "/producer_simulator/info_job_error"; public static final String SUPERVISION_URL = "/producer_simulator/health_check"; public static final String SUPERVISION_ERROR_URL = "/producer_simulator/health_check_error"; @@ -83,11 +86,16 @@ public class ProducerSimulatorController { private TestResults testResults = new TestResults(); @PostMapping(path = JOB_URL, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation(value = "Callback for EI job creation", notes = "") + @Operation( + summary = "Callback for Information Job creation/modification", + description = "The call is invoked to activate or to modify a data subscription. The endpoint is provided by the Information Producer.") @ApiResponses( value = { // - @ApiResponse(code = 200, message = "OK", response = VoidResponse.class)}// - ) + @ApiResponse( + responseCode = "200", + description = "OK", // + content = @Content(schema = @Schema(implementation = VoidResponse.class))) // + }) public ResponseEntity jobCreatedCallback( // @RequestBody ProducerJobInfo request) { try { @@ -103,17 +111,22 @@ public class ProducerSimulatorController { } } - @DeleteMapping(path = "/producer_simulator/ei_job/{eiJobId}", produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation(value = "Callback for EI job deletion", notes = "") + @DeleteMapping(path = "/producer_simulator/info_job/{infoJobId}", produces = MediaType.APPLICATION_JSON_VALUE) + @Operation( + summary = "Callback for Information Job deletion", + description = "The call is invoked to terminate a data subscription. The endpoint is provided by the Information Producer.") @ApiResponses( value = { // - @ApiResponse(code = 200, message = "OK", response = VoidResponse.class)}// - ) + @ApiResponse( + responseCode = "200", + description = "OK", // + content = @Content(schema = @Schema(implementation = VoidResponse.class))) // + }) public ResponseEntity jobDeletedCallback( // - @PathVariable("eiJobId") String eiJobId) { + @PathVariable("infoJobId") String infoJobId) { try { - logger.info("Job deleted callback {}", eiJobId); - this.testResults.jobsStopped.add(eiJobId); + logger.info("Job deleted callback {}", infoJobId); + this.testResults.jobsStopped.add(infoJobId); return new ResponseEntity<>(HttpStatus.OK); } catch (Exception e) { return ErrorResponse.create(e, HttpStatus.NOT_FOUND); @@ -121,11 +134,14 @@ public class ProducerSimulatorController { } @PostMapping(path = JOB_ERROR_URL, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation(value = "Callback for EI job creation, returns error", notes = "", hidden = true) + @Operation(summary = "Callback for Information Job creation, returns error", description = "", hidden = true) @ApiResponses( value = { // - @ApiResponse(code = 200, message = "OK", response = VoidResponse.class)}// - ) + @ApiResponse( + responseCode = "200", + description = "OK", // + content = @Content(schema = @Schema(implementation = VoidResponse.class))) // + }) public ResponseEntity jobCreatedCallbackReturnError( // @RequestBody ProducerJobInfo request) { logger.info("Job created (returning error) callback {}", request.id); @@ -133,36 +149,47 @@ public class ProducerSimulatorController { return ErrorResponse.create("Producer returns error on create job", HttpStatus.NOT_FOUND); } - @DeleteMapping(path = JOB_ERROR_URL + "/{eiJobId}", produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation(value = "Callback for EI job creation, returns error", notes = "", hidden = true) + @DeleteMapping(path = JOB_ERROR_URL + "/{infoJobId}", produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(summary = "Callback for Information Job deletion, returns error", description = "", hidden = true) @ApiResponses( value = { // - @ApiResponse(code = 200, message = "OK", response = VoidResponse.class)}// - ) + @ApiResponse( + responseCode = "200", + description = "OK", // + content = @Content(schema = @Schema(implementation = VoidResponse.class))) // + }) public ResponseEntity jobDeletedCallbackReturnError( // - @RequestBody ProducerJobInfo request) { - logger.info("Job created (returning error) callback {}", request.id); + @PathVariable("infoJobId") String infoJobId) { + logger.info("Job created (returning error) callback {}", infoJobId); this.testResults.noOfRejectedDelete += 1; return ErrorResponse.create("Producer returns error on delete job", HttpStatus.NOT_FOUND); } @GetMapping(path = SUPERVISION_URL, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation(value = "Producer supervision", notes = "") + @Operation( + summary = "Producer supervision", + description = "The endpoint is provided by the Information Producer and is used for supervision of the producer.") @ApiResponses( value = { // - @ApiResponse(code = 200, message = "OK", response = String.class)}// - ) + @ApiResponse( + responseCode = "200", + description = "The producer is OK", // + content = @Content(schema = @Schema(implementation = String.class))) // + }) public ResponseEntity producerSupervision() { logger.info("Producer supervision"); return new ResponseEntity<>(HttpStatus.OK); } @GetMapping(path = SUPERVISION_ERROR_URL, produces = MediaType.APPLICATION_JSON_VALUE) - @ApiOperation(value = "Producer supervision error", notes = "", hidden = true) + @Operation(summary = "Producer supervision error", description = "", hidden = true) @ApiResponses( value = { // - @ApiResponse(code = 200, message = "OK", response = String.class)}// - ) + @ApiResponse( + responseCode = "200", + description = "OK", // + content = @Content(schema = @Schema(implementation = String.class))) // + }) public ResponseEntity producerSupervisionError() { logger.info("Producer supervision error"); return new ResponseEntity<>(HttpStatus.NOT_FOUND);