blob: dadf54f6f7c8c85808c3e6d82b5403a6284057d9 [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.wiki.render;
import org.apache.wiki.TestEngine;
import org.apache.wiki.api.core.Context;
import org.apache.wiki.api.core.Page;
import org.apache.wiki.api.spi.Wiki;
import org.apache.wiki.parser.JSPWikiMarkupParser;
import org.apache.wiki.parser.WikiDocument;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import java.io.IOException;
import java.io.StringReader;
public class WysiwygEditingRendererTest {
TestEngine testEngine = TestEngine.build();
@BeforeEach
public void setUp() throws Exception {
testEngine.saveText( "WysiwygEditingRendererTest", "test page" );
testEngine.saveText( "This Pagename Has Spaces", "This Pagename Has Spaces" );
}
@AfterEach
public void tearDown() {
testEngine.deleteTestPage( "WysiwygEditingRendererTest" );
testEngine.deleteTestPage( "This Pagename Has Spaces" );
}
private String render( final String s ) throws IOException {
final Page dummyPage = Wiki.contents().page(testEngine,"TestPage");
final Context ctx = Wiki.context().create(testEngine,dummyPage);
final StringReader in = new StringReader(s);
final JSPWikiMarkupParser p = new JSPWikiMarkupParser( ctx, in );
final WikiDocument d = p.parse();
final WysiwygEditingRenderer wer = new WysiwygEditingRenderer( ctx, d );
return wer.getString();
}
@Test
public void testDefinedPageLink() throws Exception {
String src = "[WysiwygEditingRendererTest]";
Assertions.assertEquals( "<a class=\"wikipage\" href=\"WysiwygEditingRendererTest\">WysiwygEditingRendererTest</a>", render(src) );
src = "[WysiwygEditingRendererTest#Footnotes]";
Assertions.assertEquals( "<a class=\"wikipage\" href=\"WysiwygEditingRendererTest#Footnotes\">WysiwygEditingRendererTest#Footnotes</a>", render(src) );
src = "[test page|WysiwygEditingRendererTest|class='notWikipageClass']";
Assertions.assertEquals( "<a class=\"notWikipageClass\" href=\"WysiwygEditingRendererTest\">test page</a>", render(src) );
src = "[This Pagename Has Spaces]";
Assertions.assertEquals( "<a class=\"wikipage\" href=\"This Pagename Has Spaces\">This Pagename Has Spaces</a>", render(src) );
}
@Test
public void testUndefinedPageLink() throws Exception {
String src = "[UndefinedPageLinkHere]";
Assertions.assertEquals( "<a class=\"createpage\" href=\"UndefinedPageLinkHere\">UndefinedPageLinkHere</a>", render(src) );
src = "[UndefinedPageLinkHere#SomeSection]";
Assertions.assertEquals( "<a class=\"createpage\" href=\"UndefinedPageLinkHere\">UndefinedPageLinkHere#SomeSection</a>", render(src) );
src = "[test page|UndefinedPageLinkHere|class='notEditpageClass']";
Assertions.assertEquals( "<a class=\"notEditpageClass\" href=\"UndefinedPageLinkHere\">test page</a>", render(src) );
src = "[Non-existent Pagename with Spaces]";
Assertions.assertEquals( "<a class=\"createpage\" href=\"Non-existent Pagename with Spaces\">Non-existent Pagename with Spaces</a>", render(src) );
}
}