-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathtest_zannotate.py
More file actions
227 lines (208 loc) · 6.23 KB
/
test_zannotate.py
File metadata and controls
227 lines (208 loc) · 6.23 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
# test_zannotate.py
import json
import subprocess
import textwrap
def test_rdns():
tests = [
("normal input", "1.1.1.1\n8.8.8.8\n"),
("missing trailing new-line", "1.1.1.1\n8.8.8.8"),
]
for test in tests:
output = run(test[1], "--rdns")
assert output == unordered(
[
{"ip": "1.1.1.1", "rdns": {"domain_names": ["one.one.one.one"]}},
{"ip": "8.8.8.8", "rdns": {"domain_names": ["dns.google"]}},
]
)
def test_rdns_csv_stdin():
# Test string input in csv format, will need to extract the ip column
input_str = textwrap.dedent("""\
name,ip,date
cloudflare,1.1.1.1,04-04-26
google,8.8.8.8,04-04-26
""")
print(input_str)
output = run(
input_str, "--rdns", "--input-file-type", "csv", "--input-ip-field", "ip"
)
assert output == unordered(
[
{
"ip": "1.1.1.1",
"name": "cloudflare",
"date": "04-04-26",
"zannotate": {"rdns": {"domain_names": ["one.one.one.one"]}},
},
{
"ip": "8.8.8.8",
"name": "google",
"date": "04-04-26",
"zannotate": {"rdns": {"domain_names": ["dns.google"]}},
},
]
)
def test_rdns_csv_stdin_non_standard_key_name():
# Test string input in csv format, will need to extract the ip column
input_str = textwrap.dedent("""\
name,date,ip_address
cloudflare,04-04-26,1.1.1.1
google,04-04-26,8.8.8.8
""")
output = run(
input_str,
"--rdns",
"--input-file-type",
"csv",
"--input-ip-field",
"ip_address",
)
assert output == unordered(
[
{
"ip_address": "1.1.1.1",
"name": "cloudflare",
"date": "04-04-26",
"zannotate": {"rdns": {"domain_names": ["one.one.one.one"]}},
},
{
"ip_address": "8.8.8.8",
"name": "google",
"date": "04-04-26",
"zannotate": {"rdns": {"domain_names": ["dns.google"]}},
},
]
)
def test_rdns_csv_stdin_non_standard_output_key():
input_str = textwrap.dedent("""\
name,date,ip
cloudflare,04-04-26,1.1.1.1
google,04-04-26,8.8.8.8
""")
output = run(
input_str,
"--rdns",
"--input-file-type",
"csv",
"--output-annotation-field",
"z_annotate_output",
)
assert output == unordered(
[
{
"ip": "1.1.1.1",
"name": "cloudflare",
"date": "04-04-26",
"z_annotate_output": {"rdns": {"domain_names": ["one.one.one.one"]}},
},
{
"ip": "8.8.8.8",
"name": "google",
"date": "04-04-26",
"z_annotate_output": {"rdns": {"domain_names": ["dns.google"]}},
},
]
)
def test_rdns_csv_file(tmp_path):
# Test string input in csv format, will need to extract the ip column
input_str = textwrap.dedent("""\
name,ip,date
cloudflare,1.1.1.1,04-04-26
google,8.8.8.8,04-04-26
""")
input_file = tmp_path / "input.csv"
input_file.write_text(textwrap.dedent("""\
name,ip,date
cloudflare,1.1.1.1,04-04-26
google,8.8.8.8,04-04-26
"""))
output = run(
input_str,
"--rdns",
"--input-file-type",
"csv",
"--input-file",
str(input_file),
)
assert output == unordered(
[
{
"ip": "1.1.1.1",
"name": "cloudflare",
"date": "04-04-26",
"zannotate": {"rdns": {"domain_names": ["one.one.one.one"]}},
},
{
"ip": "8.8.8.8",
"name": "google",
"date": "04-04-26",
"zannotate": {"rdns": {"domain_names": ["dns.google"]}},
},
]
)
def test_rdns_json_stdin():
# Test string input in csv format, will need to extract the ip column
input_str = textwrap.dedent("""\
{"name": "cloudflare","ip": "1.1.1.1", "date": "04-04-26"}
{"name": "google","ip": "8.8.8.8", "date": "04-04-26"}
""")
output = run(input_str, "--rdns", "--input-file-type", "json")
assert output == unordered(
[
{
"name": "cloudflare",
"ip": "1.1.1.1",
"date": "04-04-26",
"zannotate": {"rdns": {"domain_names": ["one.one.one.one"]}},
},
{
"name": "google",
"ip": "8.8.8.8",
"date": "04-04-26",
"zannotate": {"rdns": {"domain_names": ["dns.google"]}},
},
]
)
def test_rdns_json_stdin_non_standard_key_name():
input_str = textwrap.dedent("""\
{"name": "cloudflare","ip_address": "1.1.1.1", "date": "04-04-26"}
{"name": "google","ip_address": "8.8.8.8", "date": "04-04-26"}
""")
output = run(
input_str,
"--rdns",
"--input-file-type",
"json",
"--input-ip-field",
"ip_address",
)
assert output == unordered(
[
{
"name": "cloudflare",
"ip_address": "1.1.1.1",
"date": "04-04-26",
"zannotate": {"rdns": {"domain_names": ["one.one.one.one"]}},
},
{
"name": "google",
"ip_address": "8.8.8.8",
"date": "04-04-26",
"zannotate": {"rdns": {"domain_names": ["dns.google"]}},
},
]
)
# Helpers
def run(stdin: str, *args) -> list[dict]:
result = subprocess.run(
["./zannotate", *args],
input=stdin,
capture_output=True,
text=True,
check=True,
)
lines = [json.loads(line) for line in result.stdout.strip().splitlines()]
return sorted(lines, key=lambda x: json.dumps(x, sort_keys=True))
def unordered(expected: list[dict]):
"""Sort both sides by JSON repr for order-insensitive comparison."""
return sorted(expected, key=lambda x: json.dumps(x, sort_keys=True))