Package org.jasig.portal.channels.error

Source Code of org.jasig.portal.channels.error.CErrorTest

/**
* Licensed to Jasig under one or more contributor license
* agreements. See the NOTICE file distributed with this work
* for additional information regarding copyright ownership.
* Jasig licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a
* copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

package org.jasig.portal.channels.error;

import java.util.List;

import org.jasig.portal.IChannel;
import org.jasig.portal.PortalEvent;
import org.jasig.portal.channels.EventRecordingChannel;

import junit.framework.TestCase;

/**
* Testcase for CError.  Tests that it passes events to channels it wraps.
* @author andrew.petro@yale.edu
*/
public class CErrorTest extends TestCase {

  /**
   * Test that CError propogates events to wrapped channels.
   */
  public void testReceiveEvent() {
    EventRecordingChannel irc = new EventRecordingChannel();
   
    IChannel cError = new CError(ErrorCode.GENERAL_ERROR, new Throwable(), "bogusSusbscribeId", irc);
   
    assertTrue(irc.getEventsReceived().isEmpty());

    cError.receiveEvent(PortalEvent.SESSION_DONE_EVENT);
   
    List eventsReceived = irc.getEventsReceived();
    assertFalse(eventsReceived.isEmpty());
    PortalEvent event = (PortalEvent) irc.getEventsReceived().get(0);
    assertEquals(PortalEvent.SESSION_DONE, event.getEventNumber());
  }

}
TOP

Related Classes of org.jasig.portal.channels.error.CErrorTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.