6ac106a07621680f34f57275f15701d7b4a766a1
[dmaap/messagerouter/dmaapclient.git] / src / test / java / com / att / nsa / mr / tools / TraceCommandTest.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.PrintStream;\r
26 \r
27 import org.junit.After;\r
28 import org.junit.Before;\r
29 import org.junit.Test;\r
30 import org.junit.runner.RunWith;\r
31 import org.mockito.InjectMocks;\r
32 import org.mockito.Mock;\r
33 import org.mockito.MockitoAnnotations;\r
34 import org.powermock.modules.junit4.PowerMockRunner;\r
35 \r
36 import com.att.nsa.cmdtool.CommandNotReadyException;\r
37 \r
38 @RunWith(PowerMockRunner.class)\r
39 public class TraceCommandTest {\r
40         @InjectMocks\r
41         private TraceCommand command;\r
42         private String[] parts = new String[5];\r
43         @Mock\r
44         private PrintStream printStream;\r
45 \r
46         @Before\r
47         public void setUp() throws Exception {\r
48                 MockitoAnnotations.initMocks(this);\r
49                 for (int i = 0; i < parts.length; i++) {\r
50                         parts[i] = "String" + (i + 1);\r
51                 }\r
52 \r
53         }\r
54 \r
55         @After\r
56         public void tearDown() throws Exception {\r
57 \r
58         }\r
59 \r
60         @Test\r
61         public void testGetMatches() {\r
62 \r
63                 command.getMatches();\r
64                 assertTrue(true);\r
65 \r
66         }\r
67 \r
68         @Test\r
69         public void testCheckReady() {\r
70 \r
71                 try {\r
72                         command.checkReady(new MRCommandContext());\r
73                 } catch (CommandNotReadyException e) {\r
74                         // TODO Auto-generated catch block\r
75                         e.printStackTrace();\r
76                 }\r
77                 assertTrue(true);\r
78 \r
79         }\r
80 \r
81         @Test\r
82         public void testExecute() {\r
83 \r
84                 try {\r
85                         command.execute(parts, new MRCommandContext(), printStream);\r
86                 } catch (CommandNotReadyException e) {\r
87                         // TODO Auto-generated catch block\r
88                         e.printStackTrace();\r
89                 }\r
90                 assertTrue(true);\r
91 \r
92         }\r
93 \r
94         @Test\r
95         public void testDisplayHelp() {\r
96 \r
97                 command.displayHelp(printStream);\r
98                 assertTrue(true);\r
99 \r
100         }\r
101 \r
102 }\r