001/**
002 * Copyright 2005-2014 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.testtools.selenium;
017
018import org.junit.runners.BlockJUnit4ClassRunner;
019import org.junit.runners.model.FrameworkMethod;
020import org.junit.runners.model.InitializationError;
021import org.junit.runners.model.Statement;
022
023import java.lang.reflect.Method;
024
025/**
026 * JUnit Test Runner to run test Automated Functional Tests.  Enables bookmark mode for test methods
027 * ending in Bookmark and navigation mode for test methods ending in Nav. {@see AutomatedFunctionalTestBase}.
028 * @author Kuali Rice Team (rice.collab@kuali.org)
029 */
030public class AutomatedFunctionalTestRunner extends BlockJUnit4ClassRunner {
031
032    /**
033     * AutomatedFunctionalTestRunner constructor.
034     *
035     * @param type
036     * @throws InitializationError
037     */
038    public AutomatedFunctionalTestRunner(Class<?> type) throws InitializationError {
039        super(type);
040    }
041
042    /**
043     * Test methods ending with Bookmark will have {@see AutomatedFunctionalTestBase#enableBookmarkMode} called,
044     * test methods ending with Nav will have {@see AutomatedFunctionalTestBase#enableNavigationMode} called.
045     *
046     * @param method test method to check for ending in Bookmark or Nav
047     * @param test which extends AutomatedFunctionalTestBase
048     * @return {@see BlockJUnit4ClassRunner#methodInvoker}
049     */
050    @Override
051    protected Statement methodInvoker(FrameworkMethod method, Object test) {
052        Method testMethod = method.getMethod();
053        if (testMethod.getName().endsWith("Bookmark")) {
054            ((AutomatedFunctionalTestBase) test).enableBookmarkMode();
055        } else if (testMethod.getName().endsWith("Nav")) {
056            ((AutomatedFunctionalTestBase) test).enableNavigationMode();
057        }
058        return super.methodInvoker(method, test);
059    }
060}