All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.assertj.swing.driver.JToolBarDriver Maven / Gradle / Ivy

The newest version!
/*
 * 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-2018 the original author or authors.
 */
package org.assertj.swing.driver;

import static javax.swing.SwingUtilities.getWindowAncestor;
import static org.assertj.core.util.Preconditions.checkNotNull;
import static org.assertj.swing.driver.ComponentPreconditions.checkEnabledAndShowing;
import static org.assertj.swing.driver.JToolBarIsFloatingQuery.isJToolBarFloating;
import static org.assertj.swing.edt.GuiActionRunner.execute;
import static org.assertj.swing.exception.ActionFailedException.actionFailure;
import static org.assertj.swing.format.Formatting.format;
import static org.fest.reflect.core.Reflection.field;

import java.awt.Container;
import java.awt.Point;
import java.awt.Window;

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import javax.swing.JToolBar;

import org.assertj.swing.annotation.RunsInCurrentThread;
import org.assertj.swing.annotation.RunsInEDT;
import org.assertj.swing.core.Robot;
import org.assertj.swing.edt.GuiQuery;
import org.assertj.swing.internal.annotation.InternalApi;
import org.assertj.swing.util.GenericRange;
import org.assertj.swing.util.Pair;

/**
 * 

* Supports functional testing of {@code JToolBar}s. *

* *

* Note: This class is intended for internal use only. Please use the classes in the package * {@link org.assertj.swing.fixture} in your tests. *

* * @author Yvonne Wang * @author Alex Ruiz */ @InternalApi public class JToolBarDriver extends JComponentDriver { private final JToolBarLocation location = new JToolBarLocation(); /** * Creates a new {@link JToolBarDriver}. * * @param robot the robot to use to simulate user input. */ public JToolBarDriver(@NotNull Robot robot) { super(robot); } /** * Indicates whether the given {@code JToolBar} is floating or not. * * @param toolBar the target {@code JToolBar}. * @return {@code true} if the {@code JToolBar} is floating, {@code false} otherwise. */ @RunsInEDT public boolean isFloating(final @NotNull JToolBar toolBar) { Boolean result = execute(() -> isJToolBarFloating(toolBar)); return checkNotNull(result); } /** * Makes the given {@code JToolBar} float. * * @param toolBar the target {@code JToolBar}. * @throws IllegalStateException if the {@code JToolBar} is disabled. * @throws IllegalStateException if the {@code JToolBar} is not showing on the screen. * @throws IllegalStateException if the {@code JToolBar} is not floatable. * @throws org.assertj.swing.exception.ActionFailedException if the {@code JToolBar} cannot be dragged. */ public void makeFloat(@NotNull JToolBar toolBar) { Pair> floatInfo = floatInfo(toolBar, location()); Point p = floatInfo.second.second; // ancestor location doFloat(toolBar, p.x, p.y, floatInfo); } /** * Drags the {@code JToolBar} to the given location, causing it to float. * * @param toolBar the target {@code JToolBar}. * @param x the horizontal coordinate of the location to drag the {@code JToolBar} to. * @param y the vertical coordinate of the location to drag the {@code JToolBar} to. * @throws IllegalStateException if the {@code JToolBar} is disabled. * @throws IllegalStateException if the {@code JToolBar} is not showing on the screen. * @throws IllegalStateException if the {@code JToolBar} is not floatable. * @throws org.assertj.swing.exception.ActionFailedException if the {@code JToolBar} cannot be dragged. */ @RunsInEDT public void floatTo(@NotNull JToolBar toolBar, int x, int y) { doFloat(toolBar, x, y, floatInfo(toolBar, location())); } @RunsInEDT @NotNull private static Pair> floatInfo(final @NotNull JToolBar toolBar, final @NotNull JToolBarLocation location) { Pair> result = execute(new GuiQuery>>() { @Override protected Pair> executeInEDT() { checkEnabledAndShowing(toolBar); checkFloatable(toolBar); Pair windowAndLocation = ancestorAndLocation(toolBar); return Pair.of(location.pointToGrab(toolBar), windowAndLocation); } }); return checkNotNull(result); } @RunsInCurrentThread private static void checkFloatable(@NotNull JToolBar toolBar) { if (!toolBar.isFloatable()) { String msg = String.format("JToolbar <%s> is not floatable", format(toolBar)); throw new IllegalStateException(msg); } } @RunsInCurrentThread @NotNull private static Pair ancestorAndLocation(final @NotNull JToolBar toolBar) { Window window = getWindowAncestor(toolBar); return Pair.of(window, window.getLocation()); } @RunsInEDT private void doFloat(@NotNull JToolBar toolBar, int x, int y, Pair> floatInfo) { drag(toolBar, checkNotNull(floatInfo.first)); Pair locationAndAncestor = floatInfo.second; Point ancestorLocation = locationAndAncestor.second; drop(checkNotNull(locationAndAncestor.first), new Point(x - ancestorLocation.x, y - ancestorLocation.y)); checkFloated(toolBar); } @RunsInEDT private static void checkFloated(final @NotNull JToolBar toolBar) { execute(() -> { if (!isJToolBarFloating(toolBar)) { throw actionFailure(String.format("Unable to float JToolbar <%s>", format(toolBar))); } }); } /** * Drop the {@code JToolBar} to the requested constraint position. The constraint position must be one of the * constants {@code BorderLayout.NORTH NORTH}, {@code BorderLayout.EAST EAST}, {@code BorderLayout.SOUTH SOUTH}, or * {@code BorderLayout.WEST WEST}. * * @param toolBar the target {@code JToolBar}. * @param constraint the constraint position. * @throws IllegalStateException if the {@code JToolBar} is disabled. * @throws IllegalStateException if the {@code JToolBar} is not showing on the screen. * @throws IllegalArgumentException if the constraint has an invalid value. * @throws org.assertj.swing.exception.ActionFailedException if the dock container cannot be found. */ @RunsInEDT public void unfloat(@NotNull JToolBar toolBar, @NotNull String constraint) { Pair, Container> unfloatInfo = unfloatInfo(toolBar, constraint, location()); GenericRange fromAndTo = unfloatInfo.first; drag(toolBar, fromAndTo.from()); drop(checkNotNull(unfloatInfo.second), fromAndTo.to()); validateIsNotFloating(toolBar, constraint); } @RunsInEDT @NotNull private static Pair, Container> unfloatInfo(final @NotNull JToolBar toolBar, final @NotNull String constraint, final @NotNull JToolBarLocation location) { Pair, Container> result = execute(new GuiQuery, Container>>() { @Override protected Pair, Container> executeInEDT() { checkEnabledAndShowing(toolBar); Container dock = dockFor(toolBar); Point from = location.pointToGrab(toolBar); Point to = location.dockLocation(toolBar, dock, constraint); return Pair.of(new GenericRange(from, to), dock); } }); return checkNotNull(result); } @RunsInEDT private static void validateIsNotFloating(final @NotNull JToolBar toolBar, final @NotNull String constraint) { execute(() -> { if (isJToolBarFloating(toolBar)) { String msg = String.format("Failed to dock <%s> using constraint ''", format(toolBar), constraint); throw actionFailure(msg); } }); } @RunsInCurrentThread @NotNull private static Container dockFor(final @NotNull JToolBar toolBar) { try { return checkNotNull(field("dockingSource").ofType(Container.class).in(toolBar.getUI()).get()); } catch (RuntimeException e) { throw actionFailure("Unabled to determine dock for JToolBar"); } } /** * Closes a floating {@code JToolBar}, making it go back to its original container in its last known location. * * @param toolBar the target {@code JToolBar}. * @throws IllegalStateException if the {@code JToolBar} is disabled. * @throws IllegalStateException if the {@code JToolBar} is not showing on the screen. */ @RunsInEDT public void unfloat(@NotNull JToolBar toolBar) { Window w = windowAncestorOf(toolBar); if (w != null) { robot.close(w); } } @RunsInEDT @Nullable private static Window windowAncestorOf(final @NotNull JToolBar toolBar) { return execute(() -> { checkEnabledAndShowing(toolBar); return getWindowAncestor(toolBar); }); } @NotNull private JToolBarLocation location() { return location; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy