TestGlobalFilter.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.Set;
  25. import java.util.TreeSet;
  26. import javax.servlet.Filter;
  27. import javax.servlet.FilterChain;
  28. import javax.servlet.FilterConfig;
  29. import javax.servlet.ServletException;
  30. import javax.servlet.ServletRequest;
  31. import javax.servlet.ServletResponse;
  32. import javax.servlet.http.HttpServletRequest;
  33. import org.apache.commons.logging.Log;
  34. import org.apache.commons.logging.LogFactory;
  35. import org.apache.hadoop.conf.Configuration;
  36. public class TestGlobalFilter extends junit.framework.TestCase {
  37.   static final Log LOG = LogFactory.getLog(HttpServer.class);
  38.   static final Set<String> RECORDS = new TreeSet<String>(); 
  39.   /** A very simple filter that records accessed uri's */
  40.   static public class RecordingFilter implements Filter {
  41.     private FilterConfig filterConfig = null;
  42.     public void init(FilterConfig filterConfig) {
  43.       this.filterConfig = filterConfig;
  44.     }
  45.     public void destroy() {
  46.       this.filterConfig = null;
  47.     }
  48.     public void doFilter(ServletRequest request, ServletResponse response,
  49.         FilterChain chain) throws IOException, ServletException {
  50.       if (filterConfig == null)
  51.          return;
  52.       String uri = ((HttpServletRequest)request).getRequestURI();
  53.       LOG.info("filtering " + uri);
  54.       RECORDS.add(uri);
  55.       chain.doFilter(request, response);
  56.     }
  57.     /** Configuration for RecordingFilter */
  58.     static public class Initializer extends FilterInitializer {
  59.       public Initializer() {}
  60.       void initFilter(FilterContainer container) {
  61.         container.addGlobalFilter("recording", RecordingFilter.class.getName(), null);
  62.       }
  63.     }
  64.   }
  65.   
  66.   
  67.   /** access a url, ignoring some IOException such as the page does not exist */
  68.   static void access(String urlstring) throws IOException {
  69.     LOG.warn("access " + urlstring);
  70.     URL url = new URL(urlstring);
  71.     URLConnection connection = url.openConnection();
  72.     connection.connect();
  73.     
  74.     try {
  75.       BufferedReader in = new BufferedReader(new InputStreamReader(
  76.           connection.getInputStream()));
  77.       try {
  78.         for(; in.readLine() != null; );
  79.       } finally {
  80.         in.close();
  81.       }
  82.     } catch(IOException ioe) {
  83.       LOG.warn("urlstring=" + urlstring, ioe);
  84.     }
  85.   }
  86.   public void testServletFilter() throws Exception {
  87.     Configuration conf = new Configuration();
  88.     
  89.     //start a http server with CountingFilter
  90.     conf.set(HttpServer.FILTER_INITIALIZER_PROPERTY,
  91.         RecordingFilter.Initializer.class.getName());
  92.     HttpServer http = new HttpServer("datanode", "localhost", 0, true, conf);
  93.     http.start();
  94.     final String fsckURL = "/fsck";
  95.     final String stacksURL = "/stacks";
  96.     final String ajspURL = "/a.jsp";
  97.     final String listPathsURL = "/listPaths";
  98.     final String dataURL = "/data";
  99.     final String streamFile = "/streamFile";
  100.     final String rootURL = "/";
  101.     final String allURL = "/*";
  102.     final String outURL = "/static/a.out";
  103.     final String logURL = "/logs/a.log";
  104.     final String[] urls = {fsckURL, stacksURL, ajspURL, listPathsURL, 
  105.         dataURL, streamFile, rootURL, allURL, outURL, logURL};
  106.     //access the urls
  107.     final String prefix = "http://localhost:" + http.getPort();
  108.     try {
  109.       for(int i = 0; i < urls.length; i++) {
  110.         access(prefix + urls[i]);
  111.       }
  112.     } finally {
  113.       http.stop();
  114.     }
  115.     LOG.info("RECORDS = " + RECORDS);
  116.     
  117.     //verify records
  118.     for(int i = 0; i < urls.length; i++) {
  119.       assertTrue(RECORDS.remove(urls[i]));
  120.     }
  121.     assertTrue(RECORDS.isEmpty());
  122.   }
  123. }