-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinsertion-sort-spec.js
37 lines (29 loc) · 1.3 KB
/
insertion-sort-spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
var expect = require("chai").expect;
var jssort = require("../src/jssort");
describe("Insertion Sort", function() {
describe("Sort Ascendingly", function() {
it("should sort ascedingly when no compare function is provided", function() {
var a = [3, 4, 5, 1, 2, 4, 6, 8, 9, 3, 4, 67, 34, 53, 44, 2];
jssort.insertionSort(a);
for(var i = 1; i < a.length; ++i){
expect(a[i-1]).not.to.above(a[i]);
}
});
it("should sort ascedingly using the provided comparer", function() {
var a = [[3, 2.3], [4, 3.1], [5, 1.1], [1, 4.2], [2, 4.2], [4, 5.3], [6, 7.4], [8, 5.1], [9, 1.9], [3, 1.2], [4, 3.4], [67, 6.7], [34, 3], [53, 5], [44, 4.2], [2, 0]];
jssort.insertionSort(a, undefined, undefined, function(a1, a2){
return a1[1] - a2[1];
});
for(var i = 1; i < a.length; ++i){
expect(a[i-1][1]).not.to.above(a[i][1]);
}
});
it("should sort ascedingly partially from index 3 to index 10 when no compare function is provided", function() {
var a = [3, 4, 5, 1, 2, 4, 6, 8, 9, 3, 4, 67, 34, 53, 44, 2];
jssort.insertionSort(a, 3, 10);
for(var i = 4; i <= 10; ++i){
expect(a[i-1]).not.to.above(a[i]);
}
});
});
});