Package org.fest.swing.hierarchy

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

/*
* Created on Oct 25, 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 org.fest.assertions.Assertions.assertThat;
import static org.fest.swing.edt.GuiActionRunner.execute;
import static org.fest.swing.hierarchy.JInternalFrameIconifyTask.iconify;
import static org.fest.swing.test.builder.JTextFields.textField;
import static org.fest.swing.test.swing.TestMdiWindow.createAndShowNewWindow;

import java.awt.Component;
import java.awt.Container;
import java.util.Collection;

import org.fest.swing.edt.GuiQuery;
import org.fest.swing.lock.ScreenLock;
import org.fest.swing.test.core.EDTSafeTestCase;
import org.fest.swing.test.swing.TestMdiWindow;
import org.junit.Before;
import org.junit.Test;

/**
* Tests for {@link JDesktopPaneChildrenFinder#nonExplicitChildrenOf(Container)}.
*
* @author Alex Ruiz
*/
public class JDesktopPaneChildrenFinder_nonExplicitChildrenOf_Test extends EDTSafeTestCase {
  private JDesktopPaneChildrenFinder finder;

  @Before
  public void setUp() {
    finder = new JDesktopPaneChildrenFinder();
  }

  @Test
  public void should_return_empty_Collection_if_Component_is_not_JDesktopPane() {
    Container container = textField().createNew();
    assertThat(finder.nonExplicitChildrenOf(container)).isEmpty();
  }

  @Test
  public void should_return_empty_Collection_if_Component_is_null() {
    assertThat(finder.nonExplicitChildrenOf(null)).isEmpty();
  }

  @Test
  public void should_return_iconified_JInternalFrames_if_Component_is_JDesktopPane() {
    ScreenLock.instance().acquire(this);
    final TestMdiWindow window = createAndShowNewWindow(getClass());
    iconify(window.internalFrame());
    Collection<Component> children = execute(new GuiQuery<Collection<Component>>() {
      @Override
      protected Collection<Component> executeInEDT() {
        return finder.nonExplicitChildrenOf(window.desktop());
      }
    });
    try {
      assertThat(children).containsOnly(window.internalFrame());
    } finally {
      try {
        window.destroy();
      } finally {
        ScreenLock.instance().release(this);
      }
    }
  }
}
TOP

Related Classes of org.fest.swing.hierarchy.JDesktopPaneChildrenFinder_nonExplicitChildrenOf_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.