com.fitbur.assertj.api.EnumerableAssert Maven / Gradle / Ivy
/**
* 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-2016 the original author or authors.
*/
package com.fitbur.assertj.api;
import java.util.Comparator;
/**
* Assertions applicable to groups of values that can be enumerated (e.g. arrays, collections or strings.)
*
* @param the "self" type of this assertion class. Please read "Emulating
* 'self types' using Java Generics to simplify fluent API implementation" for more details.
* @param the type of elements of the "actual" value.
*
* @author Yvonne Wang
* @author Alex Ruiz
* @author Mikhail Mazursky
* @author Nicolas François
*/
public interface EnumerableAssert, E> {
/**
* Verifies that the actual group of values is {@code null} or empty.
*
* Example:
*
// assertions will pass
* List<String> strings = new ArrayList<>();
* assertThat(strings).isNullOrEmpty();
* assertThat(new int[] { }).isNullOrEmpty();
*
* // assertions will fail
* assertThat(new String[] { "a", "b"}).isNullOrEmpty();
* assertThat(Arrays.asList(1, 2, 3)).isNullOrEmpty();
*
* @throws AssertionError if the actual group of values is not {@code null} or not empty.
*/
void isNullOrEmpty();
/**
* Verifies that the actual group of values is empty.
*
* Example:
*
// assertions will pass
* assertThat(new ArrayList()).isEmpty();
* assertThat(new int[] { }).isEmpty();
*
* // assertions will fail
* assertThat(new String[] { "a", "b" }).isEmpty();
* assertThat(Arrays.asList(1, 2, 3)).isEmpty();
*
* @throws AssertionError if the actual group of values is not empty.
*/
void isEmpty();
/**
* Verifies that the actual group of values is not empty.
*
* Example:
*
// assertions will pass
* assertThat(new String[] { "a", "b" }).isNotEmpty();
* assertThat(Arrays.asList(1, 2, 3)).isNotEmpty();
*
* // assertions will fail
* assertThat(new ArrayList()).isNotEmpty();
* assertThat(new int[] { }).isNotEmpty();
*
* @return {@code this} assertion object.
* @throws AssertionError if the actual group of values is empty.
*/
S isNotEmpty();
/**
* Verifies that the number of values in the actual group is equal to the given one.
*
* Example:
*
// assertions will pass
* assertThat(new String[] { "a", "b" }).hasSize(2);
* assertThat(Arrays.asList(1, 2, 3)).hasSize(3);
*
* // assertions will fail
* assertThat(new ArrayList()).hasSize(1);
* assertThat(new int[] { 1, 2, 3 }).hasSize(2);
*
* @param expected the expected number of values in the actual group.
* @return {@code this} assertion object.
* @throws AssertionError if the number of values of the actual group is not equal to the given one.
*/
S hasSize(int expected);
/**
* Verifies that the actual group has the same size as given {@link Iterable}.
*
* Example:
* Iterable<String> abc = newArrayList("a", "b", "c");
* Iterable<Ring> elvesRings = newArrayList(vilya, nenya, narya);
*
* // assertion will pass
* assertThat(elvesRings).hasSameSizeAs(abc);
*
* // assertions will fail
* assertThat(elvesRings).hasSameSizeAs(Arrays.asList(1, 2));
* assertThat(elvesRings).hasSameSizeAs(Arrays.asList(1, 2, 3, 4));
*
* @param other the {@code Iterable} to compare size with actual group.
* @return {@code this} assertion object.
* @throws AssertionError if the actual group is {@code null}.
* @throws AssertionError if the other {@code Iterable} is {@code null}.
* @throws AssertionError if actual group and given {@code Iterable} don't have the same size.
*/
S hasSameSizeAs(Iterable> other);
/**
* Verifies that the actual group has the same size as given array.
*
* Parameter is declared as Object to accept both Object[] and primitive arrays (e.g. int[]).
*
* Example:
* int[] oneTwoThree = {1, 2, 3};
* Iterable<Ring> elvesRings = newArrayList(vilya, nenya, narya);
*
* // assertion will pass
* assertThat(elvesRings).hasSameSizeAs(oneTwoThree);
*
* // assertions will fail
* assertThat(elvesRings).hasSameSizeAs(new int[] { 1, 2});
* assertThat(elvesRings).hasSameSizeAs(new int[] { 1, 2, 3, 4});
*
* @param array the array to compare size with actual group.
* @return {@code this} assertion object.
* @throws AssertionError if the actual group is {@code null}.
* @throws AssertionError if the array parameter is {@code null} or is not a true array.
* @throws AssertionError if actual group and given array don't have the same size.
*/
S hasSameSizeAs(Object array);
/**
* Use given custom comparator instead of relying on actual type A equals
method to compare group
* elements for incoming assertion checks.
*
* Custom comparator is bound to assertion instance, meaning that if a new assertion is created, it will use default
* comparison strategy.
*
* Examples :
*
// compares invoices by payee
* assertThat(invoiceList).usingComparator(invoicePayeeComparator).isEqualTo(expectedInvoiceList);
*
* // compares invoices by date, doesNotHaveDuplicates and contains both use the given invoice date comparator
* assertThat(invoiceList).usingComparator(invoiceDateComparator).doesNotHaveDuplicates().contains(may2010Invoice);
*
* // as assertThat(invoiceList) creates a new assertion, it falls back to standard comparison strategy
* // based on Invoice's equal method to compare invoiceList elements to lowestInvoice.
* assertThat(invoiceList).contains(lowestInvoice);
*
* // standard comparison : the fellowshipOfTheRing includes Gandalf but not Sauron (believe me) ...
* assertThat(fellowshipOfTheRing).contains(gandalf)
* .doesNotContain(sauron);
*
* // ... but if we compare only races, Sauron is in fellowshipOfTheRing because he's a Maia like Gandalf.
* assertThat(fellowshipOfTheRing).usingElementComparator(raceComparator)
* .contains(sauron);
*
* @param customComparator the comparator to use for incoming assertion checks.
* @throws NullPointerException if the given comparator is {@code null}.
* @return {@code this} assertion object.
*/
S usingElementComparator(Comparator super E> customComparator);
/**
* Revert to standard comparison for incoming assertion group element checks.
*
* This method should be used to disable a custom comparison strategy set by calling
* {@link #usingElementComparator(Comparator)}.
*
* @return {@code this} assertion object.
*/
S usingDefaultElementComparator();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy