adding some unit tests for PceServiceRPCImpl
[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.Test;
16 import org.opendaylight.mdsal.binding.api.NotificationPublishService;
17 import org.opendaylight.transportpce.common.network.NetworkTransactionImpl;
18 import org.opendaylight.transportpce.common.network.RequestProcessor;
19 import org.opendaylight.transportpce.pce.service.PathComputationService;
20 import org.opendaylight.transportpce.pce.service.PathComputationServiceImpl;
21 import org.opendaylight.transportpce.pce.utils.NotificationPublishServiceMock;
22 import org.opendaylight.transportpce.pce.utils.PceTestData;
23 import org.opendaylight.transportpce.pce.utils.PceTestUtils;
24 import org.opendaylight.transportpce.pce.utils.TransactionUtils;
25 import org.opendaylight.transportpce.test.AbstractTest;
26 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.pce.rev200128.CancelResourceReserveInputBuilder;
27
28
29
30
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         pceServiceRPC = new PceServiceRPCImpl(pathComputationService);
46
47     }
48
49     @Test
50     public void testCancelResourceReserve() {
51         CancelResourceReserveInputBuilder cancelResourceReserveInput = new CancelResourceReserveInputBuilder();
52         assertNotNull(pceServiceRPC.cancelResourceReserve(cancelResourceReserveInput.build()));
53     }
54
55     @Test
56     public void testPathComputationRequest() {
57         assertNotNull(pceServiceRPC.pathComputationRequest(PceTestData.getPCERequest()));
58     }
59
60     @Test
61     public void testPathComputationRequestCoRoutingOrGeneral2() {
62         assertNotNull(pceServiceRPC.pathComputationRequest(
63                 PceTestData.getPathComputationRequestInputWithCoRoutingOrGeneral2()));
64     }
65 }