Update the license for 2017-2018 license
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / util / AAIConfigCommandLinePropGetterTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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 package org.onap.aai.util;
21
22 import static org.junit.Assert.assertEquals;
23
24 import java.security.Permission;
25
26 import org.junit.After;
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.onap.aai.AAISetup;
30
31 public class AAIConfigCommandLinePropGetterTest extends AAISetup {
32
33         private SecurityManager m;
34         private TestSecurityManager sm;
35
36         @Before
37         public void setUp() 
38         {
39                 m = System.getSecurityManager();
40                 sm = new TestSecurityManager();
41                 System.setSecurityManager(sm);
42         }
43
44         @After
45         public void tearDown()
46         {   
47                 System.setSecurityManager(m);
48         }
49
50         @Test
51         public void testMainNoArgs() {
52                 try {
53                         AAIConfigCommandLinePropGetter.main(new String[] {});
54                 } catch (SecurityException se) {
55                         // assert main method ends with System.exit(0)
56                         assertEquals("0", se.getMessage());
57                 }
58         }
59         
60         @Test
61         public void testMainReadProp() {
62                 try {
63                         AAIConfigCommandLinePropGetter.main(new String[] {"aai.primary.filetransfer.serverlist"});
64                 } catch (SecurityException se) {
65                         // assert main method ends with System.exit(0)
66                         assertEquals("0", se.getMessage());
67                 }
68         }
69         
70         @Test
71         public void testMainOneArg() {
72                 try {
73                         AAIConfigCommandLinePropGetter.main(new String[] {"one"});
74                 } catch (SecurityException se) {
75                         // assert main method ends with System.exit(0)
76                         assertEquals("0", se.getMessage());
77                 }
78         }
79         
80         @Test
81         public void testMainMoreThanOneArg() {
82                 try {
83                         AAIConfigCommandLinePropGetter.main(new String[] {"one", "two"});
84                 } catch (SecurityException se) {
85                         // assert main method ends with System.exit(0)
86                         assertEquals("0", se.getMessage());
87                 }
88         }
89 }
90
91 class TestSecurityManager extends SecurityManager {
92         @Override 
93         public void checkPermission(Permission permission) {            
94                 if ("exitVM".equals(permission.getName())) 
95                 {
96                         throw new SecurityException("System.exit attempted and blocked.");
97                 }
98         }
99         @Override 
100         public void checkExit(int status) {
101                 throw new SecurityException(Integer.toString(status));
102         }
103 }