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     */
016    package edu.sampleu.admin.notification;
017    
018    import org.junit.Test;
019    import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils;
020    import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
021    import org.kuali.rice.testtools.selenium.WebDriverUtils;
022    
023    /**
024     * @author Kuali Rice Team (rice.collab@kuali.org)
025     */
026    public class SendSimpleNotificationAft extends WebDriverLegacyITBase {
027    
028        /**
029         * AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=Channel%20Subscriptions&channelUrl=" + WebDriverUtils
030         *  .getBaseUrlString() + "/ken/DisplayUserPreferences.form";
031         */
032        public static final String BOOKMARK_URL =
033                AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=Send%20Simple%20Notification&channelUrl=" + WebDriverUtils
034                        .getBaseUrlString() + "/ken/SendSimpleNotificationMessage.form";
035    
036        @Override
037        protected String getBookmarkUrl() {
038            return BOOKMARK_URL;
039        }
040    
041        @Override
042        protected void navigate() throws InterruptedException {
043            waitAndClickAdministration();
044            waitAndClickByLinkText("Send Simple Notification");
045        }
046        
047        private void testSimpleNotification() throws Exception{
048            selectFrameIframePortlet();
049            selectByName("channelName","Kuali Rice Channel (2 subscribers, 0 default recipients)");
050            selectByName("priorityName","Normal");
051            clearTextByName("sendDateTime");
052            clearTextByName("senderNames");
053            waitAndTypeByName("senderNames","admin,rice-team");
054            waitAndTypeByName("autoRemoveDateTime","01/16/2030 06:16 AM");
055            waitAndTypeByName("title","Test Title");
056            waitAndTypeByName("message","Test Message");
057            waitAndClickByName("submit");
058            waitForTextPresent("Notification(s) sent.");
059        }
060        
061        @Test
062        public void testSimpleNotificationBookmark() throws Exception {
063            testSimpleNotification();
064            passed();
065        }
066    
067        @Test
068        public void testSimpleNotificationNav() throws Exception {
069            testSimpleNotification();
070            passed();
071        }
072        
073    }