Package org.richfaces.component

Source Code of org.richfaces.component.SimpleToggleEventTest$TestFacesListener

/**
* License Agreement.
*
*  JBoss RichFaces - Ajax4jsf Component Library
*
* Copyright (C) 2007  Exadel, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation.
*
* This library 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 library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
*/

package org.richfaces.component;

import org.ajax4jsf.tests.AbstractAjax4JsfTestCase;
import org.richfaces.event.ISimpleToggleListener;
import org.richfaces.event.SimpleToggleEvent;

import javax.faces.event.FacesListener;

/**
* Unit test for SuggestionEvent.
*/
public class SimpleToggleEventTest extends AbstractAjax4JsfTestCase {

    private SimpleToggleEvent event;
    private UISimpleTogglePanel stp;
    private boolean result;

    /**
     * Create the test case
     *
     * @param testName name of the test case
     */
    public SimpleToggleEventTest(String testName) {
        super(testName);
    }

    /* (non-Javadoc)
     * @see org.ajax4jsf.tests.AbstractAjax4JsfTestCase#setUp()
     */
    public void setUp() throws Exception {
        super.setUp();

        stp = (UISimpleTogglePanel)application.createComponent("org.richfaces.SimpleTogglePanel");
        stp.setId("simpleTogglePanel1");
        result = false;
    }

    /* (non-Javadoc)
     * @see org.ajax4jsf.tests.AbstractAjax4JsfTestCase#tearDown()
     */
    public void tearDown() throws Exception {
        super.tearDown();
        event = null;
        stp = null;
    }

    public void testEvent() throws Exception {
        event = new SimpleToggleEvent(stp, false);
        assertFalse(event.isIsOpen());
        event.setIsOpen(true);
        assertTrue(event.isIsOpen());

        assertFalse(event.isAppropriateListener(new TestFacesListener()));
        assertTrue(event.isAppropriateListener(new TestSimpleToggleListener()));

        event.processListener(new TestSimpleToggleListener());
        assertTrue(result);
    }

    class TestFacesListener implements FacesListener {

    }

    class TestSimpleToggleListener implements ISimpleToggleListener {
        public void processToggle(SimpleToggleEvent event) {
            result = true;
        }
    }
}
TOP

Related Classes of org.richfaces.component.SimpleToggleEventTest$TestFacesListener

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.