Omitting the basic auth header in healthcheck test 81/137081/3
authorwaqas.ikram <waqas.ikram@est.tech>
Thu, 25 Jan 2024 11:36:16 +0000 (11:36 +0000)
committerwaqas.ikram <waqas.ikram@est.tech>
Thu, 25 Jan 2024 13:22:54 +0000 (13:22 +0000)
as it is not required and adding v3 to uri of api-docs

Issue-ID: CPS-2045
Change-Id: If229bbd46a5c5187ddac242f8bfda00d5c951995
Signed-off-by: waqas.ikram <waqas.ikram@est.tech>
cps-application/src/main/resources/application.yml
csit/tests/actuator/actuator.robot

index 4e20a4b..e56e0e1 100644 (file)
@@ -142,7 +142,7 @@ springdoc:
 
 security:
     # comma-separated uri patterns which do not require authorization
-    permit-uri: /actuator/**,/swagger-ui.html,/swagger-ui/**,/swagger-resources/**,/api-docs/**
+    permit-uri: /actuator/**,/swagger-ui.html,/swagger-ui/**,/swagger-resources/**,/api-docs/**,/v3/api-docs/**
     auth:
         username: ${CPS_USERNAME}
         password: ${CPS_PASSWORD}
@@ -209,4 +209,4 @@ hazelcast:
     mode:
         kubernetes:
             enabled: ${HAZELCAST_MODE_KUBERNETES_ENABLED:false}
-            service-name: ${CPS_NCMP_SERVICE_NAME:"cps-and-ncmp-service"}
\ No newline at end of file
+            service-name: ${CPS_NCMP_SERVICE_NAME:"cps-and-ncmp-service"}
index b1cf102..e010fdd 100644 (file)
@@ -27,7 +27,6 @@ Library               RequestsLibrary
 Suite Setup           Create Session      CPS_URL    http://${CPS_CORE_HOST}:${CPS_CORE_PORT}
 
 *** Variables ***
-${auth}              Basic Y3BzdXNlcjpjcHNyMGNrcyE=
 ${actuatorPath}      /actuator/health
 ${swaggerPath}       /swagger-ui/index.html
 
@@ -43,5 +42,4 @@ Test CPS Enhanced Healthcheck
 
 Test CPS Swagger UI
     [Documentation]       Runs health check for CPS Swagger UI. If the CPS Swagger URL is accessible, status should be 200.
-    ${headers}=           Create Dictionary   Authorization=${auth}
-    GET On Session        CPS_URL             ${swaggerPath}    headers=${headers}    expected_status=200
+    GET On Session        CPS_URL             ${swaggerPath}    expected_status=200