forked from josecebe/twbs-pagination
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Test 'getPages' and 'equals' methods
- Loading branch information
Eugene Simakin
committed
Jan 6, 2014
1 parent
9efcf2e
commit dcd7c65
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| <!DOCTYPE html> | ||
| <html> | ||
| <head> | ||
| <meta charset="utf-8"> | ||
| <title>Tests</title> | ||
|
|
||
| <link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.13.0.css"> | ||
|
|
||
| <script src="http://code.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script> | ||
| <script src="../jquery.twbsPagination.js" type="text/javascript"></script> | ||
|
|
||
| </head> | ||
| <body> | ||
| <div id="qunit"></div> | ||
| <div id="qunit-fixture"></div> | ||
| <ul id="pagination" style="display: none;"></ul> | ||
|
|
||
| <script src="http://code.jquery.com/qunit/qunit-1.13.0.js"></script> | ||
| <script src="./test.js"></script> | ||
| </body> | ||
| </html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| (function () { | ||
|
|
||
| var pag1 = $('#pagination'); | ||
| pag1.twbsPagination({ | ||
| totalPages: 30, | ||
| startPage: 4, | ||
| visiblePages: 5 | ||
| }); | ||
|
|
||
| test("Test 'equals' method", function () { | ||
| var a1 = [5, 4, 5, 8, 7, 9, 1, 70]; | ||
| var a2 = [5, 4, 5, 8, 7, 9, 1, 70]; | ||
| var b = [1, 4, 8]; | ||
| var real = [1, 4, 8, 9, 0, undefined, 5000]; | ||
| ok(pag1.twbsPagination('equals', a1, a1), "Check the same array"); | ||
| ok(pag1.twbsPagination('equals', a1, a2), "Check separate equals array"); | ||
| ok(!pag1.twbsPagination('equals', a1, b), "Check not equal array"); | ||
| ok(!pag1.twbsPagination('equals', b, real), "Dirty test"); | ||
| }); | ||
|
|
||
| test( "Test 'getPages' method", function() { | ||
| pag1.twbsPagination('init', {totalPages: 50, visiblePages: 10}); | ||
| var expected1 = {currentPage: 1, numeric: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]}; | ||
| deepEqual(pag1.twbsPagination('getPages', 1), expected1); | ||
| var expected2 = {currentPage: 10, numeric: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]}; | ||
| deepEqual(pag1.twbsPagination('getPages', 10), expected2); | ||
| var expected3 = {currentPage: 11, numeric: [11, 12, 13, 14, 15, 16, 17, 18, 19, 20]}; | ||
| deepEqual(pag1.twbsPagination('getPages', 11), expected3); | ||
| var expected4 = {currentPage: 45, numeric: [41, 42, 43, 44, 45, 46, 47, 48, 49, 50]}; | ||
| deepEqual(pag1.twbsPagination('getPages', 45), expected4); | ||
| }); | ||
|
|
||
| })(); |