/** * 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 2012-2015 the original author or authors. */ package org.assertj.swing.hierarchy; import static java.awt.event.WindowEvent.WINDOW_CLOSED; import static org.assertj.swing.timing.Pause.pause; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; 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); } }