Keep only clean TestCases, remove 2 license issues
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / user / JU_Delg.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.cmd.test.user;
23
24 import org.junit.Assert;
25 import static org.mockito.Mockito.mock;
26 import static org.junit.Assert.*;
27
28 import org.junit.BeforeClass;
29 import org.junit.Test;
30 import org.junit.runner.RunWith;
31 import org.mockito.runners.MockitoJUnitRunner;
32 import org.onap.aaf.auth.cmd.user.Delg;
33 import org.onap.aaf.auth.cmd.user.User;
34 import org.onap.aaf.cadi.CadiException;
35 import org.onap.aaf.cadi.LocatorException;
36 import org.onap.aaf.misc.env.APIException;
37
38 @RunWith(MockitoJUnitRunner.class)
39 public class JU_Delg {
40         
41         private static User testUser;
42         private static Delg delg;
43         
44         @BeforeClass
45         public static void setUp() throws APIException {
46                 testUser = mock(User.class);
47                 delg = mock(Delg.class);
48         }
49         
50         @Test
51         public void exec_add() {
52                 try {
53                         assertEquals(delg._exec(0, "zero","add","upd","del"), 0);
54                 } catch (CadiException | APIException | LocatorException e) {
55                         // TODO Auto-generated catch block
56                         e.printStackTrace();
57                 }
58         }
59         
60         @Test
61         public void exec_upd() {
62                 try {
63                         assertEquals(delg._exec(1, "zero","add","upd","del"), 0);
64                 } catch (CadiException | APIException | LocatorException e) {
65                         // TODO Auto-generated catch block
66                         e.printStackTrace();
67                 }
68         }
69         
70         @Test
71         public void exec_del() {
72                 try {
73                         assertEquals(delg._exec(2, "zero","add","upd","del"), 0);
74                 } catch (CadiException | APIException | LocatorException e) {
75                         // TODO Auto-generated catch block
76                         e.printStackTrace();
77                 }
78         }
79         
80 }