update the package name
[dmaap/messagerouter/dmaapclient.git] / src / test / java / org / onap / dmaap / mr / tools / AuthCommandTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 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.dmaap.mr.tools;
22
23 import static org.junit.Assert.assertTrue;
24
25 import java.io.PrintStream;
26
27 import org.junit.After;
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.junit.runner.RunWith;
31 import org.mockito.InjectMocks;
32 import org.mockito.Mock;
33 import org.mockito.MockitoAnnotations;
34 import org.powermock.modules.junit4.PowerMockRunner;
35
36 import com.att.nsa.cmdtool.CommandNotReadyException;
37
38 @RunWith(PowerMockRunner.class)
39 public class AuthCommandTest {
40         @InjectMocks
41         private AuthCommand command = null;
42         @Mock
43         private PrintStream printStream;
44
45         @Before
46         public void setUp() throws Exception {
47                 MockitoAnnotations.initMocks(this);
48
49         }
50
51         @After
52         public void tearDown() throws Exception {
53
54         }
55
56         @Test
57         public void testGetMatches() {
58
59                 command.getMatches();
60                 assertTrue(true);
61
62         }
63
64         @Test
65         public void testCheckReady() {
66
67                 try {
68                         command.checkReady(new MRCommandContext());
69                 } catch (CommandNotReadyException e) {
70                         // TODO Auto-generated catch block
71                         e.printStackTrace();
72                 }
73                 assertTrue(true);
74
75         }
76
77         @Test
78         public void testExecute() {
79
80                 try {
81                         String[] parts = new String[5];
82                         command.execute(parts, new MRCommandContext(), printStream);
83                 } catch (CommandNotReadyException e) {
84                         // TODO Auto-generated catch block
85                         e.printStackTrace();
86                 }
87                 assertTrue(true);
88
89         }
90
91         @Test
92         public void testExecute1() {
93
94                 try {
95                         String[] parts = { "userName", "password" };
96                         command.execute(parts, new MRCommandContext(), printStream);
97                 } catch (CommandNotReadyException e) {
98                         // TODO Auto-generated catch block
99                         e.printStackTrace();
100                 }
101                 assertTrue(true);
102
103         }
104
105         @Test
106         public void testDisplayHelp() {
107
108                 command.displayHelp(printStream);
109                 assertTrue(true);
110
111         }
112
113 }