[AAF-21] Updated Copyright Headers for AAF
[aaf/authz.git] / authz-cmd / src / test / java / com / att / cmd / user / JU_Cred.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aaf\r
4  * * ===========================================================================\r
5  * * Copyright © 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  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 package com.att.cmd.user;\r
24 \r
25 import static org.junit.Assert.assertEquals;\r
26 import static org.junit.Assert.assertNotNull;\r
27 import static org.mockito.Mockito.mock;\r
28 import static org.mockito.Mockito.when;\r
29 \r
30 import org.junit.BeforeClass;\r
31 import org.junit.Test;\r
32 import org.junit.runner.RunWith;\r
33 import org.mockito.runners.MockitoJUnitRunner;\r
34 \r
35 import com.att.cadi.CadiException;\r
36 import com.att.cadi.LocatorException;\r
37 import com.att.inno.env.APIException;\r
38 \r
39 @RunWith(MockitoJUnitRunner.class)\r
40 public class JU_Cred {\r
41 \r
42         private static Cred testCred;\r
43         private static User testUser;\r
44 \r
45 \r
46         @BeforeClass\r
47         public static void setUp() {\r
48                 testCred = mock(Cred.class);\r
49                 testUser = mock(User.class);\r
50                 try {\r
51                         when(testCred._exec(4, "String1","String2","String3","String4")).thenReturn(10);\r
52                 } catch (CadiException e) {\r
53                         // TODO Auto-generated catch block\r
54                         e.printStackTrace();\r
55                 } catch (APIException e) {\r
56                         // TODO Auto-generated catch block\r
57                         e.printStackTrace();\r
58                 } catch (LocatorException e) {\r
59                         // TODO Auto-generated catch block\r
60                         e.printStackTrace();\r
61                 }\r
62         }\r
63 \r
64         @Test\r
65         public void exec() throws CadiException, APIException, LocatorException {\r
66                 assertEquals(testCred._exec(4, "String1","String2","String3","String4"), 10);\r
67         }\r
68 \r
69 \r
70         @Test\r
71         public void exec_add() {                \r
72                 try {\r
73                         assertNotNull(testCred._exec(0, "zeroed","add","del","reset","extend"));\r
74                 } catch (CadiException | APIException | LocatorException e) {\r
75                         // TODO Auto-generated catch block\r
76                         e.printStackTrace();\r
77                 }\r
78 \r
79         }\r
80 \r
81         @Test\r
82         public void exec_del() {                \r
83                 try {\r
84                         assertNotNull(testCred._exec(1, "zeroed","add","del","reset","extend"));\r
85                 } catch (CadiException | APIException | LocatorException e) {\r
86                         // TODO Auto-generated catch block\r
87                         e.printStackTrace();\r
88                 }\r
89 \r
90         }\r
91 \r
92         @Test\r
93         public void exec_reset() {              \r
94                 try {\r
95                         assertNotNull(testCred._exec(2, "zeroed","add","del","reset","extend"));\r
96                 } catch (CadiException | APIException | LocatorException e) {\r
97                         // TODO Auto-generated catch block\r
98                         e.printStackTrace();\r
99                 }\r
100 \r
101         }\r
102 \r
103         @Test\r
104         public void exec_extend() {             \r
105                 try {\r
106                         assertNotNull(testCred._exec(3, "zeroed","add","del","reset","extend"));\r
107                 } catch (CadiException | APIException | LocatorException e) {\r
108                         // TODO Auto-generated catch block\r
109                         e.printStackTrace();\r
110                 }\r
111 \r
112         }\r
113 \r
114 }\r