This example shows how to use the ArrayAssert
object, which contains assertions designed to be used specifically with JavaScript Arrays and array-like objects.
This example uses the YUITest.ArrayAssert
object to test methods on JavaScript's
built-in Array
object. The intent of this example is to introduce YUITest.ArrayAssert
and its methods
as an alternative to the generic methods available on YUITest.Assert
.
The example begins by creating an example namespace and Y.Test.Case
:
var arrayTestCase = new YUITest.TestCase({
name: "Array Tests",
//-------------------------------------------------------------------------
// Setup and teardown
//-------------------------------------------------------------------------
/*
* The setUp() method is used to setup data that necessary for a test to
* run. This method is called immediately before each test method is run,
* so it is run as many times as there are test methods.
*/
setUp : function () {
this.data = new Array (0,1,2,3,4,5);
},
/*
* The tearDown() method is used to clean up the initialization that was done
* in the setUp() method. Ideally, it should free up all memory allocated in
* setUp(), anticipating any possible changes to the data. This method is called
* immediately after each test method is run.
*/
tearDown : function () {
delete this.data;
},
...
});
This TestCase
has a setUp()
method that creates an array for all the tests to use, as well as
a tearDown()
method that deletes the array after each test has been executed. This array is used throughout
the tests as a base for array manipulations.
push()
The first test is testPush()
, which tests the functionality of the Array
object's push()
method
(other methods hidden for simpicity):
var arrayTestCase = new YUITest.TestCase({
...
testPush : function() {
//shortcut variables
var ArrayAssert = YUITest.ArrayAssert;
//do whatever data manipulation is necessary
this.data.push(6);
//array-specific assertions
ArrayAssert.isNotEmpty(this.data, "Array should not be empty.");
ArrayAssert.contains(6, this.data, "Array should contain 6.");
ArrayAssert.indexOf(6, this.data, 6, "The value in position 6 should be 6.");
//check that all the values are there
ArrayAssert.itemsAreEqual([0,1,2,3,4,5,6], this.data, "Arrays should be equal.");
},
...
});
The test begins by setting up a shortcut variables for YUITest.ArrayAssert
, then pushes the value 6 onto
the data
array (which was created by setUp()
). Next, YUITest.ArrayAssert.isNotEmpty()
determines if the
array has at least one item; this should definitely pass because the push()
operation only adds values to the array. To determine
that the new value, 6, is in the array, YUITest.ArrayAssert.contains()
is used. The first argument is the value to look for and the second
is the array to look in. To find out if the new value ended up where it should have (the last position, index 6), YUITest.ArrayAssert.indexOf()
is used, passing in the value to search for as the first argument, the array to search in as the second, and the index at which the value should
occur as the final argument. Since 6 was pushed onto the end of an array that already had 6 items, it should end up at index 6 (the length of the
array minus one). As a final test, YUITest.ArrayAssert.itemsAreEqual()
is used to determine that all of the items in the array are in the
correct place. The first argument of this method is an array that has all of the values that should be in the array you're testing. This assertion
passes only when the values in both arrays match up (the values are equal and the positions are the same).
pop()
The next test is testPop()
, which tests the functionality of the Array
object's pop()
method:
var arrayTestCase = new YUITest.TestCase({
...
testPop : function() {
//shortcut variables
var Assert = YUITest.Assert;
var ArrayAssert = YUITest.ArrayAssert;
//do whatever data manipulation is necessary
var value = this.data.pop();
//array shouldn't be empty
ArrayAssert.isNotEmpty(this.data, "Array should not be empty.");
//basic equality assertion - expected value, actual value, optional error message
Assert.areEqual(5, this.data.length, "Array should have 5 items.");
Assert.areEqual(5, value, "Value should be 5.");
ArrayAssert.itemsAreSame([0,1,2,3,4], this.data, "Arrays should be equal.");
},
...
});
This test also starts out by creating some shortcut variables, for YUITest.Assert
and YUITest.ArrayAssert
. Next, the pop()
method is called, storing the returned item in value
. Since pop()
should only remove a single item, YUITest.ArrayAssert.isNotEmpty()
is called to ensure that only one item has been removed. After that, YUITest.Assert.areEqual()
is called twice: once to check the
length of the array and once to confirm the value of the item that was removed from the array (which should be 5). The last assertion uses
YUITest.ArrayAssert.itemsAreSame()
, which is similar to YUITest.ArrayAssert.itemsAreEqual()
in that it compares values between two
arrays. The difference is that YUITest.ArrayAssert.itemsAreSame()
uses strict equality (===
) to compare values, ensuring that
no behind-the-scenes type conversions will occur (this makes YUITest.ArrayAssert.itemsAreSame()
more useful for working with arrays of
objects).
reverse()
The next test is testReverse()
, which tests the functionality of the Array
object's reverse()
method:
var arrayTestCase = new YUITest.TestCase({
...
testReverse : function() {
//shortcut variables
var ArrayAssert = YUITest.ArrayAssert;
//do whatever data manipulation is necessary
this.data = this.data.reverse();
ArrayAssert.itemsAreEqual([5,4,3,2,1,0], this.data, "Arrays should be equal.");
},
...
});
The testRemove()
method is very simple, calling reverse()
on the array and then testing the result. Since
every item in the array has changed, the changes can be tested by calling YUITest.ArrayAssert.itemsAreEqual()
once (instead of
calling YUITest.ArrayAssert.indexOf()
multiple times). The first argument is an array with all the values in the reverse order
of the array that was created in setUp()
. When compared with the second argument, the newly reversed array, the values in
each position should be equal.
shift()
The next test is testShift()
, which tests the functionality of the Array
object's shift()
method:
var arrayTestCase = new YUITest.TestCase({
...
testShift : function() {
//shortcut variables
var Assert = YUITest.Assert;
var ArrayAssert = YUITest.ArrayAssert;
//do whatever data manipulation is necessary
var value = this.data.shift();
//array shouldn't be empty
ArrayAssert.isNotEmpty(this.data, "Array should not be empty.");
//basic equality assertion - expected value, actual value, optional error message
Assert.areEqual(5, this.data.length, "Array should have 6 items.");
Assert.areEqual(0, value, "Value should be 0.");
ArrayAssert.itemsAreEqual([1,2,3,4,5], this.data, "Arrays should be equal.");
},
...
});
The shift()
method removes the first item in the array and returns it (similar to pop()
, which removes the item
from the end). In the testShift()
method, shift()
is called and the item is stored in value
. To ensure
that the rest of the array is still there, YUITest.ArrayAssert.isNotEmpty()
is called. After that, Array.areEqual()
is
called twice, once to test the length of the array and once to test the value that was returned from shift()
(which should be
0). As a last test, the entire array is tested using YUITest.ArrayAssert.itemsAreEqual()
to ensure that all of the items have shifted
into the appropriate positions in the array.
splice()
The next test is testSplice()
, which tests the functionality of the Array
object's splice()
method:
var arrayTestCase = new YUITest.TestCase({
...
testSplice : function() {
//shortcut variables
var Assert = YUITest.Assert;
var ArrayAssert = YUITest.ArrayAssert;
//do whatever data manipulation is necessary
var removed = this.data.splice(1, 2, 99, 100);
//basic equality assertion - expected value, actual value, optional error message
Assert.areEqual(6, this.data.length, "Array should have 6 items.");
//the new items should be there
ArrayAssert.indexOf(99, this.data, 1, "Value at index 1 should be 99.");
ArrayAssert.indexOf(100, this.data, 2, "Value at index 2 should be 100.");
ArrayAssert.itemsAreEqual([0,99,100,3,4,5], this.data, "Arrays should be equal.");
ArrayAssert.itemsAreEqual([1,2], removed, "Removed values should be an array containing 1 and 2.");
},
...
});
The splice()
method is one of the most powerful Array
manipulations. It can both remove and add any number of items
from an array at the same time. This test begins by splicing some values into the array. When calling splice()
, the first argument
is 1, indicating that values should be inserted at index 1 of the array; the second argument is 2, indicating that two values should be
removed from the array (the value in index 1 and the value in index 2); the third and fourth arguments are values that should be inserted
into the array at the position given by the first argument. Essentially, values 1 and 2 should end up being replaced by values 99 and 100 in
the array.
The first test is to determine that the length of the array is still 6 (since the previous step removed two items and then inserted two, the
length should still be 6). After that, YUITest.ArrayAssert.indexOf()
is called to determine that the values of 99 and 100 are in positions
1 and 2, respectively. To ensure the integrity of the entire array, YUITest.ArrayAssert.itemsAreEqual()
is called on the array, comparing
it to an array with the same values. The very last step is to test the value returned from splice()
, which is an array containing
the removed values, 1 and 2. YUITest.ArrayAssert.itemsAreEqual()
is appropriate for this task as well.
unshift()
The next test is testUnshift()
, which tests the functionality of the Array
object's unshift()
method:
var arrayTestCase = new YUITest.TestCase({
...
testUnshift : function() {
//shortcut variables
var Assert = YUITest.Assert;
var ArrayAssert = YUITest.ArrayAssert;
//do whatever data manipulation is necessary
this.data.unshift(-1);
//basic equality assertion - expected value, actual value, optional error message
Assert.areEqual(7, this.data.length, "Array should have 7 items.");
//the new item should be there
ArrayAssert.indexOf(-1, this.data, 0, "First item should be -1.");
ArrayAssert.itemsAreEqual([-1,0,1,2,3,4,5], this.data, "Arrays should be equal.");
},
...
});
Working similar to push()
, unshift()
adds a value to the array, but the item is added to the front (index 0) instead of
the back. This test begins by adding the value -1 to the array. The first assertion determines if the length of the array has been incremented
to 7 to account for the new value. After that, YUITest.ArrayAssert.indexOf()
is used to determine if the value has been placed in the
correct location. The final assertions tests that the entire array is expected by using YUITest.ArrayAssert.itemsAreEqual()
.
Since the standalone YUI Test library isn't a graphical library, you'll need to use something to visualize the results. This example uses a YUI 3 Console
object. To output the appropriate information into the console, a function is created to handle TestRunner
events:
//function to handle events generated by the testrunner
var TestRunner = YUITest.TestRunner;
function logEvent(event){
//data variables
var message = "",
messageType = "";
switch(event.type){
case TestRunner.BEGIN_EVENT:
message = "Testing began at " + (new Date()).toString() + ".";
messageType = "info";
break;
case TestRunner.COMPLETE_EVENT:
message = Y.substitute("Testing completed at " +
(new Date()).toString() + ".\n" +
"Passed:{passed} Failed:{failed} " +
"Total:{total} ({ignored} ignored)",
event.results);
messageType = "info";
break;
case TestRunner.TEST_FAIL_EVENT:
message = event.testName + ": failed.\n" + event.error.getMessage();
messageType = "fail";
break;
case TestRunner.TEST_IGNORE_EVENT:
message = event.testName + ": ignored.";
messageType = "ignore";
break;
case TestRunner.TEST_PASS_EVENT:
message = event.testName + ": passed.";
messageType = "pass";
break;
case TestRunner.TEST_SUITE_BEGIN_EVENT:
message = "Test suite \"" + event.testSuite.name + "\" started.";
messageType = "info";
break;
case TestRunner.TEST_SUITE_COMPLETE_EVENT:
message = Y.substitute("Test suite \"" +
event.testSuite.name + "\" completed" + ".\n" +
"Passed:{passed} Failed:{failed} " +
"Total:{total} ({ignored} ignored)",
event.results);
messageType = "info";
break;
case TestRunner.TEST_CASE_BEGIN_EVENT:
message = "Test case \"" + event.testCase.name + "\" started.";
messageType = "info";
break;
case TestRunner.TEST_CASE_COMPLETE_EVENT:
message = Y.substitute("Test case \"" +
event.testCase.name + "\" completed.\n" +
"Passed:{passed} Failed:{failed} " +
"Total:{total} ({ignored} ignored)",
event.results);
messageType = "info";
break;
default:
message = "Unexpected event " + event.type;
message = "info";
}
//only log if required
Y.log(message, messageType, "TestRunner");
}
//listen for events to publish to the logger
TestRunner.attach(TestRunner.BEGIN_EVENT, logEvent);
TestRunner.attach(TestRunner.COMPLETE_EVENT, logEvent);
TestRunner.attach(TestRunner.TEST_CASE_BEGIN_EVENT, logEvent);
TestRunner.attach(TestRunner.TEST_CASE_COMPLETE_EVENT, logEvent);
TestRunner.attach(TestRunner.TEST_SUITE_BEGIN_EVENT, logEvent);
TestRunner.attach(TestRunner.TEST_SUITE_COMPLETE_EVENT, logEvent);
TestRunner.attach(TestRunner.TEST_PASS_EVENT, logEvent);
TestRunner.attach(TestRunner.TEST_FAIL_EVENT, logEvent);
TestRunner.attach(TestRunner.TEST_IGNORE_EVENT, logEvent);
The logEvent()
function is used to handle all events. Based on the event, the message and the message type are determined and then a message is logged. This event handler is assigned to the TestRunner
events by using the attach()
method.
With all of the tests defined, the last step is to run them. This initialization is assigned to take place when all of the YUI components have been loaded:
//create the console
var r = new Y.Console({
verbose : true,
newestOnTop : false
});
r.render('#testLogger');
TestRunner.add(arrayTestCase);
//run the tests
TestRunner.run();
Before running the tests, it's necessary to create a Y.Console
object to display the results (otherwise the tests would run
but you wouldn't see the results). After that, the YUITest.TestRunner
is loaded with the YUITest.TestSuite
object by calling
add()
(any number of YUITest.TestCase
and YUITest.TestSuite
objects can be added to a YUITest.TestRunner
,
this example only adds one for simplicity). The very last step is to call run()
, which begins executing the tests in its
queue and displays the results in the Y.Console
.