First part of onap rename
[appc.git] / appc-client / client-lib / src / test / java / org / openecomp / appc / client / impl / protocol / TestUEBMessagingService.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.client.impl.protocol;
26
27 import org.junit.*;
28 import org.junit.runners.MethodSorters;
29 import org.onap.appc.client.impl.protocol.MessagingService;
30 import org.onap.appc.client.impl.protocol.UEBMessagingService;
31
32 import java.io.IOException;
33 import java.io.InputStream;
34 import java.security.GeneralSecurityException;
35 import java.util.List;
36 import java.util.Properties;
37
38 @FixMethodOrder(MethodSorters.NAME_ASCENDING)
39 public class TestUEBMessagingService {
40
41     private static MessagingService ueb;
42
43     public static void setUp() throws IOException, GeneralSecurityException, NoSuchFieldException, IllegalAccessException {
44
45         Properties props = new Properties();
46         String propFileName = "ueb.properties";
47
48         InputStream input = TestUEBMessagingService.class.getClassLoader().getResourceAsStream(propFileName);
49
50         props.load(input);
51
52         ueb = new UEBMessagingService();
53         ueb.init(props);
54     }
55
56     public void test1Send() throws IOException {
57     System.out.println("Here");
58
59         String message = "Test Message Service";
60         ueb.send(null,message);
61     }
62
63     public void test2Fetch() throws IOException {
64
65     System.out.println("Here2");
66         List<String> messages = ueb.fetch(1);
67         Assert.assertEquals(1,messages.size());
68     }
69
70 }