Test.ArrayAssert Class
yui3/src/test/js/ArrayAssert.js:2
The ArrayAssert object provides functions to test JavaScript array objects for a variety of cases.
Index
Methods
- _indexOf
- _some
- contains static
- containsItems static
- containsMatch static
- doesNotContain static
- doesNotContainItems static
- doesNotContainMatch static
- indexOf static
- isEmpty static
- isNotEmpty static
- isUnique static
- itemsAreEqual static
- itemsAreEquivalent static
- itemsAreSame static
- lastIndexOf static
Methods
_indexOf
-
haystack -
needle
Simple indexOf() implementation for an array. Defers to native if available.
Parameters:
-
haystackArrayThe array to search.
-
needleAnyThe value to locate.
Returns:
The index of the needle if found or -1 if not.
_some
-
haystack -
matcher
Simple some() implementation for an array. Defers to native if available.
Parameters:
-
haystackArrayThe array to search.
-
matcherFunctionThe function to run on each value.
Returns:
True if any value, when run through the matcher, returns true.
contains
-
needle -
haystack -
message
Asserts that a value is present in an array. This uses the triple equals sign so no type coercion may occur.
Parameters:
-
needleObjectThe value that is expected in the array.
-
haystackArrayAn array of values.
-
messageString(Optional) The message to display if the assertion fails.
containsItems
-
needles -
haystack -
message
Asserts that a set of values are present in an array. This uses the triple equals sign so no type coercion may occur. For this assertion to pass, all values must be found.
Parameters:
-
needlesObjectAn array of values that are expected in the array.
-
haystackArrayAn array of values to check.
-
messageString(Optional) The message to display if the assertion fails.
containsMatch
-
matcher -
haystack -
message
Asserts that a value matching some condition is present in an array. This uses a function to determine a match.
Parameters:
-
matcherFunctionA function that returns true if the items matches or false if not.
-
haystackArrayAn array of values.
-
messageString(Optional) The message to display if the assertion fails.
doesNotContain
-
needle -
haystack -
message
Asserts that a value is not present in an array. This uses the triple equals Asserts that a value is not present in an array. This uses the triple equals sign so no type coercion may occur.
Parameters:
-
needleObjectThe value that is expected in the array.
-
haystackArrayAn array of values.
-
messageString(Optional) The message to display if the assertion fails.
doesNotContainItems
-
needles -
haystack -
message
Asserts that a set of values are not present in an array. This uses the triple equals sign so no type coercion may occur. For this assertion to pass, all values must not be found.
Parameters:
-
needlesObjectAn array of values that are not expected in the array.
-
haystackArrayAn array of values to check.
-
messageString(Optional) The message to display if the assertion fails.
doesNotContainMatch
-
matcher -
haystack -
message
Asserts that no values matching a condition are present in an array. This uses a function to determine a match.
Parameters:
-
matcherFunctionA function that returns true if the item matches or false if not.
-
haystackArrayAn array of values.
-
messageString(Optional) The message to display if the assertion fails.
indexOf
-
needle -
haystack -
index -
message
Asserts that the given value is contained in an array at the specified index. This uses the triple equals sign so no type coercion will occur.
Parameters:
-
needleObjectThe value to look for.
-
haystackArrayThe array to search in.
-
indexNumberThe index at which the value should exist.
-
messageString(Optional) The message to display if the assertion fails.
isEmpty
-
actual -
message
Asserts that an array is empty.
Parameters:
-
actualArrayThe array to test.
-
messageString(Optional) The message to display if the assertion fails.
isNotEmpty
-
actual -
message
Asserts that an array is not empty.
Parameters:
-
actualArrayThe array to test.
-
messageString(Optional) The message to display if the assertion fails.
isUnique
-
array -
[comparator=null] -
[message]
Asserts that given array doesn't contain duplicate items.
Parameters:
-
arrayArrayThe array to check.
-
[comparator=null]Function optionalA custom function to use to test the equality of two values. This function is similar to the one given to Y.Array.unique.
-
[message]String optionalThe message to display if the assertion fails.
itemsAreEqual
-
expected -
actual -
message
Asserts that the values in an array are equal, and in the same position, as values in another array. This uses the double equals sign so type coercion may occur. Note that the array objects themselves need not be the same for this test to pass.
Parameters:
-
expectedArrayAn array of the expected values.
-
actualArrayAny array of the actual values.
-
messageString(Optional) The message to display if the assertion fails.
itemsAreEquivalent
-
expected -
actual -
comparator -
message
Asserts that the values in an array are equivalent, and in the same position, as values in another array. This uses a function to determine if the values are equivalent. Note that the array objects themselves need not be the same for this test to pass.
Parameters:
-
expectedArrayAn array of the expected values.
-
actualArrayAny array of the actual values.
-
comparatorFunctionA function that returns true if the values are equivalent or false if not.
-
messageString(Optional) The message to display if the assertion fails.
itemsAreSame
-
expected -
actual -
message
Asserts that the values in an array are the same, and in the same position, as values in another array. This uses the triple equals sign so no type coercion will occur. Note that the array objects themselves need not be the same for this test to pass.
Parameters:
-
expectedArrayAn array of the expected values.
-
actualArrayAny array of the actual values.
-
messageString(Optional) The message to display if the assertion fails.
lastIndexOf
-
needle -
haystack -
index -
message
Asserts that the given value is contained in an array at the specified index, starting from the back of the array. This uses the triple equals sign so no type coercion will occur.
Parameters:
-
needleObjectThe value to look for.
-
haystackArrayThe array to search in.
-
indexNumberThe index at which the value should exist.
-
messageString(Optional) The message to display if the assertion fails.