/* * Copyright 2011 Atteo. * * 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.atteo.moonshine.webserver; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.net.MalformedURLException; import java.net.URL; import javax.inject.Inject; import static org.assertj.core.api.Assertions.assertThat; import org.atteo.moonshine.tests.MoonshineConfiguration; import org.atteo.moonshine.tests.MoonshineTest; import static org.junit.Assert.assertEquals; import org.junit.Test; import com.google.common.base.Charsets; import com.google.common.io.CharStreams; @MoonshineConfiguration(fromString = "" + "<config>" + " <servlet-container/>" + " <web-annotations/>" + "</config>") public abstract class WebAnnotationsTest extends MoonshineTest { @Inject private WebServerAddress webServerAddress; @Test public void dummy() { } @Test public void testServletAndFilter() throws IOException { URL url = new URL(webServerAddress.getUrl() + "/hello"); try (InputStream stream = url.openStream()) { String result = CharStreams.toString(new InputStreamReader(stream, Charsets.UTF_8)); assertEquals("filtered: hello", result); } } @Test public void testListener() throws IOException { assertThat(HelloListener.initialized); } }