Remove spaces from dockerbuild script
[aaf/authz.git] / auth / auth-cass / src / test / java / org / onap / aaf / auth / direct / test / JU_DirectAAFUserPass.java
1 /*******************************************************************************
2  * ============LICENSE_START====================================================
3  * * org.onap.aaf
4  * * ===========================================================================
5  * * Copyright © 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  ******************************************************************************/
22 package org.onap.aaf.auth.direct.test;
23
24 import static org.junit.Assert.*;
25
26 import org.junit.Before;
27 import org.junit.Test;
28
29 import static org.mockito.Mockito.*;
30 import org.junit.Before;
31 import org.junit.Test;
32 import org.junit.runner.RunWith;
33 import org.mockito.Mock;
34 import org.mockito.runners.MockitoJUnitRunner;
35 import org.onap.aaf.auth.dao.hl.Question;
36 import org.onap.aaf.auth.direct.DirectAAFUserPass;
37 import org.onap.aaf.auth.env.AuthzEnv;
38 import org.onap.aaf.cadi.CredVal.Type;
39 import org.powermock.core.classloader.annotations.PrepareForTest;
40 import org.powermock.core.classloader.annotations.SuppressStaticInitializationFor;
41 import org.powermock.modules.junit4.PowerMockRunner;
42
43 @RunWith(PowerMockRunner.class)
44 public class JU_DirectAAFUserPass {
45
46         // TODO: Ian - This test is in shambles. fix it
47
48         //public static AuthzEnv env;
49         //public static Question question;
50         public DirectAAFUserPass directAAFUserPass;
51
52         @Mock
53         AuthzEnv env;
54
55         @Mock
56         Question question;
57
58         String user;
59
60         Type type; 
61
62         byte[] pass;
63
64         @Before
65         public void setUp() {
66                 directAAFUserPass = new DirectAAFUserPass(env, question);
67         }
68
69         @Test
70         public void testvalidate(){
71
72                 //      Boolean bolVal =  directAAFUserPass.validate(user, type, pass);
73                 //      assertEquals((bolVal==null),true);
74
75                 assertTrue(true);
76
77         }
78
79         @Test
80         public void notYetTested() {
81                 fail("Tests not yet implemented");
82         }
83
84 }