8c0c6c4e011e8f88672f5ed5ba86a5ba1be4ec07
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / onap / policy / std / ManualClientEndDMAAPTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.std;
22
23 import static org.junit.Assert.assertNull;
24 import static org.junit.Assert.fail;
25 import java.util.ArrayList;
26 import java.util.List;
27 import org.junit.Test;
28 import org.onap.policy.api.NotificationScheme;
29 import org.onap.policy.api.PDPNotification;
30
31 public class ManualClientEndDMAAPTest {
32         @Test
33         public void testStaticMethods() {
34                 // Negative test result
35                 PDPNotification notification = ManualClientEndDMAAP.result(NotificationScheme.AUTO_ALL_NOTIFICATIONS);
36                 assertNull(notification);
37                 
38                 // Negative test create and start
39                 String topic = "testTopic";
40                 String uniqueID = "testID";
41                 List<String> dmaapList = new ArrayList<String>();
42                 String aafLogin = "testLogin";
43                 String aafPassword = "testPassword";
44                 try {
45                         ManualClientEndDMAAP.createTopic(topic, uniqueID, dmaapList, aafLogin, aafPassword);
46                         ManualClientEndDMAAP.start(dmaapList, topic, aafLogin, aafPassword, uniqueID);
47                 }
48                 catch (Exception ex) {
49                         fail("Not expecting any exception: " + ex);
50                 }
51         }
52 }