001/**
002 * Copyright 2005-2013 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 edu.samplu.admin.test;
017
018import edu.samplu.common.Failable;
019import edu.samplu.common.ITUtil;
020
021/**
022 * @author Kuali Rice Team (rice.collab@kuali.org)
023 */
024public abstract class AddingNameSpacesAbstractSmokeTestBase extends AdminTmplMthdSTNavBase{
025
026    /**
027     * ITUtil.PORTAL+"?channelTitle=Namespace&channelUrl="+ITUtil.getBaseUrlString()+"/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.namespace.NamespaceBo&docFormKey=88888888&returnLocation="+ITUtil.PORTAL_URL+"&hideReturnLink=true";
028     */
029    public static final String BOOKMARK_URL = ITUtil.PORTAL+"?channelTitle=Namespace&channelUrl="+ITUtil.getBaseUrlString()+"/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.namespace.NamespaceBo&docFormKey=88888888&returnLocation="+ITUtil.PORTAL_URL+"&hideReturnLink=true";
030
031    /**
032     * {@inheritDoc}
033     * Namespace
034     * @return
035     */
036    @Override
037    protected String getLinkLocator() {
038        return "Namespace";
039    }
040
041    public void testAddingNamespaceBookmark(Failable failable) throws Exception {
042        testAddingNamespace(this);
043        passed();
044    }
045
046    public void testAddingNamespaceNav(Failable failable) throws Exception {
047        testAddingNamespace(this);
048        passed();
049    }
050
051    public void testSearchEditBackNav(Failable failable) throws Exception {
052        testSearchEditBack(this);
053        passed();
054    }
055
056    public void testSearchSearchBackNav(Failable failable) throws Exception {
057        testSearchSearchBack(this, "code", "KR-SYS");
058        passed();
059    }
060}