4fe9111e094e10c83376e2b0675771b30ca4be7a
[aaf/cadi.git] / core / src / test / java / com / att / cadi / test / Test.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.cadi.test;\r
24 import java.net.InetAddress;\r
25 import java.net.UnknownHostException;\r
26 \r
27 /**\r
28  * A Class to run on command line to determine suitability of environment for certain TAFs.\r
29  * \r
30  * For instance, CSP supports services only in certain domains, and while dynamic host\r
31  * lookups on the machine work in most cases, sometimes, names and IPs are unexpected (and\r
32  * invalid) for CSP because of multiple NetworkInterfaces, etc\r
33  * \r
34  *\r
35  */\r
36 public class Test {\r
37 \r
38         /**\r
39          * @param args\r
40          */\r
41         public static void main(String[] args) {\r
42                 try {\r
43                         System.out.println("CADI/TAF test");\r
44                         \r
45                         String hostName = InetAddress.getLocalHost().getCanonicalHostName();\r
46                         \r
47                         System.out.println("  Your automatic hostname is reported as \"" + hostName + "\"\n");\r
48                         String[] two;\r
49 \r
50                         for(String str : args) {\r
51                                 two = str.split("=");\r
52                                 if(two.length==2) {\r
53                                         if("hostname".equals(two[0])) {\r
54                                                 hostName = two[1];\r
55                                                 System.out.println("  You have overlaid the automatic hostname with \"" + hostName + "\"\n");\r
56                                         }\r
57                                 }\r
58                         }\r
59                         if(hostName.endsWith("vpn.cingular.net"))\r
60                                 System.out.println("  This service appears to be an AT&T VPN address. These VPNs are typically\n" +\r
61                                                 "    (and appropriately) firewalled against incoming traffic, and likely cannot be accessed.\n" +\r
62                                                 "    For best results, choose a machine that is not firewalled on the ports you choose.\n");\r
63                         \r
64                 } catch (UnknownHostException e) {\r
65                         e.printStackTrace();\r
66                 }\r
67 \r
68         }\r
69 \r
70 }\r