X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=a1-med-client%2Fsrc%2Ftest%2Fjava%2Forg%2Foransc%2Fric%2Fportal%2Fdashboard%2Fa1med%2Fclient%2Ftest%2FA1MediatorClientTest.java;h=9861b0f6df160269cc75c697253c58e71d352300;hb=44203c43bb16a87eb54cc97431a026e111842c97;hp=d1ffdbf41bf74b48ac86692a3a7a67bcb49f0f3a;hpb=ace0b71ff6e424193ff6d6519a529d279e7ade58;p=portal%2Fric-dashboard.git diff --git a/a1-med-client/src/test/java/org/oransc/ric/portal/dashboard/a1med/client/test/A1MediatorClientTest.java b/a1-med-client/src/test/java/org/oransc/ric/portal/dashboard/a1med/client/test/A1MediatorClientTest.java index d1ffdbf4..9861b0f6 100644 --- a/a1-med-client/src/test/java/org/oransc/ric/portal/dashboard/a1med/client/test/A1MediatorClientTest.java +++ b/a1-med-client/src/test/java/org/oransc/ric/portal/dashboard/a1med/client/test/A1MediatorClientTest.java @@ -1,8 +1,8 @@ /*- * ========================LICENSE_START================================= - * ORAN-OSC + * O-RAN-SC * %% - * Copyright (C) 2019 AT&T Intellectual Property and Nokia + * Copyright (C) 2019 AT&T Intellectual Property * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,6 +19,7 @@ */ package org.oransc.ric.portal.dashboard.a1med.client.test; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import org.oransc.ric.a1med.client.api.A1MediatorApi; import org.oransc.ric.a1med.client.invoker.ApiClient; @@ -27,7 +28,7 @@ import org.springframework.web.client.RestClientException; /** * Demonstrates use of the generated A1 mediator client. * - * The test fails because no server is available. + * The tests fail because no server is available. */ public class A1MediatorClientTest { @@ -37,8 +38,18 @@ public class A1MediatorClientTest { apiClient.setBasePath("http://localhost:30099/"); A1MediatorApi a1Api = new A1MediatorApi(apiClient); try { - a1Api.a1ControllerGetHandler("policy"); - System.out.println("getPolicy answered: " + apiClient.getStatusCode().toString()); + Object o = a1Api.a1ControllerGetHandler("policy"); + System.out.println( + "getPolicy answered code {} " + apiClient.getStatusCode().toString() + ", content " + o.toString()); + Assertions.assertTrue(apiClient.getStatusCode().is2xxSuccessful()); + } catch (RestClientException e) { + System.err.println("getPolicy failed: " + e.toString()); + } + try { + String policy = "{}"; + a1Api.a1ControllerPutHandler("policy", policy); + System.out.println("putPolicy answered: " + apiClient.getStatusCode().toString()); + Assertions.assertTrue(apiClient.getStatusCode().is2xxSuccessful()); } catch (RestClientException e) { System.err.println("getPolicy failed: " + e.toString()); }