12ccd4c6260ce6baa3954c2a55d68cac66638a54
[ccsdk/features.git] /
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt mountpoint-registrar
4  * =================================================================================================
5  * Copyright (C) 2021 Samsung Electronics Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18
19 package org.onap.ccsdk.features.sdnr.wt.mountpointregistrar.test;
20
21 import static org.junit.Assert.assertTrue;
22
23 import java.util.Map;
24 import javax.annotation.Nonnull;
25 import org.junit.Test;
26 import org.onap.ccsdk.features.sdnr.wt.common.http.BaseHTTPResponse;
27 import org.onap.ccsdk.features.sdnr.wt.mountpointregistrar.impl.CMBasicHeaderFieldsNotification;
28 import org.onap.ccsdk.features.sdnr.wt.mountpointregistrar.impl.CMNotification;
29 import org.onap.ccsdk.features.sdnr.wt.mountpointregistrar.impl.CMNotificationClient;
30
31 public class TestCMNotificationClient extends CMNotificationClient {
32     public static String baseUrl = "http://localhost:8181";
33     CMNotificationClient testClient;
34
35     public TestCMNotificationClient() {
36         super(baseUrl);
37     }
38
39     @Test
40     public void testCMNotificationClient() {
41         testClient = new TestCMNotificationClient();
42         testClient.setAuthorization("admin", "admin");
43
44         String msg = testClient.prepareMessageFromPayloadMap(
45             CMNotificationClient.createCMNotificationPayloadMap(
46                 CMNotification.builder()
47                     .withCMBasicHeaderFieldsNotification(CMBasicHeaderFieldsNotification.builder()
48                         .withCMNodeId("test-node")
49                         .withCMSequence("1")
50                         .withCMOccurrenceTime("2021-10-18T15:25:19.948Z")
51                         .withSourceId("src_device_id_1732")
52                         .withNotificationType("notifyMOIChanges")
53                         .build())
54                     .withCMNotificationId("123")
55                     .withCMSourceIndicator("UNKNOWN")
56                     .withCMPath("http://samsung.com/ves=1")
57                     .withCMOperation("CREATE")
58                     .withCMValue("value")
59                     .build()
60             ));
61         assertTrue(testClient.sendNotification(msg));
62     }
63
64     @Override
65     @Nonnull
66     public BaseHTTPResponse sendRequest(String uri, String method, String body, Map<String, String> headers) {
67         System.out.println("In overridden sendRequest in TestCMNotificationClient");
68         return new BaseHTTPResponse(200, body);
69     }
70 }