/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.catalina.connector; import java.io.File; import java.net.SocketTimeoutException; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.servlet.Servlet; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import org.junit.Assert; import org.junit.Test; import org.apache.catalina.Context; import org.apache.catalina.LifecycleException; import org.apache.catalina.Wrapper; import org.apache.catalina.servlets.DefaultServlet; import org.apache.catalina.servlets.WebdavServlet; import org.apache.catalina.startup.TesterServlet; import org.apache.catalina.startup.Tomcat; import org.apache.catalina.startup.TomcatBaseTest; import org.apache.tomcat.util.buf.ByteChunk; /** * Test cases for {@link Connector}. */ public class TestConnector extends TomcatBaseTest { @Test public void testStop() throws Exception { Tomcat tomcat = getTomcatInstance(); Context root = tomcat.addContext("", TEMP_DIR); Wrapper w = Tomcat.addServlet(root, "tester", new TesterServlet()); w.setAsyncSupported(true); root.addServletMappingDecoded("/", "tester"); Connector connector = tomcat.getConnector(); tomcat.start(); ByteChunk bc = new ByteChunk(); int rc = getUrl("http://localhost:" + getPort() + "/", bc, null, null); assertEquals(200, rc); assertEquals("OK", bc.toString()); rc = -1; bc.recycle(); connector.stop(); try { rc = getUrl("http://localhost:" + getPort() + "/", bc, 1000, null, null); } catch (SocketTimeoutException ste) { // May also see this with NIO // Make sure the test passes if we do rc = 503; } assertEquals(503, rc); } @Test public void testPort() throws Exception { Tomcat tomcat = getTomcatInstance(); Connector connector1 = tomcat.getConnector(); connector1.setPort(0); Connector connector2 = new Connector(); connector2.setPort(0); tomcat.getService().addConnector(connector2); tomcat.start(); int localPort1 = connector1.getLocalPort(); int localPort2 = connector2.getLocalPort(); assertTrue(localPort1 > 0); assertTrue(localPort2 > 0); } @Test(expected=LifecycleException.class) public void testInvalidProtocolThrows() throws Exception { doTestInvalidProtocol(true); } @Test public void testInvalidProtocolNoThrows() throws Exception { doTestInvalidProtocol(false); } private void doTestInvalidProtocol(boolean throwOnFailure) throws Exception { Connector c = new Connector("foo.Bar"); c.setThrowOnFailure(throwOnFailure); c.start(); } @Test(expected=LifecycleException.class) public void testDuplicatePortThrows() throws Exception { doTestDuplicatePort(true); } @Test public void testDuplicatePortNoThrows() throws Exception { doTestDuplicatePort(false); } private void doTestDuplicatePort(boolean throwOnFailure) throws Exception { Connector c1 = new Connector(); c1.setThrowOnFailure(throwOnFailure); c1.setPort(0); c1.start(); Connector c2 = new Connector(); c2.setThrowOnFailure(throwOnFailure); c2.setPort(c1.getLocalPort()); c2.start(); } @Test public void testTraceAllowedDefault() throws Exception { doTestTrace(new DefaultServlet(), true); } @Test public void testTraceNotAllowedDefault() throws Exception { doTestTrace(new DefaultServlet(), false); } @Test public void testTraceAllowedWebDav() throws Exception { doTestTrace(new WebdavServlet(), true); } @Test public void testTraceNotAllowedWebDav() throws Exception { doTestTrace(new WebdavServlet(), false); } @Test public void testTraceAllowedCustom() throws Exception { doTestTrace(new TesterServlet(), true); } @Test public void testTraceNotAllowedCustom() throws Exception { doTestTrace(new TesterServlet(), false); } private void doTestTrace(Servlet servlet, boolean allowTrace) throws Exception { Tomcat tomcat = getTomcatInstance(); File appDir = new File("test/webapp"); Context root = tomcat.addContext("", appDir.getAbsolutePath()); Tomcat.addServlet(root, "default", servlet); root.addServletMappingDecoded("/", "default"); Connector connector = tomcat.getConnector(); connector.setAllowTrace(allowTrace); tomcat.start(); ByteChunk bc = new ByteChunk(); Map<String,List<String>> respHeaders = new HashMap<>(); int rc = methodUrl("http://localhost:" + getPort() + "/index.html", bc, 30000, null, respHeaders, "OPTIONS"); assertEquals(200, rc); boolean foundTrace = false; for (String header : respHeaders.get("Allow")) { if (header.contains("TRACE")) { foundTrace = true; break; } } if (allowTrace) { Assert.assertTrue(foundTrace); } else { Assert.assertFalse(foundTrace); } } }