/** * 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.core; import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.util.Preconditions.checkNotNull; import static org.assertj.swing.edt.GuiActionRunner.execute; import static org.assertj.swing.query.ComponentLocationOnScreenQuery.locationOnScreen; import static org.assertj.swing.query.ComponentShowingQuery.isShowing; import static org.assertj.swing.test.task.ComponentRequestFocusAndWaitForFocusGainTask.giveFocusAndWaitTillIsFocused; import static org.assertj.swing.test.task.ComponentSetPopupMenuTask.createAndSetPopupMenu; import java.awt.Dimension; import java.awt.Point; import javax.annotation.Nonnull; import javax.swing.JPopupMenu; import javax.swing.JTextField; import org.assertj.swing.annotation.RunsInEDT; import org.assertj.swing.test.core.EDTSafeTestCase; import org.assertj.swing.test.swing.TestWindow; import org.junit.After; import org.junit.Before; /** * Base case for tests for {@link BasicRobot}. * * @author Yvonne Wang * @author Alex Ruiz */ public abstract class BasicRobot_TestCase extends EDTSafeTestCase { private BasicRobot robot; private MyWindow window; @Before public final void setUp() { robot = (BasicRobot) BasicRobot.robotWithCurrentAwtHierarchy(); window = MyWindow.createAndShow(checkNotNull(getClass())); beforeShowingWindow(); robot.showWindow(window); // implicitly test 'showWindow(Window)' assertThat(isShowing(window)).isTrue(); assertThat(locationOnScreen(window)).isEqualTo(new Point(100, 100)); } void beforeShowingWindow() { } @After public final void tearDown() { try { window.destroy(); } finally { robot.cleanUp(); } } @RunsInEDT final void giveFocusToTextField() { giveFocusAndWaitTillIsFocused(window().textField()); } @RunsInEDT final JPopupMenu addPopupMenuToTextField() { return createAndSetPopupMenu(window().textField(), "Luke", "Leia"); } static class MyWindow extends TestWindow { private final JTextField textField = new JTextField(10); @RunsInEDT static @Nonnull MyWindow createAndShow(final @Nonnull Class<?> testClass) { MyWindow result = execute(() -> display(new MyWindow(testClass))); return checkNotNull(result); } private MyWindow(@Nonnull Class<?> testClass) { super(testClass); addComponents(textField); setMinimumSize(new Dimension(100, 50)); } @Nonnull JTextField textField() { return checkNotNull(textField); } } @Nonnull BasicRobot robot() { return checkNotNull(robot); } @Nonnull MyWindow window() { return checkNotNull(window); } }