cf9c1a7cee3bf73d7ea18aa074d07e4ee7da41e9
[dmaap/messagerouter/dmaapclient.git] / src / test / java / com / att / nsa / mr / tools / ClusterCommandTest.java
1 /*-\r
2  * ============LICENSE_START=======================================================\r
3  * ONAP Policy Engine\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ============LICENSE_END=========================================================\r
19  */\r
20 \r
21 package com.att.nsa.mr.tools;\r
22 \r
23 import static org.junit.Assert.assertTrue;\r
24 \r
25 import java.io.FileNotFoundException;\r
26 import java.io.PrintStream;\r
27 import java.util.Arrays;\r
28 \r
29 import org.junit.After;\r
30 import org.junit.Before;\r
31 import org.junit.Test;\r
32 import org.junit.runner.RunWith;\r
33 import org.mockito.InjectMocks;\r
34 import org.mockito.Mock;\r
35 import org.mockito.MockitoAnnotations;\r
36 import org.powermock.api.mockito.PowerMockito;\r
37 import org.powermock.modules.junit4.PowerMockRunner;\r
38 \r
39 import com.att.nsa.cmdtool.CommandNotReadyException;\r
40 \r
41 @RunWith(PowerMockRunner.class)\r
42 public class ClusterCommandTest {\r
43         @InjectMocks\r
44         private ClusterCommand command;\r
45         @Mock\r
46         private MRCommandContext context;\r
47         @Mock\r
48         private PrintStream printStream;\r
49 \r
50         @Before\r
51         public void setUp() throws Exception {\r
52                 MockitoAnnotations.initMocks(this);\r
53                 PowerMockito.when(context.getCluster()).thenReturn(Arrays.asList("localhost"));\r
54         }\r
55 \r
56         @After\r
57         public void tearDown() throws Exception {\r
58 \r
59         }\r
60 \r
61         @Test\r
62         public void testGetMatches() {\r
63 \r
64                 command.getMatches();\r
65                 assertTrue(true);\r
66 \r
67         }\r
68 \r
69         @Test\r
70         public void testCheckReady() {\r
71 \r
72                 try {\r
73                         command.checkReady(context);\r
74                 } catch (CommandNotReadyException e) {\r
75                         // TODO Auto-generated catch block\r
76                         e.printStackTrace();\r
77                 }\r
78                 assertTrue(true);\r
79 \r
80         }\r
81 \r
82         @Test\r
83         public void testExecute() throws FileNotFoundException, CommandNotReadyException {\r
84                 String[] parts = { "create", "testtopic", "1", "1" };\r
85                 command.execute(parts, context, printStream);\r
86                 assertTrue(true);\r
87 \r
88         }\r
89 \r
90         @Test\r
91         public void testExecute1() throws FileNotFoundException, CommandNotReadyException {\r
92                 String[] parts = {};\r
93                 command.execute(parts, context, printStream);\r
94                 assertTrue(true);\r
95 \r
96         }\r
97 \r
98         @Test\r
99         public void testDisplayHelp() {\r
100 \r
101                 command.displayHelp(printStream);\r
102                 assertTrue(true);\r
103 \r
104         }\r
105 \r
106 }\r