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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
import unittest
from yaml import safe_load
from core.entry_filter import filter_entry
test_config = '''
{
"test_style_block": {
"agents": {
"test": {
"title": "🌐AI 翻译",
"style_block": true,
"allow_list": ,
"deny_list":
}
}
},
"test_allow_list": {
"agents": {
"test": {
"title": "🌐AI 翻译",
"style_block": false,
"allow_list": [
"https://9to5mac.com/",
"https://home.kpmg/*"
],
"deny_list":
}
}
},
"test_deny_list": {
"agents": {
"test": {
"title": "🌐AI 翻译",
"style_block": false,
"allow_list": ,
"deny_list": [
"https://9to5mac.com/",
"https://home.kpmg/cn/zh/home/insights.html"
]
}
}
},
"test_None": {
"agents": {
"test": {
"title": "🌐AI 翻译",
"style_block": false,
"allow_list": ,
"deny_list":
}
}
}
}
'''
test_entries = '''
{
"test_style_block":
{
"entry":
{
"content": '<pre',
"feed":
{
"site_url": "https://weibo.com/1906286443/OAih1wghK",
},
},
"result": False,
},
"test_allow_list":
{
"entry":
{
"content": '123',
"feed":
{
"site_url": "https://home.kpmg/cn/zh/home/insights.html",
},
},
"result": True,
},
"test_deny_list":
{
"entry":
{
"content": '123',
"feed":
{
"site_url": "https://weibo.com/1906286443/OAih1wghK",
},
},
"result": True,
},
"test_None":
{
"entry":
{
"content": '123',
"feed":
{
"site_url": "https://weibo.com/1906286443/OAih1wghK",
},
},
"result": True,
},
}
'''
configs = safe_load(test_config)
entries = safe_load(test_entries)
class MyTestCase(unittest.TestCase):
def test_entry_filter(self):
i = 0
for agent in configs.items():
entry = entries[list(configs.keys())[i]]
result = filter_entry(configs['test_style_block'], agent, entry['entry'])
self.assertEqual(result, entry['result'])
i += 1
if __name__ == '__main__':
unittest.main()
|