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
10 * http://www.apache.org/licenses/LICENSE-2.0
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
16 * ============LICENSE_END==========================================================================
19 package org.onap.ccsdk.features.sdnr.wt.mountpointregistrar.test;
21 import static org.junit.Assert.assertTrue;
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;
31 public class TestCMNotificationClient extends CMNotificationClient {
32 public static String baseUrl = "http://localhost:8181";
33 CMNotificationClient testClient;
35 public TestCMNotificationClient() {
40 public void testCMNotificationClient() {
41 testClient = new TestCMNotificationClient();
42 testClient.setAuthorization("admin", "admin");
44 String msg = testClient.prepareMessageFromPayloadMap(
45 CMNotificationClient.createCMNotificationPayloadMap(
46 CMNotification.builder()
47 .withCMBasicHeaderFieldsNotification(CMBasicHeaderFieldsNotification.builder()
48 .withCMNodeId("test-node")
50 .withCMOccurrenceTime("2021-10-18T15:25:19.948Z")
51 .withSourceId("src_device_id_1732")
52 .withNotificationType("notifyMOIChanges")
54 .withCMNotificationId("123")
55 .withCMSourceIndicator("UNKNOWN")
56 .withCMPath("http://samsung.com/ves=1")
57 .withCMOperation("CREATE")
61 assertTrue(testClient.sendNotification(msg));
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);