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

org.assertj.swing.fixture.DialogFixture 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.fixture;

import java.awt.Dialog;

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import org.assertj.swing.core.Robot;
import org.assertj.swing.driver.DialogDriver;

/**
 * Supports functional testing of {@code Dialog}s.
 * 
 * @author Alex Ruiz
 */
public class DialogFixture extends AbstractWindowFixture {
  /**
   * Creates a new {@link DialogFixture}. This constructor creates a new {@link Robot} containing the current AWT
   * hierarchy.
   * 
   * @param target the {@code Dialog} to be managed by this fixture.
   * @throws NullPointerException if {@code target} is {@code null}.
   * @see org.assertj.swing.core.BasicRobot#robotWithCurrentAwtHierarchy()
   */
  public DialogFixture(@NotNull Dialog target) {
    super(DialogFixture.class, target);
  }

  /**
   * Creates a new {@link DialogFixture}.
   * 
   * @param robot performs simulation of user events on the given {@code Dialog}.
   * @param target the {@code Dialog} to be managed by this fixture.
   * @throws NullPointerException if {@code robot} is {@code null}.
   * @throws NullPointerException if {@code target} is {@code null}.
   */
  public DialogFixture(@NotNull Robot robot, @NotNull Dialog target) {
    super(DialogFixture.class, robot, target);
  }

  /**
   * Creates a new {@link DialogFixture}.
   * 
   * @param robot performs simulation of user events on a {@code Dialog}.
   * @param dialogName the name of the {@code Dialog} to find using the given {@code Robot}.
   * @throws NullPointerException if {@code robot} is {@code null}.
   * @throws org.assertj.swing.exception.ComponentLookupException if a {@code Dialog} having a matching name could not be found.
   * @throws org.assertj.swing.exception.ComponentLookupException if more than one {@code Dialog} having a matching name is found.
   */
  public DialogFixture(@NotNull Robot robot, @Nullable String dialogName) {
    super(DialogFixture.class, robot, dialogName, Dialog.class);
  }

  /**
   * Creates a new {@link DialogFixture}. This constructor creates a new {@link Robot} containing the current AWT
   * hierarchy.
   * 
   * @param dialogName the name of the {@code Dialog} to find.
   * @throws org.assertj.swing.exception.ComponentLookupException if a {@code Dialog} having a matching name could not be found.
   * @throws org.assertj.swing.exception.ComponentLookupException if more than one {@code Dialog} having a matching name is found.
   * @see org.assertj.swing.core.BasicRobot#robotWithCurrentAwtHierarchy()
   */
  public DialogFixture(@Nullable String dialogName) {
    super(DialogFixture.class, dialogName, Dialog.class);
  }

  @Override
  @NotNull
  protected DialogDriver createDriver(@NotNull Robot robot) {
    return new DialogDriver(robot);
  }

  /**
   * Asserts that this fixture's {@code Dialog} is modal.
   * 
   * @return this fixture.
   * @throws AssertionError if this fixture's {@code Dialog} is not modal.
   */
  @NotNull
  public DialogFixture requireModal() {
    driver().requireModal(target());
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy