Convert PathComputationServiceImpl into Component
[transportpce.git] / pce / src / test / java / org / opendaylight / transportpce / pce / service / PathComputationServiceImplTest.java
index 71d57e075c300af6cb6dba39fe8aba2c4d765dcf..4408d094ed0e3ff4f726888a2ba29f067a1e55b6 100644 (file)
@@ -5,32 +5,76 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-package org.opendaylight.transportpce.pce.utils.service;
-
-import org.junit.Assert;
-import org.junit.Before;
-import org.junit.Test;
-import org.opendaylight.transportpce.common.network.NetworkTransactionImpl;
-import org.opendaylight.transportpce.common.network.RequestProcessor;
-import org.opendaylight.transportpce.pce.service.PathComputationServiceImpl;
+package org.opendaylight.transportpce.pce.service;
+
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+
+import java.util.Map;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+import org.mockito.Mockito;
+import org.opendaylight.transportpce.common.network.NetworkTransactionService;
 import org.opendaylight.transportpce.pce.utils.PceTestData;
 import org.opendaylight.transportpce.test.AbstractTest;
+import org.opendaylight.yang.gen.v1.gnpy.path.rev220615.PathBandwidth;
+import org.opendaylight.yang.gen.v1.gnpy.path.rev220615.generic.path.properties.PathPropertiesBuilder;
+import org.opendaylight.yang.gen.v1.gnpy.path.rev220615.generic.path.properties.path.properties.PathMetric;
+import org.opendaylight.yang.gen.v1.gnpy.path.rev220615.generic.path.properties.path.properties.PathMetricBuilder;
+import org.opendaylight.yang.gen.v1.gnpy.path.rev220615.no.path.info.NoPathBuilder;
+import org.opendaylight.yang.gen.v1.gnpy.path.rev220615.result.Response;
+import org.opendaylight.yang.gen.v1.gnpy.path.rev220615.result.ResponseBuilder;
+import org.opendaylight.yang.gen.v1.gnpy.path.rev220615.result.ResponseKey;
+import org.opendaylight.yang.gen.v1.gnpy.path.rev220615.result.response.response.type.NoPathCaseBuilder;
+import org.opendaylight.yang.gen.v1.gnpy.path.rev220615.result.response.response.type.PathCaseBuilder;
+import org.opendaylight.yangtools.yang.common.Decimal64;
 
 public class PathComputationServiceImplTest extends AbstractTest {
 
     private PathComputationServiceImpl pathComputationServiceImpl;
+    private static NetworkTransactionService networkTransactionService = null;
 
-    @Before
-    public void setUp() {
+    @BeforeEach
+    void setUp() {
+        networkTransactionService = Mockito.mock(NetworkTransactionService.class);
         pathComputationServiceImpl = new PathComputationServiceImpl(
-                new NetworkTransactionImpl(new RequestProcessor(this.getDataBroker())),
-                this.getNotificationPublishService());
-        pathComputationServiceImpl.init();
+                networkTransactionService,
+                this.getNotificationPublishService(), null, null);
+    }
+
+    @Test
+    void pathComputationRequestTest() {
+        pathComputationServiceImpl.generateGnpyResponse(null,"path");
+        assertNotNull(
+            pathComputationServiceImpl.pathComputationRequest(PceTestData.getPCE_simpletopology_test1_request()));
+    }
+
+    @Test
+    void testPathComputationRequestNoPath() {
+        Response response = new ResponseBuilder()
+                .withKey(new ResponseKey("responseId")).setResponseType(new NoPathCaseBuilder()
+                .setNoPath(new NoPathBuilder().setNoPath("no path").build()).build()).build();
+
+        pathComputationServiceImpl.generateGnpyResponse(response,"path");
+        assertNotNull(pathComputationServiceImpl.pathComputationRequest(PceTestData.getPCE_test3_request_54()));
+    }
+
+    @Test
+    void testPathComputationRequestPathCase() {
+        PathMetric pathMetric = new PathMetricBuilder()
+                .setAccumulativeValue(Decimal64.valueOf("21"))
+                .setMetricType(PathBandwidth.VALUE).build();
+        Response response = new ResponseBuilder()
+                .withKey(new ResponseKey("responseId")).setResponseType(new PathCaseBuilder()
+                .setPathProperties(new PathPropertiesBuilder().setPathMetric(Map.of(pathMetric.key(),pathMetric))
+                .build()).build()).build();
+
+        pathComputationServiceImpl.generateGnpyResponse(response,"path");
+        assertNotNull(pathComputationServiceImpl.pathComputationRequest(PceTestData.getPCE_test3_request_54()));
     }
 
     @Test
-    public void pathComputationRequestTest() {
-        Assert.assertNotNull(pathComputationServiceImpl.pathComputationRequest(PceTestData.getPCERequest()));
-        pathComputationServiceImpl.close();
+    void pathComputationRerouteRequestTest() {
+        pathComputationServiceImpl.generateGnpyResponse(null,"path");
+        assertNotNull(pathComputationServiceImpl.pathComputationRerouteRequest(PceTestData.getPCEReroute()));
     }
 }