pekko/akka-fun-test-java/src/test/java/se/scalablesolutions/akka/api/RestTest.java

85 lines
2.6 KiB
Java
Raw Normal View History

/**
* Copyright (C) 2009 Scalable Solutions.
*/
package se.scalablesolutions.akka.api;
import com.sun.grizzly.http.SelectorThread;
2009-05-18 08:19:30 +02:00
import com.sun.grizzly.http.servlet.ServletAdapter;
import com.sun.grizzly.tcp.Adapter;
import com.sun.grizzly.standalone.StaticStreamAlgorithm;
import javax.ws.rs.core.UriBuilder;
2009-05-18 08:19:30 +02:00
import javax.servlet.Servlet;
import junit.framework.TestCase;
import org.junit.*;
import java.io.IOException;
import java.net.URI;
2009-09-04 09:47:32 +02:00
import se.scalablesolutions.akka.config.*;
import static se.scalablesolutions.akka.config.JavaConfig.*;
public class RestTest extends TestCase {
2009-05-18 08:19:30 +02:00
private static int PORT = 9998;
private static URI URI = UriBuilder.fromUri("http://localhost/").port(PORT).build();
private static SelectorThread selector = null;
private static ActiveObjectConfigurator conf = new ActiveObjectConfigurator();
@BeforeClass
protected void setUp() {
conf.configure(
new RestartStrategy(new AllForOne(), 3, 5000, new Class[]{Exception.class}),
new Component[] {
new Component(
2009-05-18 08:19:30 +02:00
JerseyFoo.class,
new LifeCycle(new Permanent()),
10000000)
2009-05-18 08:19:30 +02:00
}).inject().supervise();
selector = startJersey();
}
public void testSimpleRequest() {
assertTrue(true);
}
/*
@Test
public void testSimpleRequest() throws IOException, InstantiationException {
selector.listen();
Client client = Client.create();
WebResource webResource = client.resource(URI);
String responseMsg = webResource.path("/foo").get(String.class);
assertEquals("hello foo", responseMsg);
selector.stopEndpoint();
}
*/
2009-05-18 08:19:30 +02:00
private static SelectorThread startJersey() {
try {
2009-10-30 22:39:26 +01:00
Servlet servlet = new se.scalablesolutions.akka.AkkaServlet();
2009-05-18 08:19:30 +02:00
ServletAdapter adapter = new ServletAdapter();
adapter.setServletInstance(servlet);
adapter.setContextPath(URI.getPath());
return createGrizzlySelector(adapter, URI, PORT);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
public static SelectorThread createGrizzlySelector(Adapter adapter, URI uri, int port) throws IOException, InstantiationException {
final String scheme = uri.getScheme();
if (!scheme.equalsIgnoreCase("http"))
throw new IllegalArgumentException("The URI scheme, of the URI " + uri + ", must be equal (ignoring case) to 'http'");
final SelectorThread selectorThread = new SelectorThread();
selectorThread.setAlgorithmClassName(StaticStreamAlgorithm.class.getName());
selectorThread.setPort(port);
selectorThread.setAdapter(adapter);
return selectorThread;
}
}