Package org.xwiki.test.selenium

Source Code of org.xwiki.test.selenium.SkinCustomizationsTest

/*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.xwiki.test.selenium;

import org.xwiki.test.selenium.framework.AbstractXWikiTestCase;
import org.xwiki.test.selenium.framework.FlamingoSkinExecutor;
import org.xwiki.test.selenium.framework.XWikiTestSuite;

import junit.framework.Test;

/**
* Verify the skin customization features available in the Administration (like changing the default CSS, etc).
*
* @version $Id: a4a739df9c5a9172c390cbc0fe4b7be28d8209a8 $
*/
public class SkinCustomizationsTest extends AbstractXWikiTestCase
{
    public static Test suite()
    {
        XWikiTestSuite suite =
            new XWikiTestSuite("Verify the skin customization features " + "available in the Administration");
        suite.addTestSuite(SkinCustomizationsTest.class, FlamingoSkinExecutor.class);
        return suite;
    }

    @Override
    protected void setUp() throws Exception
    {
        super.setUp();
        loginAsAdmin();
    }

    @Override
    protected void tearDown() throws Exception
    {
        // Ensure that we reset the style
        openAdministrationPage();
        clickLinkWithText("Presentation");
        setFieldValue("XWiki.XWikiPreferences_0_stylesheet", "style.css");
        clickEditSaveAndContinue();
    }

    public void testChangeDefaultStyleCss() throws Exception
    {
        openAdministrationPage();
        clickLinkWithText("Presentation");
        // style.less.vm is not a valid CSS file but it will confirm that the default style has been changed.
        // we need to set an existing file otherwise the generated URL could be messy.
        setFieldValue("XWiki.XWikiPreferences_0_stylesheet", "less/style.less.vm");
        clickEditSaveAndContinue();
        open("Main", "WebHome");
        assertTrue(getSelenium().isElementPresent(
            "xpath=//head/link[contains(@href,'/skin/skins/flamingo/less/style.less.vm')]"));

    }
}
TOP

Related Classes of org.xwiki.test.selenium.SkinCustomizationsTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.