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

org.assertj.swing.assertions.ImageAssert Maven / Gradle / Ivy

There is a newer version: 3.17.1
Show 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-2015 the original author or authors.
 */
package org.assertj.swing.assertions;

import java.awt.Dimension;
import java.awt.image.BufferedImage;
import java.util.Comparator;

import org.assertj.core.api.AbstractAssert;
import org.assertj.core.data.Offset;
import org.assertj.core.util.VisibleForTesting;
import org.assertj.swing.internal.assertions.Images;

/**
 * Assertion methods for images.
 * 

* To create an instance of this class, invoke {@link Assertions#assertThat(BufferedImage)}. *

* * @author Yvonne Wang * @author Alex Ruiz * @author Ansgar Konermann * @author Joel Costigliola * @author Mikhail Mazursky */ public class ImageAssert extends AbstractAssert { @VisibleForTesting Images images = Images.instance(); protected ImageAssert(BufferedImage actual) { super(actual, ImageAssert.class); } /** * Verifies that the actual image is equal to the given one. Two images are equal if: *
    *
  1. they have equal size
  2. *
  3. the the RGB values of the color at each pixel are equal
  4. *
* * @param expected the given image to compare the actual image to. * @return {@code this} assertion object. * @throws AssertionError if the actual image is not equal to the given one. */ public ImageAssert isEqualTo(BufferedImage expected) { images.assertEqual(info, actual, expected); return this; } /** * Verifies that the actual image is equal to the given one. Two images are equal if: *
    *
  1. they have the same size
  2. *
  3. the difference between the RGB values of the color at each pixel is less than or equal to the given offset
  4. *
* * @param expected the given image to compare the actual image to. * @param offset helps decide if the color of two pixels are similar: two pixels that are identical to the human eye * may still have slightly different color values. For example, by using an offset of 1 we can indicate that * a blue value of 60 is similar to a blue value of 61. * @return {@code this} assertion object. * @throws NullPointerException if the given offset is {@code null}. * @throws AssertionError if the actual image is not equal to the given one. */ public ImageAssert isEqualTo(BufferedImage expected, Offset offset) { images.assertEqual(info, actual, expected, offset); return this; } public ImageAssert isNotEqualTo(BufferedImage other) { images.assertNotEqual(info, actual, other); return this; } /** * Verifies that the actual image has the given size. * * @param expected the expected size of the actual image. * @return {@code this} assertion object. * @throws NullPointerException if the given size is {@code null}. * @throws AssertionError if the size of the actual image is not equal to the given size. */ public ImageAssert hasSize(Dimension expected) { images.assertHasSize(info, actual, expected); return this; } @Override public ImageAssert usingComparator(Comparator customComparator) { throw new UnsupportedOperationException("custom Comparator is not supported for image comparison"); } @Override public ImageAssert usingDefaultComparator() { super.usingDefaultComparator(); images = Images.instance(); return myself; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy