-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfilter-by-rules_test.ts
More file actions
84 lines (77 loc) · 2.06 KB
/
filter-by-rules_test.ts
File metadata and controls
84 lines (77 loc) · 2.06 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
82
83
84
import filterByRules from "./filter-by-rules.ts";
import TwitterItem from "./adapters/twitter.ts";
import RedditItem from "./adapters/reddit.ts";
import { readJSONFile } from "./util.ts";
import { assertEquals } from "./deps.ts";
import reddit from "./adapters/reddit.ts";
Deno.test("filterByRules #1", async (t) => {
const tweetItem = await readJSONFile(
"example/raw/bloomberg-tweet.json",
);
const redditItem = await readJSONFile(
"example/current/1-raw/2022/08/22/en_reddit_test.json",
);
const quoraTweetItem = await readJSONFile(
"example/raw/quora-tweet.json",
);
await t.step("not filter #1", () => {
const items = filterByRules([new TwitterItem(tweetItem)], [
{
type: "greaterEqual",
key: "getWeightedScore",
value: "36",
},
]);
assertEquals(items.length, 1);
});
await t.step("filtered #2", () => {
const items = filterByRules([new TwitterItem(tweetItem)], [
{
type: "greaterEqual",
key: "getWeightedScore",
value: "358",
},
]);
assertEquals(items.length, 0);
});
await t.step("filtered #3", () => {
const items = filterByRules([new RedditItem(redditItem)], [
{
type: "greaterEqual",
key: "getWeightedScore",
value: "59",
},
]);
assertEquals(items.length, 0);
});
await t.step("filtered #4", () => {
const items = filterByRules([new RedditItem(redditItem)], [
{
type: "greaterEqual",
key: "getWeightedScore",
value: "53",
},
]);
assertEquals(items.length, 1);
});
await t.step("filtered #5", () => {
const items = filterByRules([new TwitterItem(quoraTweetItem)], [
{
type: "include",
key: "getFallbackTitle",
value: "?",
},
]);
assertEquals(items.length, 1);
});
await t.step("filtered #6", () => {
const items = filterByRules([new RedditItem(redditItem)], [
{
type: "notInclude",
key: "getTags",
value: "stocks",
},
]);
assertEquals(items.length, 0);
});
});