Skip to content

Commit

Permalink
- Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
rathnapandi committed Jan 24, 2025
1 parent 7d6cfff commit 1cf89e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void run(@Optional @CitrusResource TestContext context) throws IOExceptio
assertTrue(exportedAPIConfig.get("caCerts").get(0).get("outbound").asBoolean());

assertTrue(new File(context.getVariable("exportLocation") + "/" + context.getVariable("exportFolder1") + "/swagger.io.crt").exists(), "Certificate swagger.io.crt is missing");
assertTrue(new File(context.getVariable("exportLocation") + "/" + context.getVariable("exportFolder1") + "/StarfieldServicesRootCertificateAuthority-G2.crt").exists(), "Certificate StarfieldServicesRootCertificateAuthority-G2.crt is missing");
assertTrue(new File(context.getVariable("exportLocation") + "/" + context.getVariable("exportFolder1") + "/AmazonRSA2048M02.crt").exists(), "Certificate StarfieldServicesRootCertificateAuthority-G2.crt is missing");
assertTrue(new File(context.getVariable("exportLocation") + "/" + context.getVariable("exportFolder1") + "/AmazonRootCA1.crt").exists(), "Certificate AmazonRootCA1.crt is missing");
//assertTrue(new File(context.getVariable("exportLocation")+"/"+context.getVariable("exportFolder1")+"/Amazon.crt").exists(), "Certificate Amazon.crt is missing");
assertTrue(new File(context.getVariable("exportLocation") + "/" + context.getVariable("exportFolder1") + "/" + context.getVariable("exportAPIName1")).exists(), "Exported Swagger-File is missing");
Expand Down

0 comments on commit 1cf89e3

Please sign in to comment.