Package org.fest.swing.hierarchy

Source Code of org.fest.swing.hierarchy.TransientWindowListener_eventDispatched_Test

/*
* Created on Nov 12, 2007
*
* Licensed 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.
*
* Copyright @2007-2013 the original author or authors.
*/
package org.fest.swing.hierarchy;

import static java.awt.event.WindowEvent.WINDOW_CLOSED;
import static org.fest.swing.timing.Pause.pause;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

import java.awt.AWTEvent;
import java.awt.event.WindowEvent;

import org.junit.Test;

/**
* Tests for {@link TransientWindowListener#eventDispatched(AWTEvent)}.
*
* @author Alex Ruiz
*/
public class TransientWindowListener_eventDispatched_Test extends TransientWindowListener_eventDispatched_TestCase {
  private WindowEvent event;

  @Override
  void onSetUp() {
    event = new WindowEvent(eventSource, WINDOW_CLOSED);
  }

  @Test
  public void shouldFilterClosedWindowAfterEventIsProcessed() {
    when(windowFilter.isIgnored(eventSource)).thenReturn(false);
    when(windowFilter.isImplicitlyIgnored(eventSource)).thenReturn(true);
    listener.eventDispatched(event);
    waitTillClosedEventIsHandled();
    verify(windowFilter).implicitlyIgnore(eventSource);
    verify(windowFilter).ignore(eventSource);
  }

  @Test
  public void shouldNotFilterClosedWindowAfterEventIsProcessedIfWindowNotImplicitFiltered() {
    when(windowFilter.isIgnored(eventSource)).thenReturn(false);
    when(windowFilter.isImplicitlyIgnored(eventSource)).thenReturn(false);
    listener.eventDispatched(event);
    waitTillClosedEventIsHandled();
    verify(windowFilter).implicitlyIgnore(eventSource);
  }

  private void waitTillClosedEventIsHandled() {
    pause(2000);
  }
}
TOP

Related Classes of org.fest.swing.hierarchy.TransientWindowListener_eventDispatched_Test

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.