-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.test.js
88 lines (78 loc) · 2.85 KB
/
index.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
79
80
81
82
83
84
85
86
87
88
import {lookup, batch} from "./index.js";
test("query spamhaus negative with timeout", async () => {
expect(await lookup("127.0.0.1", "zen.spamhaus.org", {timeout: 5000})).toEqual(false);
});
test("query spamhaus positive with timeout", async () => {
expect(await lookup("127.0.0.2", "zen.spamhaus.org", {timeout: 5000})).toEqual(true);
});
test("query spamhaus positive with timeout and TXT", async () => {
expect(await lookup("127.0.0.2", "zen.spamhaus.org", {timeout: 5000, includeTxt: true})).toMatchInlineSnapshot(`
{
"listed": true,
"txt": [
[
"Listed by SBL, see https://check.spamhaus.org/sbl/query/SBL2",
],
[
"Listed by PBL, see https://check.spamhaus.org/query/ip/127.0.0.2",
],
[
"Listed by XBL, see https://check.spamhaus.org/query/ip/127.0.0.2",
],
],
}
`);
});
test("query ipv6 positive", async () => {
expect(await lookup("::1", "v6.fullbogons.cymru.com")).toEqual(true);
});
test("query ipv6 negative", async () => {
expect(await lookup("2002:db8::", "v6.fullbogons.cymru.com")).toEqual(false);
});
test("server/port option", async () => {
expect(await lookup("127.0.0.1", "zen.spamhaus.org", {
timeout: 5000,
servers: ["8.8.8.8"],
port: 53
})).toEqual(false);
});
test("batch spamhaus negative", async () => {
const result = await batch(["127.0.0.1"], "zen.spamhaus.org");
expect(result[0].address).toEqual("127.0.0.1");
expect(result[0].blacklist).toEqual("zen.spamhaus.org");
expect(result[0].listed).toEqual(false);
});
test("batch spamhaus positive", async () => {
const result = await batch(["127.0.0.2"], "zen.spamhaus.org");
expect(result[0].address).toEqual("127.0.0.2");
expect(result[0].blacklist).toEqual("zen.spamhaus.org");
expect(result[0].listed).toEqual(true);
});
test("batch spamhaus positive with txt", async () => {
const result = await batch(["127.0.0.2"], "zen.spamhaus.org", {includeTxt: true});
expect(result[0].address).toEqual("127.0.0.2");
expect(result[0].blacklist).toEqual("zen.spamhaus.org");
expect(result[0].listed).toEqual(true);
expect(result[0].txt).toMatchInlineSnapshot(`
[
[
"Listed by SBL, see https://check.spamhaus.org/sbl/query/SBL2",
],
[
"Listed by PBL, see https://check.spamhaus.org/query/ip/127.0.0.2",
],
[
"Listed by XBL, see https://check.spamhaus.org/query/ip/127.0.0.2",
],
]
`);
});
test("batch multiple", async () => {
const result = await batch(["127.0.0.1", "127.0.0.2"], ["zen.spamhaus.org"]);
expect(result[0].address).toEqual("127.0.0.1");
expect(result[0].blacklist).toEqual("zen.spamhaus.org");
expect(result[0].listed).toEqual(false);
expect(result[1].address).toEqual("127.0.0.2");
expect(result[1].blacklist).toEqual("zen.spamhaus.org");
expect(result[1].listed).toEqual(true);
});