First part of onap rename
[appc.git] / appc-adapters / appc-netconf-adapter / appc-netconf-adapter-bundle / src / test / java / org / onap / appc / adapter / netconf / jsch / TestModifyConfigRouterMock.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.adapter.netconf.jsch;
26
27 import java.util.Collections;
28 import java.util.List;
29
30 import org.onap.appc.adapter.netconf.NetconfConnectionDetails;
31 import org.onap.appc.adapter.netconf.jsch.NetconfClientJsch;
32 import org.onap.appc.exceptions.APPCException;
33
34 public class TestModifyConfigRouterMock {
35
36     private static final String HOST = "10.147.27.50"; // yuma netconf simulator
37     private static final int PORT = 830;
38     private static final String USER = "admin";
39     private static final String PSWD = "admin";
40     private static final List<String> CAPABILITIES = Collections.emptyList();
41     private static final String CONFIG =
42             "<rpc message-id=\"101\" xmlns=\"urn:ietf:params:xml:ns:netconf:base:1.0\">\n" +
43             "  <edit-config>\n" +
44             "    <target>\n" +
45             "      <candidate/>\n" +
46             "    </target>\n" +
47             "    <config xmlns:xc=\"urn:ietf:params:xml:ns:netconf:base:1.0\">\n" +
48             "      <router xmlns=\"urn:sdnhub:odl:tutorial:router\">\n" +
49             "        <ospf>\n" +
50             "          <process-id>1</process-id>\n" +
51             "          <networks>\n" +
52             "            <subnet-ip>100.100.100.0/24</subnet-ip>\n" +
53             "            <area-id>10</area-id>\n" +
54             "          </networks>\n" +
55             "        </ospf>\n" +
56             "        <bgp>\n" +
57             "          <as-number>1000</as-number>\n" +
58             "          <router-id>10.10.1.1</router-id>\n" +
59             "          <neighbors>\n" +
60             "            <as-number>2000</as-number>\n" +
61             "            <peer-ip>10.10.1.2</peer-ip>\n" +
62             "          </neighbors>\n" +
63             "        </bgp>\n" +
64             "      </router>\n" +
65             "    </config>\n" +
66             "  </edit-config>\n" +
67             "</rpc>\n";
68
69     public static void main(String[] args) throws APPCException {
70         try {
71             NetconfConnectionDetails connectionDetails = new NetconfConnectionDetails();
72             connectionDetails.setHost(HOST);
73             connectionDetails.setPort(PORT);
74             connectionDetails.setUsername(USER);
75             connectionDetails.setPassword(PSWD);
76             connectionDetails.setCapabilities(CAPABILITIES);
77             NetconfClientJsch netconfClientJsch = new NetconfClientJsch();
78             netconfClientJsch.connect(connectionDetails);
79             try {
80                 System.out.println("=> Running get configuration...");
81                 String configuration = netconfClientJsch.getConfiguration();
82                 System.out.println("=> Configuration:\n" + configuration);
83
84                 System.out.println("=> Reconfiguring device...");
85                 String outMessage = netconfClientJsch.exchangeMessage(CONFIG);
86                 System.out.println("=> Reconfiguration response:\n" + outMessage);
87             } finally {
88                 netconfClientJsch.disconnect();
89             }
90         } catch(Exception e) {
91             e.printStackTrace();
92         }
93     }
94 }