/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2017 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * https://oss.oracle.com/licenses/CDDL+GPL-1.1 * or LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ import java.io.*; import java.net.*; import java.util.Map; import java.net.HttpURLConnection; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import com.sun.ejte.ccl.reporter.*; import org.apache.catalina.util.Base64; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.NodeList; import org.xml.sax.InputSource; import org.glassfish.admingui.common.util.RestResponse; import org.glassfish.admingui.common.util.RestUtil; /* * Unit test for Issue 9549: incorrect range stats * */ public class WebTest { private static final String TEST_NAME = "monitor-http-service"; private static final String EXPECTED = "OK"; private static SimpleReporterAdapter stat = new SimpleReporterAdapter("appserv-tests"); private String adminHost; private String adminPort; private String adminUser; private String adminPassword; private String instanceName; private String host; private String port; private String contextRoot; public WebTest(String[] args) { adminHost = args[0]; adminPort = args[1]; adminUser = args[2]; adminPassword = args[3]; instanceName = args[4]; host = args[5]; port = args[6]; contextRoot = args[7]; } public static void main(String[] args) { stat.addDescription("Unit test for issue 9549"); WebTest webTest = new WebTest(args); webTest.doTest(); stat.printSummary(); } public void doTest() { try { int count503 = getCount("count503"); System.out.println("count503 = " + count503); int count5xx = getCount("count5xx"); System.out.println("count5xx = " + count5xx); int errorcount = getCount("errorcount"); System.out.println("errorcount = " + errorcount); invokeURL("http://" + host + ":" + port + contextRoot + "/statuscode?code=503"); int count503_2 = getCount("count503"); System.out.println("count503_2 = " + count503_2); int count5xx_2 = getCount("count5xx"); System.out.println("count5xx_2 = " + count5xx_2); int errorcount_2 = getCount("errorcount"); System.out.println("errorcount_2 = " + errorcount_2); boolean ok = (count503 >= 0 && count503_2 == (count503 + 1)) && (count5xx >= 0 && count5xx_2 == (count5xx + 1)) && (errorcount >= 0 && errorcount_2 == (errorcount + 1)); stat.addStatus(TEST_NAME, ((ok)? stat.PASS : stat.FAIL)); } catch(Exception ex) { ex.printStackTrace(); stat.addStatus(TEST_NAME, stat.FAIL); } } private String invokeURL(String urlString) throws Exception { StringBuilder sb = new StringBuilder(); URL url = new URL(urlString); System.out.println("Connecting to: " + url.toString()); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.addRequestProperty("accept", "application/xml"); if (adminPassword != null) { conn.setRequestProperty("Authorization", "Basic " + new String(Base64.encode((adminUser + ":" + adminPassword).getBytes()))); } conn.connect(); int responseCode = conn.getResponseCode(); if (responseCode == HttpURLConnection.HTTP_OK) { InputStream is = null; BufferedReader reader = null; try { is = conn.getInputStream(); reader = new BufferedReader(new InputStreamReader(is)); String line = null; while ((line = reader.readLine()) != null) { sb.append(line); } } finally { if (is != null) { try { is.close(); } catch(IOException ex) { } } if (reader != null) { try { reader.close(); } catch(IOException ex) { } } } } else { System.out.println("Get response code: " + responseCode); } return sb.toString(); } private int getCount(String monitorPath) throws Exception { String url = "http://" + adminHost + ":" + adminPort + "/monitoring/domain/server/http-service/" + instanceName + "/request/" + monitorPath; String resultStr = invokeURL(url); System.out.println("getCount: "+resultStr); RestResponse response = RestUtil.get(url); Map<String, Object> map = response.getResponse(); return ((Long)((Map)((Map)((Map)((Map)map.get("data")).get("extraProperties")).get( "entity")).get(monitorPath)).get("count")).intValue(); } }