update the package name
[dmaap/messagerouter/dmaapclient.git] / src / test / java / org / onap / dmaap / mr / tools / ToolsUtilTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2018 Nokia
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 /**
22  * @author marcin.migdal@nokia.com
23  */
24 package org.onap.dmaap.mr.tools;
25
26 import org.onap.dmaap.mr.client.MRBatchingPublisher;
27 import java.util.Arrays;
28 import java.util.List;
29 import org.junit.Assert;
30 import org.junit.Test;
31 import org.mockito.Mockito;
32
33 public class ToolsUtilTest {
34
35     private final static List<String> clusters = Arrays.asList("Cluster1", "Cluster2");
36     private final static String apiKey = "apiKey";
37     private final static String apiPassword = "apiPassword";
38     private final static String topicName = "topicName";
39
40     @Test
41     public void createBatchPublisher() {
42         MRCommandContext mrCommandContext = Mockito.mock(MRCommandContext.class);
43         Mockito.when(mrCommandContext.getCluster()).thenReturn(clusters);
44         Mockito.when(mrCommandContext.getApiKey()).thenReturn(apiKey);
45         Mockito.when(mrCommandContext.getApiPwd()).thenReturn(apiPassword);
46
47         MRBatchingPublisher mrBatchingPublisher = ToolsUtil.createBatchPublisher(mrCommandContext, topicName);
48
49         Assert.assertNotNull(mrBatchingPublisher);
50     }
51 }