com.fitbur.assertj.api.AbstractIntArrayAssert 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;
import com.fitbur.assertj.data.Index;
import com.fitbur.assertj.internal.ComparatorBasedComparisonStrategy;
import com.fitbur.assertj.internal.IntArrays;
import com.fitbur.assertj.util.VisibleForTesting;
public abstract class AbstractIntArrayAssert>
extends AbstractArrayAssert {
@VisibleForTesting
protected IntArrays arrays = IntArrays.instance();
public AbstractIntArrayAssert(int[] actual, Class> selfType) {
super(actual, selfType);
}
/** {@inheritDoc} */
@Override
public void isNullOrEmpty() {
arrays.assertNullOrEmpty(info, actual);
}
/** {@inheritDoc} */
@Override
public void isEmpty() {
arrays.assertEmpty(info, actual);
}
/** {@inheritDoc} */
@Override
public S isNotEmpty() {
arrays.assertNotEmpty(info, actual);
return myself;
}
/** {@inheritDoc} */
@Override
public S hasSize(int expected) {
arrays.assertHasSize(info, actual, expected);
return myself;
}
/** {@inheritDoc} */
@Override
public S hasSameSizeAs(Iterable> other) {
arrays.assertHasSameSizeAs(info, actual, other);
return myself;
}
/**
* Verifies that the actual array contains the given values, in any order.
*
* Example:
*
// assertions will pass
* assertThat(new int[] { 1, 2, 3 }).contains(1, 2);
* assertThat(new int[] { 1, 2, 3 }).contains(3, 1);
* assertThat(new int[] { 1, 2, 3 }).contains(1, 3, 2);
*
* // assertions will fail
* assertThat(new int[] { 1, 2, 3 }).contains(1, 4);
* assertThat(new int[] { 1, 2, 3 }).contains(4, 7);
*
* @param values the given values.
* @return {@code this} assertion object.
* @throws NullPointerException if the given argument is {@code null}.
* @throws IllegalArgumentException if the given argument is an empty array.
* @throws AssertionError if the actual array is {@code null}.
* @throws AssertionError if the actual array does not contain the given values.
*/
public S contains(int... values) {
arrays.assertContains(info, actual, values);
return myself;
}
/**
* Verifies that the actual array contains only the given values and nothing else, in any order.
*
* Example:
*
// assertions will pass
* assertThat(new int[] { 1, 2, 3 }).containsOnly(1, 2, 3);
* assertThat(new int[] { 1, 2, 3 }).containsOnly(2, 3, 1);
*
* // assertions will fail
* assertThat(new int[] { 1, 2, 3 }).containsOnly(1, 2, 3, 4);
* assertThat(new int[] { 1, 2, 3 }).containsOnly(4, 7);
*
* @param values the given values.
* @return {@code this} assertion object.
* @throws NullPointerException if the given argument is {@code null}.
* @throws IllegalArgumentException if the given argument is an empty array.
* @throws AssertionError if the actual array is {@code null}.
* @throws AssertionError if the actual array does not contain the given values, i.e. the actual array contains some
* or none of the given values, or the actual array contains more values than the given ones.
*/
public S containsOnly(int... values) {
arrays.assertContainsOnly(info, actual, values);
return myself;
}
/**
* Verifies that the actual array contains the given values only once.
*
* Examples :
*
// assertion will pass
* assertThat(new int[] { 1, 2, 3 }).containsOnlyOnce(1, 2);
*
* // assertions will fail
* assertThat(new int[] { 1, 2, 1 }).containsOnlyOnce(1);
* assertThat(new int[] { 1, 2, 3 }).containsOnlyOnce(4);
* assertThat(new int[] { 1, 2, 3, 3 }).containsOnlyOnce(0, 1, 2, 3, 4, 5);
*
* @param values the given values.
* @return {@code this} assertion object.
* @throws NullPointerException if the given argument is {@code null}.
* @throws IllegalArgumentException if the given argument is an empty array.
* @throws AssertionError if the actual array is {@code null}.
* @throws AssertionError if the actual group does not contain the given values, i.e. the actual group contains some
* or none of the given values, or the actual group contains more than once these values.
*/
public S containsOnlyOnce(int... values) {
arrays.assertContainsOnlyOnce(info, actual, values);
return myself;
}
/**
* Verifies that the actual array contains the given sequence, without any other values between them.
*
* Example:
*
// assertion will pass
* assertThat(new int[] { 1, 2, 3 }).containsSequence(1, 2);
*
* // assertion will fail
* assertThat(new int[] { 1, 2, 3 }).containsSequence(1, 3);
* assertThat(new int[] { 1, 2, 3 }).containsSequence(2, 1);
*
*
*
* @param sequence the sequence of values to look for.
* @return myself assertion object.
* @throws AssertionError if the actual array is {@code null}.
* @throws AssertionError if the given array is {@code null}.
* @throws AssertionError if the actual array does not contain the given sequence.
*/
public S containsSequence(int... sequence) {
arrays.assertContainsSequence(info, actual, sequence);
return myself;
}
/**
* Verifies that the actual array contains the given subsequence (possibly with other values between them).
*
* Example:
*
// assertion will pass
* assertThat(new int[] { 1, 2, 3 }).containsSubsequence(1, 2);
* assertThat(new int[] { 1, 2, 3 }).containsSubsequence(1, 3);
*
* // assertion will fail
* assertThat(new int[] { 1, 2, 3 }).containsSubsequence(2, 1);
*
*
*
* @param subsequence the subsequence of values to look for.
* @return myself assertion object.
* @throws AssertionError if the actual array is {@code null}.
* @throws AssertionError if the given array is {@code null}.
* @throws AssertionError if the actual array does not contain the given subsequence.
*/
public S containsSubsequence(int... subsequence) {
arrays.assertContainsSubsequence(info, actual, subsequence);
return myself;
}
/**
* Verifies that the actual array contains the given value at the given index.
*
* Example:
*
// assertions will pass
* assertThat(new int[] { 1, 2, 3 }).contains(1, atIndex(O));
* assertThat(new int[] { 1, 2, 3 }).contains(3, atIndex(2));
*
* // assertions will fail
* assertThat(new int[] { 1, 2, 3 }).contains(1, atIndex(1));
* assertThat(new int[] { 1, 2, 3 }).contains(4, atIndex(2));
*
* @param value the value to look for.
* @param index the index where the value should be stored in the actual array.
* @return myself assertion object.
* @throws AssertionError if the actual array is {@code null} or empty.
* @throws NullPointerException if the given {@code Index} is {@code null}.
* @throws IndexOutOfBoundsException if the value of the given {@code Index} is equal to or greater than the size of
* the actual array.
* @throws AssertionError if the actual array does not contain the given value at the given index.
*/
public S contains(int value, Index index) {
arrays.assertContains(info, actual, value, index);
return myself;
}
/**
* Verifies that the actual array does not contain the given values.
*
* Example:
*
// assertion will pass
* assertThat(new int[] { 1, 2, 3 }).doesNotContain(4);
*
* // assertion will fail
* assertThat(new int[] { 1, 2, 3 }).doesNotContain(2);
*
* @param values the given values.
* @return {@code this} assertion object.
* @throws NullPointerException if the given argument is {@code null}.
* @throws IllegalArgumentException if the given argument is an empty array.
* @throws AssertionError if the actual array is {@code null}.
* @throws AssertionError if the actual array contains any of the given values.
*/
public S doesNotContain(int... values) {
arrays.assertDoesNotContain(info, actual, values);
return myself;
}
/**
* Verifies that the actual array does not contain the given value at the given index.
*
* Example:
*
// assertions will pass
* assertThat(new int[] { 1, 2, 3 }).doesNotContain(1, atIndex(1));
* assertThat(new int[] { 1, 2, 3 }).doesNotContain(2, atIndex(0));
*
* // assertions will fail
* assertThat(new int[] { 1, 2, 3 }).doesNotContain(1, atIndex(0));
* assertThat(new int[] { 1, 2, 3 }).doesNotContain(2, atIndex(1));
*
* @param value the value to look for.
* @param index the index where the value should be stored in the actual array.
* @return myself assertion object.
* @throws AssertionError if the actual array is {@code null}.
* @throws NullPointerException if the given {@code Index} is {@code null}.
* @throws AssertionError if the actual array contains the given value at the given index.
*/
public S doesNotContain(int value, Index index) {
arrays.assertDoesNotContain(info, actual, value, index);
return myself;
}
/**
* Verifies that the actual array does not contain duplicates.
*
* Example:
*
// assertion will pass
* assertThat(new int[] { 1, 2, 3 }).doesNotHaveDuplicates();
*
* // assertion will fail
* assertThat(new int[] { 1, 1, 2, 3 }).doesNotHaveDuplicates();
*
* @return {@code this} assertion object.
* @throws AssertionError if the actual array is {@code null}.
* @throws AssertionError if the actual array contains duplicates.
*/
public S doesNotHaveDuplicates() {
arrays.assertDoesNotHaveDuplicates(info, actual);
return myself;
}
/**
* Verifies that the actual array starts with the given sequence of values, without any other values between them.
* Similar to {@link #containsSequence(int...)}
, but it also verifies that the first element in the
* sequence is also first element of the actual array.
*
* Example:
*
// assertion will pass
* assertThat(new int[] { 1, 2, 3 }).startsWith(1, 2);
*
* // assertion will fail
* assertThat(new int[] { 1, 2, 3 }).startsWith(2, 3);
*
* @param sequence the sequence of values to look for.
* @return myself assertion object.
* @throws NullPointerException if the given argument is {@code null}.
* @throws IllegalArgumentException if the given argument is an empty array.
* @throws AssertionError if the actual array is {@code null}.
* @throws AssertionError if the actual array does not start with the given sequence.
*/
public S startsWith(int... sequence) {
arrays.assertStartsWith(info, actual, sequence);
return myself;
}
/**
* Verifies that the actual array ends with the given sequence of values, without any other values between them.
* Similar to {@link #containsSequence(int...)}
, but it also verifies that the last element in the
* sequence is also last element of the actual array.
*
* Example:
*
// assertion will pass
* assertThat(new int[] { 1, 2, 3 }).endsWith(2, 3);
*
* // assertion will fail
* assertThat(new int[] { 1, 2, 3 }).endsWith(3, 4);
*
* @param sequence the sequence of values to look for.
* @return myself assertion object.
* @throws NullPointerException if the given argument is {@code null}.
* @throws IllegalArgumentException if the given argument is an empty array.
* @throws AssertionError if the actual array is {@code null}.
* @throws AssertionError if the actual array does not end with the given sequence.
*/
public S endsWith(int... sequence) {
arrays.assertEndsWith(info, actual, sequence);
return myself;
}
/** {@inheritDoc} */
@Override
public S isSorted() {
arrays.assertIsSorted(info, actual);
return myself;
}
/** {@inheritDoc} */
@Override
public S isSortedAccordingTo(Comparator super Integer> comparator) {
arrays.assertIsSortedAccordingToComparator(info, actual, comparator);
return myself;
}
/** {@inheritDoc} */
@Override
public S usingElementComparator(Comparator super Integer> customComparator) {
this.arrays = new IntArrays(new ComparatorBasedComparisonStrategy(customComparator));
return myself;
}
/** {@inheritDoc} */
@Override
public S usingDefaultElementComparator() {
this.arrays = IntArrays.instance();
return myself;
}
/**
* Verifies that the actual group contains only the given values and nothing else, in order.
*
* Example :
*
int[] ints = { 1, 2, 3 };
*
* // assertion will pass
* assertThat(ints).containsExactly(1, 2, 3);
*
* // assertion will fail as actual and expected order differ
* assertThat(ints).containsExactly(2, 1, 3);
*
* @param values the given values.
* @return {@code this} assertion object.
* @throws NullPointerException if the given argument is {@code null}.
* @throws AssertionError if the actual group is {@code null}.
* @throws AssertionError if the actual group does not contain the given values with same order, i.e. the actual group
* contains some or none of the given values, or the actual group contains more values than the given ones
* or values are the same but the order is not.
*/
public S containsExactly(int... values) {
objects.assertEqual(info, actual, values);
return myself;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy