-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
78 lines (55 loc) · 1.25 KB
/
test.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import test from 'ava';
var Dwindle = require('./dwindle');
let crap;
test('Constructor param object', t => {
crap = {x: "whatever"};
try {
let d = new Dwindle(crap);
t.fail();
} catch (e) {
t.pass(); // Generated an exception, well done!
}
});
test('Constructor param bad array', t => {
crap = [0,1,2,3,4];
try {
let d = new Dwindle(crap);
t.fail();
} catch (e) {
t.pass();
}
});
test('Constructor param bad inner array', t => {
crap = [[0,1,3]];
try {
let d = new Dwindle(crap);
t.fail();
} catch (e) {
t.pass();
}
});
test('Constructor param bad array values', t => {
crap = [['a', 'b'],[null, undefined]];
try {
let d = new Dwindle(crap);
t.fail();
} catch (e) {
t.pass();
}
});
test('Target point reduction', t => {
// Take four points
let square = [[0,0], [100, 0], [100,100], [0, 100]];
let d = new Dwindle(square);
// Try reducing them to 3
let res = d.simplify({target: 3});
t.is(res.length, 3);
});
test('Percentage reduction', t => {
// Take four points
let square = [[0,0], [100, 0], [100,100], [0, 100]];
let d = new Dwindle(square);
// Try reducing them to 50% (2 points)
let res = d.simplify({percent: 50});
t.is(res.length, 2);
});