[AAF-21] Initial code import
[aaf/cadi.git] / core / src / test / java / com / att / cadi / test / Test.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aai\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * Copyright © 2017 Amdocs\r
7  * * ===========================================================================\r
8  * * Licensed under the Apache License, Version 2.0 (the "License");\r
9  * * you may not use this file except in compliance with the License.\r
10  * * You may obtain a copy of the License at\r
11  * * \r
12  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
13  * * \r
14  *  * Unless required by applicable law or agreed to in writing, software\r
15  * * distributed under the License is distributed on an "AS IS" BASIS,\r
16  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17  * * See the License for the specific language governing permissions and\r
18  * * limitations under the License.\r
19  * * ============LICENSE_END====================================================\r
20  * *\r
21  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
22  * *\r
23  ******************************************************************************/\r
24 package com.att.cadi.test;\r
25 import java.net.InetAddress;\r
26 import java.net.UnknownHostException;\r
27 \r
28 /**\r
29  * A Class to run on command line to determine suitability of environment for certain TAFs.\r
30  * \r
31  * For instance, CSP supports services only in certain domains, and while dynamic host\r
32  * lookups on the machine work in most cases, sometimes, names and IPs are unexpected (and\r
33  * invalid) for CSP because of multiple NetworkInterfaces, etc\r
34  * \r
35  *\r
36  */\r
37 public class Test {\r
38 \r
39         /**\r
40          * @param args\r
41          */\r
42         public static void main(String[] args) {\r
43                 try {\r
44                         System.out.println("CADI/TAF test");\r
45                         \r
46                         String hostName = InetAddress.getLocalHost().getCanonicalHostName();\r
47                         \r
48                         System.out.println("  Your automatic hostname is reported as \"" + hostName + "\"\n");\r
49                         String[] two;\r
50 \r
51                         for(String str : args) {\r
52                                 two = str.split("=");\r
53                                 if(two.length==2) {\r
54                                         if("hostname".equals(two[0])) {\r
55                                                 hostName = two[1];\r
56                                                 System.out.println("  You have overlaid the automatic hostname with \"" + hostName + "\"\n");\r
57                                         }\r
58                                 }\r
59                         }\r
60                         if(hostName.endsWith("vpn.cingular.net"))\r
61                                 System.out.println("  This service appears to be an AT&T VPN address. These VPNs are typically\n" +\r
62                                                 "    (and appropriately) firewalled against incoming traffic, and likely cannot be accessed.\n" +\r
63                                                 "    For best results, choose a machine that is not firewalled on the ports you choose.\n");\r
64                         \r
65                 } catch (UnknownHostException e) {\r
66                         e.printStackTrace();\r
67                 }\r
68 \r
69         }\r
70 \r
71 }\r