Author: sdumitriu
Date: 2008-02-12 15:06:52 +0100 (Tue, 12 Feb 2008)
New Revision: 7541
Added:
xwiki-products/xwiki-enterprise/trunk/distribution-test/selenium-tests/src/test/it/com/xpn/xwiki/it/selenium/UsersGroupsRightsManagementTest.java
Modified:
xwiki-products/xwiki-enterprise/trunk/distribution-test/selenium-tests/src/test/it/com/xpn/xwiki/it/selenium/AllTests.java
Log:
XWIKI-2039: Creating a group with the name of an existing page should generate
an error
Added integration test.
Modified:
xwiki-products/xwiki-enterprise/trunk/distribution-test/selenium-tests/src/test/it/com/xpn/xwiki/it/selenium/AllTests.java
===================================================================
---
xwiki-products/xwiki-enterprise/trunk/distribution-test/selenium-tests/src/test/it/com/xpn/xwiki/it/selenium/AllTests.java
2008-02-12 12:45:56 UTC (rev 7540)
+++
xwiki-products/xwiki-enterprise/trunk/distribution-test/selenium-tests/src/test/it/com/xpn/xwiki/it/selenium/AllTests.java
2008-02-12 14:06:52 UTC (rev 7541)
@@ -56,6 +56,7 @@
addTestCase(suite, VelocityMacrosTest.class);
addTestCase(suite, BacklinksTest.class);
addTestCase(suite, CacheTest.class);
+ addTestCase(suite, UsersGroupsRightsManagementTest.class);
return new XWikiTestSetup(suite);
}
Added:
xwiki-products/xwiki-enterprise/trunk/distribution-test/selenium-tests/src/test/it/com/xpn/xwiki/it/selenium/UsersGroupsRightsManagementTest.java
===================================================================
---
xwiki-products/xwiki-enterprise/trunk/distribution-test/selenium-tests/src/test/it/com/xpn/xwiki/it/selenium/UsersGroupsRightsManagementTest.java
(rev 0)
+++
xwiki-products/xwiki-enterprise/trunk/distribution-test/selenium-tests/src/test/it/com/xpn/xwiki/it/selenium/UsersGroupsRightsManagementTest.java
2008-02-12 14:06:52 UTC (rev 7541)
@@ -0,0 +1,70 @@
+/*
+ * 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 com.xpn.xwiki.it.selenium;
+
+import com.xpn.xwiki.it.selenium.framework.AbstractXWikiTestCase;
+import com.xpn.xwiki.it.selenium.framework.AlbatrossSkinExecutor;
+import com.xpn.xwiki.it.selenium.framework.XWikiTestSuite;
+
+import junit.framework.Test;
+
+/**
+ * Verify the login and logout features of XWiki.
+ *
+ * @version $Id: $
+ */
+public class UsersGroupsRightsManagementTest extends AbstractXWikiTestCase
+{
+ public static Test suite()
+ {
+ XWikiTestSuite suite =
+ new XWikiTestSuite("Verify the Users, Groups and Rights Management
features of XWiki");
+ suite.addTestSuite(UsersGroupsRightsManagementTest.class,
AlbatrossSkinExecutor.class);
+ return suite;
+ }
+
+ protected void setUp() throws Exception
+ {
+ super.setUp();
+ loginAsAdmin();
+ }
+
+ public void testCreateGroup()
+ {
+ clickLinkWithText("Administration");
+ clickLinkWithText("Groups");
+ clickLinkWithText("Add new group", false);
+ setFieldValue("newgroupi", "NewGroup");
+ getSelenium().setSpeed("1000");
+ getSelenium().click("//[EMAIL PROTECTED]'Create group']");
+ assertTextPresent("NewGroup");
+ }
+
+ public void testCreateAnExistingGroup()
+ {
+ clickLinkWithText("Administration");
+ clickLinkWithText("Groups");
+ clickLinkWithText("Add new group", false);
+ setFieldValue("newgroupi", "Admin");
+ getSelenium().setSpeed("1000");
+ getSelenium().click("//[EMAIL PROTECTED]'Create group']");
+ assertEquals("Admin cannot be used for the group name, as another
document with this name already exists.", this.getSelenium().getAlert());
+ }
+}
Property changes on:
xwiki-products/xwiki-enterprise/trunk/distribution-test/selenium-tests/src/test/it/com/xpn/xwiki/it/selenium/UsersGroupsRightsManagementTest.java
___________________________________________________________________
Name: svn:eol-style
+ native
_______________________________________________
notifications mailing list
[email protected]
http://lists.xwiki.org/mailman/listinfo/notifications