org.apache.wiki.its.AnonymousViewIT Maven / Gradle / Ivy
/*
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.its;
import static com.codeborne.selenide.Condition.exist;
import static com.codeborne.selenide.Condition.not;
import java.io.File;
import org.apache.wiki.pages.Page;
import org.apache.wiki.pages.haddock.ReadWikiPage;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import com.codeborne.selenide.junit5.ScreenShooterExtension;
/**
* Anonymous view related tests for Apache JSPWiki
*/
@ExtendWith( ScreenShooterExtension.class )
public class AnonymousViewIT {
@Test
void anonymousView() throws Exception {
ReadWikiPage main = Page.withUrl( Page.baseUrl() + "/Wiki.jsp?page=Main" ).openAs( new ReadWikiPage() );
Assertions.assertEquals( "JSPWiki: Main", main.title() );
Assertions.assertEquals( "Main", main.wikiTitle() );
Assertions.assertTrue( main.wikiPageContent().contains( "You have successfully installed" ) );
ReadWikiPage about = main.navigateTo( "JSPWiki" );
Assertions.assertTrue( about.wikiPageContent().contains( "This Wiki is done using" ) );
}
@Test
void anonymousViewImage() throws Exception {
File file = Page.download( Page.baseUrl() + "/images/jspwiki_logo_s.png" );
Assertions.assertTrue( file.exists() );
}
@Test
void anonymousReaderView() {
ReadWikiPage main = Page.withUrl( Page.baseUrl() + "/Wiki.jsp?page=Main" ).openAs( new ReadWikiPage() );
Assertions.assertEquals( "JSPWiki: Main", main.title() );
Assertions.assertEquals( "Main", main.wikiTitle() );
main.sidebar().should( exist );
main.hoverMoreArea().clickOnShowReaderView();
main.sidebar().should( not( exist ) );
}
}