We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb2bd70 commit 89af1cfCopy full SHA for 89af1cf
intelmq/tests/bots/experts/ripe/test_expert.py
@@ -75,6 +75,9 @@
75
"source.ip": "228.66.141.189",
76
}
77
78
+ARIN_IP_EVENT = {"__type": "Event",
79
+ "source.ip": "2001:500:110:201::47"}
80
+
81
@test.skip_internet()
82
class TestRIPEExpertBot(test.BotTestCase, unittest.TestCase):
83
"""
@@ -263,5 +266,11 @@ def test_index_error(self):
263
266
self.run_bot()
264
267
self.assertMessageEqual(0, INDEX_ERROR)
265
268
269
+ def test_arin_ip(self):
270
+ self.input_message = ARIN_IP_EVENT
271
+ self.run_bot()
272
+ self.assertMessageEqual(0, ARIN_IP_EVENT)
273
274
275
if __name__ == '__main__': # pragma: no cover
276
unittest.main()
0 commit comments