blob: 62e950ec843c6639081943879569c58b7f95dd8f [file] [log] [blame]
/*
* Copyright (c) 2012, Paul Merlin. All Rights Reserved.
*
* Licensed 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.qi4j.library.shiro.web;
import java.util.EnumSet;
import org.apache.shiro.web.env.EnvironmentLoaderListener;
import org.apache.shiro.web.servlet.ShiroFilter;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.servlet.ServletContextHandler;
import org.junit.Test;
import org.qi4j.test.util.FreePortFinder;
import static javax.servlet.DispatcherType.*;
public class WebServletShiroTest
{
@Test
public void test()
throws Exception
{
int port = FreePortFinder.findFreePortOnLoopback( 9001 );
Server server = new Server( port );
try {
ServletContextHandler context = new ServletContextHandler();
context.setContextPath( "/" );
context.setInitParameter( "shiroConfigLocations", "classpath:web-shiro.ini" );
context.addEventListener( new EnvironmentLoaderListener() );
context.addFilter( ShiroFilter.class, "/*", EnumSet.of( REQUEST, FORWARD, INCLUDE, ERROR ) );
server.setHandler( context );
server.start();
// HttpClient client = new DefaultHttpClient();
// String result = client.execute( new HttpGet( "http://127.0.0.1:" + port + "/" ), new BasicResponseHandler() );
} finally {
server.stop();
}
}
}