06251d40cbd4c7dc8e81a9974346dd2e39468aaf
[transportpce.git] / pce / src / test / java / org / opendaylight / transportpce / pce / impl / PceServiceRPCImplTest.java
1 /*
2  * Copyright © 2020 Orange Labs, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.transportpce.pce.impl;
10
11 import static org.junit.Assert.assertNotNull;
12
13 import java.util.concurrent.ExecutionException;
14 import org.junit.Before;
15 import org.junit.Ignore;
16 import org.junit.Test;
17 import org.opendaylight.mdsal.binding.api.NotificationPublishService;
18 import org.opendaylight.transportpce.common.network.NetworkTransactionImpl;
19 import org.opendaylight.transportpce.common.network.RequestProcessor;
20 import org.opendaylight.transportpce.pce.service.PathComputationService;
21 import org.opendaylight.transportpce.pce.service.PathComputationServiceImpl;
22 import org.opendaylight.transportpce.pce.utils.NotificationPublishServiceMock;
23 import org.opendaylight.transportpce.pce.utils.PceTestData;
24 import org.opendaylight.transportpce.pce.utils.PceTestUtils;
25 import org.opendaylight.transportpce.pce.utils.TransactionUtils;
26 import org.opendaylight.transportpce.test.AbstractTest;
27 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.pce.rev200128.CancelResourceReserveInputBuilder;
28
29
30 @Ignore
31 public class PceServiceRPCImplTest extends AbstractTest {
32
33     private PathComputationService pathComputationService;
34     private NotificationPublishService notificationPublishService;
35     private NetworkTransactionImpl networkTransaction;
36     private PceServiceRPCImpl pceServiceRPC;
37
38     @Before
39     public void setUp() throws ExecutionException, InterruptedException {
40         PceTestUtils.writeNetworkIntoDataStore(this.getDataBroker(), this.getDataStoreContextUtil(),
41                 TransactionUtils.getNetworkForSpanLoss());
42         notificationPublishService = new NotificationPublishServiceMock();
43         networkTransaction =  new NetworkTransactionImpl(new RequestProcessor(this.getDataBroker()));
44         pathComputationService = new PathComputationServiceImpl(networkTransaction, notificationPublishService,
45                 null);
46         pceServiceRPC = new PceServiceRPCImpl(pathComputationService);
47
48     }
49
50     @Test
51     public void testCancelResourceReserve() {
52         CancelResourceReserveInputBuilder cancelResourceReserveInput = new CancelResourceReserveInputBuilder();
53         assertNotNull(pceServiceRPC.cancelResourceReserve(cancelResourceReserveInput.build()));
54     }
55
56     @Test
57     public void testPathComputationRequest() {
58         assertNotNull(pceServiceRPC.pathComputationRequest(PceTestData.getPCERequest()));
59     }
60
61     @Test
62     public void testPathComputationRequestCoRoutingOrGeneral2() {
63         assertNotNull(pceServiceRPC.pathComputationRequest(
64                 PceTestData.getPathComputationRequestInputWithCoRoutingOrGeneral2()));
65     }
66 }