Package org.xwiki.test.selenium

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

/*
* 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 junit.framework.Test;

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

/**
* Verify the data validation feature of XWiki.
*
* @version $Id$
*/
public class ValidationTest extends AbstractXWikiTestCase
{
    private static final String SYNTAX = "xwiki/1.0";
   
    public static Test suite()
    {
        XWikiTestSuite suite = new XWikiTestSuite("Verify the data validation feature of XWiki");
        suite.addTestSuite(ValidationTest.class, ColibriSkinExecutor.class);
        return suite;
    }

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

    public void testSaveActionValidatesWhenXValidateIsPresent()
    {
        deletePage("Main", "ValidatedClass");
        open("Main", "ValidatedClass", "edit", "editor=class");
        setFieldValue("propname", "prop");
        setFieldValue("proptype", "com.xpn.xwiki.objects.classes.StringClass");
        clickButtonAndContinue("//input[@name='action_propadd']");
        setFieldValue("prop_validationRegExp", "/^[0-4][0-2]$/");
        setFieldValue("prop_validationMessage", "invalid value for prop");
        clickEditSaveAndView();
        createPage("Main", "ValidatedObject",
            "value: $doc.display('prop')\n\n#foreach($e in $context.validationStatus.errors)$e #end", SYNTAX);
        open("Main", "ValidatedObject", "edit", "editor=object");
        setFieldValue("classname", "Main.ValidatedClass");
        clickButtonAndContinue("//input[@name='action_objectadd']");
        setFieldValue("Main.ValidatedClass_0_prop", "22");
        clickEditSaveAndView();
        open("Main", "ValidatedObject", "save", "xvalidate=1");
        assertTextPresent("value: 22");
        open("Main", "ValidatedObject", "edit", "editor=object");
        setFieldValue("Main.ValidatedClass_0_prop", "44");
        clickEditSaveAndView();
        open("Main", "ValidatedObject", "save", "xvalidate=1");
        assertTextNotPresent("value: 44");
        assertTextPresent("invalid value for prop");
        open("Main", "ValidatedObject", "save", "xvalidate=1&Main.ValidatedClass_0_prop=11");
        assertTextPresent("value: 11");
    }
}
TOP

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

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.