blob: ba45ee555eec3b71c2679c293937243d80beedbe [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.wicket.protocol.http;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import org.apache.wicket.core.util.resource.WebExternalResourceStream;
import org.apache.wicket.mock.MockApplication;
import org.apache.wicket.request.handler.resource.ResourceStreamRequestHandler;
import org.apache.wicket.request.handler.resource.WebExternalResourceRequestHandler;
import org.apache.wicket.util.io.Streams;
import org.apache.wicket.util.tester.WicketTester;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
/**
* Test WebExternalResourceRequestTarget and WebExternalResourceStream
*
* @author <a href="mailto:jbq@apache.org">Jean-Baptiste Quenot</a>
*/
class WebExternalResourceTest
{
private WicketTester tester;
/**
* @throws Exception
*/
@BeforeEach
void before() throws Exception
{
File tempDir = new File("target/webapp");
tempDir.mkdir();
File tempFile = new File(tempDir, "index.html");
FileOutputStream out = new FileOutputStream(tempFile);
InputStream in = WebExternalResourceTest.class.getResourceAsStream("index.html");
Streams.copy(in, out);
in.close();
out.close();
tester = new WicketTester(new MockApplication(), tempDir.getPath());
// We fake the browser URL, otherwise Wicket doesn't know the requested URL and cannot guess
// the Content-Type
tester.getRequest().setURL("index.html");
}
@AfterEach
void after() throws Exception
{
tester.destroy();
}
/**
*
* @throws Exception
*/
@Test
void webExternalResourceRequestTarget() throws Exception
{
WebExternalResourceRequestHandler rt = new WebExternalResourceRequestHandler("/index.html");
tester.processRequest(rt);
assertTrue(tester.getContentTypeFromResponseHeader().startsWith("text/html"));
tester.assertContains("<h1>Hello, World!</h1>");
}
/**
*
* @throws Exception
*/
// FIXME WebExternalResourceStream does not implement length()
@Test
void webExternalResource() throws Exception
{
WebExternalResourceStream resource = new WebExternalResourceStream("/index.html");
ResourceStreamRequestHandler rt = new ResourceStreamRequestHandler(resource);
tester.processRequest(rt);
assertTrue(tester.getContentTypeFromResponseHeader().startsWith("text/html"));
tester.assertContains("<h1>Hello, World!</h1>");
}
}