Development of NETCONF RPCs for tr-069 adapter to
[oam/tr069-adapter.git] / netconf-server / src / test / java / org / commscope / tr069adapter / netconf / operations / CustomOperationsCreatorTest.java
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : tr-069-adapter
4  * =================================================================================================
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.
6  * =================================================================================================
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
9  * may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14  * either express or implied. See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ===============LICENSE_END=======================================================================
17  */
18
19 package org.commscope.tr069adapter.netconf.operations;
20
21 import static org.junit.Assert.assertNotNull;
22 import static org.junit.Assert.assertTrue;
23
24 import java.util.HashSet;
25 import java.util.Set;
26
27 import org.junit.jupiter.api.Test;
28 import org.opendaylight.netconf.api.capability.Capability;
29 import org.opendaylight.netconf.impl.SessionIdProvider;
30 import org.opendaylight.netconf.mapping.api.NetconfOperation;
31
32 class CustomOperationsCreatorTest {
33
34   @Test
35   void testCustomOperationsCreator() {
36     CustomOperationsCreator coc = getCustomOperationsCreator();
37     Set<Capability> capabilities = new HashSet<Capability>();
38     Set<NetconfOperation> opers =
39         coc.getNetconfOperationService(capabilities, new SessionIdProvider(), "1")
40             .getNetconfOperations();
41     assertNotNull(opers);
42     assertTrue(!opers.isEmpty());
43   }
44
45   CustomOperationsCreator getCustomOperationsCreator() {
46     CustomOperationsCreator coc = new CustomOperationsCreator("0005B9AB1", "4.3.0", "*");
47     return coc;
48   }
49
50 }