forked from oakserver/oak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util_test.ts
90 lines (80 loc) · 1.64 KB
/
util_test.ts
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
82
83
84
85
86
87
88
89
90
// Copyright 2018-2023 the oak authors. All rights reserved. MIT license.
import { errors } from "./deps.ts";
import { assert, assertEquals, assertThrows } from "./test_deps.ts";
import { decodeComponent, getRandomFilename, resolvePath } from "./util.ts";
const { test } = Deno;
test({
name: "decodeComponent",
fn() {
// with decodeURIComponent, this would throw:
assertEquals(decodeComponent("%"), "%");
},
});
test({
name: "resolvePath",
fn() {
assertEquals(
resolvePath("./foo/bar").replace(/\\/g, "/"),
`foo/bar`,
);
},
});
test({
name: "resolvePath outside of root",
fn() {
assertThrows(() => {
resolvePath("../foo/bar");
}, errors.Forbidden);
},
});
test({
name: "resolvePath outside of root devious",
fn() {
assertThrows(() => {
resolvePath("foo/../../bar");
}, errors.Forbidden);
},
});
test({
name: "resolvePath absolute",
fn() {
assertThrows(
() => {
resolvePath("/dev/null");
},
errors.BadRequest,
"Malicious Path",
);
},
});
test({
name: "resolvePath contains null",
fn() {
assertThrows(
() => {
resolvePath("./foo/bar\0baz");
},
errors.BadRequest,
"Malicious Path",
);
},
});
test({
name: "resolvePath from root",
fn() {
assert(
resolvePath("/public", "./foo/bar").replace(/\\/g, "/").endsWith(
"/public/foo/bar",
),
);
},
});
test({
name: "getRandomFilename()",
async fn() {
const actual = await getRandomFilename("foo", "bar");
assert(actual.startsWith("foo"));
assert(actual.endsWith(".bar"));
assert(actual.length > 7);
},
});