-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.js
More file actions
81 lines (63 loc) · 2.33 KB
/
test.js
File metadata and controls
81 lines (63 loc) · 2.33 KB
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
79
80
81
Tinytest.add('reactive-path - basic', function (test) {
test.equal(Path.get(), '/');
test.equal(Path.get(true), '/');
var path = '/test/';
Path.set(path);
test.equal(Path.get(), path);
test.notEqual(Path.get(), '/test');
test.equal(Path.get(true), '/test');
path = '/test/test2/';
Path.set(path);
test.equal(Path.get(), path);
test.notEqual(Path.get(), '/test/test2');
test.equal(Path.get(true), '/test/test2');
});
Tinytest.add('reactive-path - invalid input', function (test) {
var invalidInputs = [{}, [], null, undefined, '/test?a=1?b=2', '/test#something#something'];
for (var i = 0; i < invalidInputs.length; i++) {
test.throws(function () {
Path.set(invalidInputs[i]);
});
}
});
Tinytest.add('reactive-path - with params', function (test) {
Path.set('/test?a=1');
test.equal(Path.get(), '/test');
test.notEqual(Path.get(), '/test?a=1');
test.notEqual(Path.get(), '/test/');
test.equal(Path.get(true), '/test');
test.notEqual(Path.get(true), '/test?a=1');
Path.set('/test/?a=1');
test.equal(Path.get(), '/test/');
test.notEqual(Path.get(), '/test/?a=1');
test.notEqual(Path.get(), '/test');
test.equal(Path.get(true), '/test');
test.notEqual(Path.get(true), '/test/?a=1');
test.notEqual(Path.get(true), '/test?a=1');
});
Tinytest.add('reactive-path - with hash', function (test) {
Path.set('/test#something');
test.equal(Path.get(), '/test');
test.notEqual(Path.get(), '/test#something');
test.equal(Path.get(true), '/test');
test.notEqual(Path.get(true), '/test#something');
Path.set('/test/#something');
test.equal(Path.get(), '/test/');
test.notEqual(Path.get(), '/test/#something');
test.notEqual(Path.get(), '/test');
test.equal(Path.get(true), '/test');
test.notEqual(Path.get(true), '/test#something');
});
Tinytest.add('reactive-path - with params and with hash', function (test) {
Path.set('/test?a=1#something');
test.equal(Path.get(), '/test');
test.notEqual(Path.get(), '/test?a=1#something');
test.equal(Path.get(true), '/test');
test.notEqual(Path.get(true), '/test?a=1#something');
Path.set('/test/?a=1#something');
test.equal(Path.get(), '/test/');
test.notEqual(Path.get(), '/test/?a=1#something');
test.notEqual(Path.get(), '/test');
test.equal(Path.get(true), '/test');
test.notEqual(Path.get(true), '/test?a=1#something');
});