TestServletFilter.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:4k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.http;
  19. import java.io.BufferedReader;
  20. import java.io.IOException;
  21. import java.io.InputStreamReader;
  22. import java.net.URL;
  23. import java.net.URLConnection;
  24. import java.util.Random;
  25. import javax.servlet.Filter;
  26. import javax.servlet.FilterChain;
  27. import javax.servlet.FilterConfig;
  28. import javax.servlet.ServletException;
  29. import javax.servlet.ServletRequest;
  30. import javax.servlet.ServletResponse;
  31. import javax.servlet.http.HttpServletRequest;
  32. import org.apache.commons.logging.Log;
  33. import org.apache.commons.logging.LogFactory;
  34. import org.apache.hadoop.conf.Configuration;
  35. public class TestServletFilter extends junit.framework.TestCase {
  36.   static final Log LOG = LogFactory.getLog(HttpServer.class);
  37.   static volatile String uri = null; 
  38.   /** A very simple filter which record the uri filtered. */
  39.   static public class SimpleFilter implements Filter {
  40.     private FilterConfig filterConfig = null;
  41.     public void init(FilterConfig filterConfig) {
  42.       this.filterConfig = filterConfig;
  43.     }
  44.     public void destroy() {
  45.       this.filterConfig = null;
  46.     }
  47.     public void doFilter(ServletRequest request, ServletResponse response,
  48.         FilterChain chain) throws IOException, ServletException {
  49.       if (filterConfig == null)
  50.          return;
  51.       uri = ((HttpServletRequest)request).getRequestURI();
  52.       LOG.info("filtering " + uri);
  53.       chain.doFilter(request, response);
  54.     }
  55.     /** Configuration for the filter */
  56.     static public class Initializer extends FilterInitializer {
  57.       public Initializer() {}
  58.       void initFilter(FilterContainer container) {
  59.         container.addFilter("simple", SimpleFilter.class.getName(), null);
  60.       }
  61.     }
  62.   }
  63.   
  64.   
  65.   /** access a url, ignoring some IOException such as the page does not exist */
  66.   static void access(String urlstring) throws IOException {
  67.     LOG.warn("access " + urlstring);
  68.     URL url = new URL(urlstring);
  69.     URLConnection connection = url.openConnection();
  70.     connection.connect();
  71.     
  72.     try {
  73.       BufferedReader in = new BufferedReader(new InputStreamReader(
  74.           connection.getInputStream()));
  75.       try {
  76.         for(; in.readLine() != null; );
  77.       } finally {
  78.         in.close();
  79.       }
  80.     } catch(IOException ioe) {
  81.       LOG.warn("urlstring=" + urlstring, ioe);
  82.     }
  83.   }
  84.   public void testServletFilter() throws Exception {
  85.     Configuration conf = new Configuration();
  86.     
  87.     //start a http server with CountingFilter
  88.     conf.set(HttpServer.FILTER_INITIALIZER_PROPERTY,
  89.         SimpleFilter.Initializer.class.getName());
  90.     HttpServer http = new HttpServer("datanode", "localhost", 0, true, conf);
  91.     http.start();
  92.     final String fsckURL = "/fsck";
  93.     final String stacksURL = "/stacks";
  94.     final String ajspURL = "/a.jsp";
  95.     final String logURL = "/logs/a.log";
  96.     final String hadooplogoURL = "/static/hadoop-logo.jpg";
  97.     
  98.     final String[] urls = {fsckURL, stacksURL, ajspURL, logURL, hadooplogoURL};
  99.     final Random ran = new Random();
  100.     final int[] sequence = new int[50];
  101.     //generate a random sequence and update counts 
  102.     for(int i = 0; i < sequence.length; i++) {
  103.       sequence[i] = ran.nextInt(urls.length);
  104.     }
  105.     //access the urls as the sequence
  106.     final String prefix = "http://localhost:" + http.getPort();
  107.     try {
  108.       for(int i = 0; i < sequence.length; i++) {
  109.         access(prefix + urls[sequence[i]]);
  110.         //make sure everything except fsck get filtered
  111.         if (sequence[i] == 0) {
  112.           assertEquals(null, uri);
  113.         } else {
  114.           assertEquals(urls[sequence[i]], uri);
  115.           uri = null;
  116.         }
  117.       }
  118.     } finally {
  119.       http.stop();
  120.     }
  121.   }
  122. }