org.assertj.swing.driver.JSliderDriver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-swing Show documentation
Show all versions of assertj-swing Show documentation
Fluent interface for functional GUI testing
/*
* Created on Jan 27, 2008
*
* 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 @2008-2013 the original author or authors.
*/
package org.assertj.swing.driver;
import static org.assertj.core.util.Preconditions.checkNotNull;
import static org.assertj.swing.driver.ComponentPreconditions.checkEnabledAndShowing;
import static org.assertj.swing.driver.JSliderSetValueTask.setValue;
import static org.assertj.swing.edt.GuiActionRunner.execute;
import java.awt.Point;
import javax.annotation.Nonnull;
import javax.swing.JSlider;
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 JSlider}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 Alex Ruiz
* @author Yvonne Wang
*/
@InternalApi
public class JSliderDriver extends JComponentDriver {
private final JSliderLocation location;
/**
* Creates a new {@link JSliderDriver}.
*
* @param robot the robot to use to simulate user input.
*/
public JSliderDriver(@Nonnull Robot robot) {
super(robot);
location = new JSliderLocation();
}
/**
* Slides the knob to its maximum.
*
* @param slider the target {@code JSlider}.
* @throws IllegalStateException if the {@code JSlider} is disabled.
* @throws IllegalStateException if the {@code JSlider} is not showing on the screen.
*/
@RunsInEDT
public void slideToMaximum(@Nonnull JSlider slider) {
slide(slider, findSlideToMaximumInfo(slider, location()));
}
@RunsInEDT
private static @Nonnull
Pair> findSlideToMaximumInfo(final @Nonnull JSlider slider,
final @Nonnull JSliderLocation location) {
Pair> result = execute(new GuiQuery>>() {
@Override
protected Pair> executeInEDT() {
checkEnabledAndShowing(slider);
int value = slider.getMaximum();
GenericRange fromAndTo = slideInfo(slider, location, value);
return Pair.of(value, fromAndTo);
}
});
return checkNotNull(result);
}
/**
* Slides the knob to its minimum.
*
* @param slider the target {@code JSlider}.
* @throws IllegalStateException if the {@code JSlider} is disabled.
* @throws IllegalStateException if the {@code JSlider} is not showing on the screen.
*/
@RunsInEDT
public void slideToMinimum(@Nonnull JSlider slider) {
slide(slider, findSlideToMinimumInfo(slider, location()));
}
@RunsInEDT
private static @Nonnull
Pair> findSlideToMinimumInfo(final @Nonnull JSlider slider,
final @Nonnull JSliderLocation location) {
Pair> result = execute(new GuiQuery>>() {
@Override
protected Pair> executeInEDT() {
checkEnabledAndShowing(slider);
int value = slider.getMinimum();
GenericRange fromAndTo = slideInfo(slider, location, value);
return Pair.of(value, fromAndTo);
}
});
return checkNotNull(result);
}
@RunsInEDT
private void slide(@Nonnull JSlider slider, @Nonnull Pair> slideInfo) {
slide(slider, slideInfo.first, checkNotNull(slideInfo.second));
}
/**
* Slides the knob to the requested value.
*
* @param slider the target {@code JSlider}.
* @param value the requested value.
* @throws IllegalStateException if the {@code JSlider} is disabled.
* @throws IllegalStateException if the {@code JSlider} is not showing on the screen.
* @throws IllegalArgumentException if the given position is not within the {@code JSlider} bounds.
*/
@RunsInEDT
public void slide(@Nonnull JSlider slider, int value) {
GenericRange slideInfo = findSlideInfo(slider, location(), value);
slide(slider, value, slideInfo);
}
@RunsInEDT
private void slide(@Nonnull JSlider slider, int value, @Nonnull GenericRange fromAndTo) {
moveMouseIgnoringAnyError(slider, fromAndTo.from());
moveMouseIgnoringAnyError(slider, fromAndTo.to());
setValue(slider, value);
robot.waitForIdle();
}
@RunsInEDT
private static @Nonnull
GenericRange findSlideInfo(final @Nonnull JSlider slider, final @Nonnull JSliderLocation location,
final int value) {
GenericRange result = execute(new GuiQuery>() {
@Override
protected GenericRange executeInEDT() {
checkValueInBounds(slider, value);
checkEnabledAndShowing(slider);
return slideInfo(slider, location, value);
}
});
return checkNotNull(result);
}
@RunsInCurrentThread
private static void checkValueInBounds(@Nonnull JSlider slider, int value) {
int min = slider.getMinimum();
int max = slider.getMaximum();
if (value >= min && value <= max) {
return;
}
String msg = String.format("Value <%d> is not within the JSlider bounds of <%d> and <%d>", value, min, max);
throw new IllegalArgumentException(msg);
}
@RunsInCurrentThread
private static GenericRange slideInfo(@Nonnull JSlider slider, JSliderLocation location, int value) {
Point from = location.pointAt(slider, slider.getValue());
Point to = location.pointAt(slider, value);
return new GenericRange(from, to);
}
private @Nonnull
JSliderLocation location() {
return location;
}
}