blob: 996f7b8e67aba70928678275ff224aa46b92c8cd [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.
*/
/*
* (C) Janne Jalkanen 2005
*
*/
package org.apache.wiki.url;
import org.apache.wiki.TestEngine;
import org.apache.wiki.api.core.ContextEnum;
import org.apache.wiki.api.exceptions.WikiException;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import java.util.Properties;
public class DefaultURLConstructorTest
{
TestEngine testEngine;
Properties props = TestEngine.getTestProperties();
private URLConstructor getConstructor( final String prefix )
throws WikiException
{
if( prefix != null ) props.setProperty( ShortViewURLConstructor.PROP_PREFIX, prefix );
testEngine = new TestEngine(props);
final URLConstructor constr = new DefaultURLConstructor();
constr.initialize( testEngine, props );
return constr;
}
@Test
public void testViewURL1()
throws Exception
{
final URLConstructor c = getConstructor("wiki/" );
Assertions.assertEquals( "/test/Wiki.jsp?page=Main", c.makeURL( ContextEnum.PAGE_VIEW.getRequestContext(),"Main",null) );
}
@Test
public void testViewURL2()
throws Exception
{
final URLConstructor c = getConstructor( null );
Assertions.assertEquals( "/test/Wiki.jsp?page=Main", c.makeURL(ContextEnum.PAGE_VIEW.getRequestContext(),"Main",null) );
}
@Test
public void testViewURL3()
throws Exception
{
final URLConstructor c = getConstructor( null );
Assertions.assertEquals( "/test/Wiki.jsp?page=Main", c.makeURL(ContextEnum.PAGE_VIEW.getRequestContext(),"Main",null) );
}
@Test
public void testViewURL4()
throws Exception
{
final URLConstructor c = getConstructor( null );
Assertions.assertEquals( "/test/Wiki.jsp?page=Main", c.makeURL(ContextEnum.PAGE_VIEW.getRequestContext(),"Main",null) );
}
@Test
public void testViewURL5()
throws Exception
{
final URLConstructor c = getConstructor( "" );
Assertions.assertEquals( "/test/Wiki.jsp?page=Main", c.makeURL(ContextEnum.PAGE_VIEW.getRequestContext(),"Main",null) );
}
@Test
public void testViewURL6()
throws Exception
{
final URLConstructor c = getConstructor( null );
Assertions.assertEquals( "/test/Wiki.jsp?page=Main", c.makeURL(ContextEnum.PAGE_VIEW.getRequestContext(),"Main",null) );
}
@Test
public void testViewURL7()
throws Exception
{
final URLConstructor c = getConstructor( "view/" );
Assertions.assertEquals( "/test/Wiki.jsp?page=Main", c.makeURL(ContextEnum.PAGE_VIEW.getRequestContext(),"Main",null) );
}
@Test
public void testEditURL1()
throws Exception
{
final URLConstructor c = getConstructor( null );
Assertions.assertEquals( "/test/Edit.jsp?page=Main", c.makeURL(ContextEnum.PAGE_EDIT.getRequestContext(),"Main",null) );
}
@Test
public void testAttachURL1()
throws Exception
{
final URLConstructor c = getConstructor( null );
Assertions.assertEquals( "/test/attach/Main/foo.txt", c.makeURL(ContextEnum.PAGE_ATTACH.getRequestContext(),"Main/foo.txt",null) );
}
@Test
public void testAttachURLRelative1()
throws Exception
{
final URLConstructor c = getConstructor( null );
Assertions.assertEquals( "/test/attach/Main/foo.txt", c.makeURL(ContextEnum.PAGE_ATTACH.getRequestContext(),"Main/foo.txt",null) );
}
@Test
public void testOtherURL1()
throws Exception
{
final URLConstructor c = getConstructor( null );
Assertions.assertEquals( "/test/foo.jsp", c.makeURL(ContextEnum.PAGE_NONE.getRequestContext(),"foo.jsp",null) );
}
@Test
public void testOtherURL2()
throws Exception
{
final URLConstructor c = getConstructor( null );
Assertions.assertEquals( "/test/foo.jsp?a=1&b=2", c.makeURL(ContextEnum.PAGE_NONE.getRequestContext(),"foo.jsp","a=1&b=2") );
}
@Test
public void testEmptyURL()
throws Exception
{
final URLConstructor c = getConstructor( null );
Assertions.assertEquals( "/test/Wiki.jsp?page=", c.makeURL(ContextEnum.PAGE_VIEW.getRequestContext(),"",null) );
}
}