/* * 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.ui; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Rule; import org.xwiki.repository.test.RepositoryTestUtils; /** * Base class for admin tests that need to manipulate a repository of extensions. * * @version $Id: 94630593e04cd67aa88215a0abe6b29c7d489bb7 $ */ public abstract class AbstractExtensionAdminAuthenticatedTest extends AbstractTest { @Rule public SuperAdminAuthenticationRule authenticationRule = new SuperAdminAuthenticationRule(getUtil()); @Before public void setUp() throws Exception { // Make sure to have the proper token getUtil().recacheSecretToken(); // Save admin credentials getUtil().setDefaultCredentials(TestUtils.SUPER_ADMIN_CREDENTIALS); } @BeforeClass public static void init() throws Exception { // Require some AbstractTest initialization AbstractTest.init(); // Make sure repository and extension utils are initialized and set. RepositoryTestUtils repositoryTestUtils = getRepositoryTestUtils(); // This will not be null if we are in the middle of allTests if (repositoryTestUtils == null) { AllTests.initExtensions(context); } } protected static RepositoryTestUtils getRepositoryTestUtils() { return (RepositoryTestUtils) context.getProperties().get(RepositoryTestUtils.PROPERTY_KEY); } }