mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 15:18:20 +00:00

* Generally increase timeouts for tests that have recent transient failures * Change any test that relied on `btest-bg-wait -k` since that's never going to play with with CI systems. Instead, we always need to have a well-defined termination condition in the test itself (and most already did, so didn't really need the `-k` flag anyway).
46 lines
1.1 KiB
Text
46 lines
1.1 KiB
Text
|
|
# @TEST-EXEC: btest-bg-run zeekproc zeek %INPUT
|
|
# @TEST-EXEC: btest-bg-wait 20
|
|
# @TEST-EXEC: btest-diff zeekproc/intel.log
|
|
|
|
@TEST-START-FILE intel.dat
|
|
#fields indicator indicator_type meta.source meta.remove
|
|
10.0.0.1 Intel::ADDR source1 T
|
|
10.0.0.2 Intel::ADDR source1 F
|
|
@TEST-END-FILE
|
|
|
|
@load frameworks/intel/removal
|
|
|
|
redef exit_only_after_terminate = T;
|
|
redef Intel::read_files += { "../intel.dat" };
|
|
redef enum Intel::Where += { SOMEWHERE };
|
|
|
|
hook Intel::filter_item(item: Intel::Item)
|
|
{
|
|
if ( item$indicator_type == Intel::ADDR &&
|
|
Site::is_local_addr(to_addr(item$indicator)) )
|
|
break;
|
|
}
|
|
|
|
event do_it()
|
|
{
|
|
Intel::seen([$host=10.0.0.1,
|
|
$where=SOMEWHERE]);
|
|
Intel::seen([$host=10.0.0.2,
|
|
$where=SOMEWHERE]);
|
|
}
|
|
|
|
global log_lines = 0;
|
|
event Intel::log_intel(rec: Intel::Info)
|
|
{
|
|
++log_lines;
|
|
if ( log_lines == 1 )
|
|
terminate();
|
|
}
|
|
|
|
event zeek_init() &priority=-10
|
|
{
|
|
Intel::insert([$indicator="10.0.0.1", $indicator_type=Intel::ADDR, $meta=[$source="source1"]]);
|
|
Intel::insert([$indicator="10.0.0.2", $indicator_type=Intel::ADDR, $meta=[$source="source1"]]);
|
|
schedule 1sec { do_it() };
|
|
}
|