b19e07f9dde07202a20aef4c3962ae9130bbe7bf
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / onap / policy / std / ManualClientEndDMAAPTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineAPI
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (C) 2019 Samsung
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  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.std;
24
25 import static org.junit.Assert.assertNull;
26 import static org.junit.Assert.fail;
27 import java.util.ArrayList;
28 import java.util.List;
29 import org.junit.Test;
30 import org.onap.policy.api.NotificationScheme;
31 import org.onap.policy.api.PDPNotification;
32
33 public class ManualClientEndDMAAPTest {
34     @Test
35     public void testStaticMethods() {
36         // Negative test result
37         PDPNotification notification =
38                 ManualClientEndDMAAP.result(NotificationScheme.AUTO_ALL_NOTIFICATIONS);
39         assertNull(notification);
40
41         // Negative test create and start
42         String topic = "testTopic";
43         String uniqueID = "testID";
44         List<String> dmaapList = new ArrayList<String>();
45         String aafLogin = "testLogin";
46         String aafPassword = "testPassword";
47         try {
48             ManualClientEndDMAAP.createTopic(topic, uniqueID, dmaapList, aafLogin, aafPassword);
49             ManualClientEndDMAAP.start(dmaapList, topic, aafLogin, aafPassword, uniqueID);
50         } catch (Exception ex) {
51             fail("Not expecting any exception: " + ex);
52         }
53     }
54 }