mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00

- Use `-b` most everywhere, it will save time. - Start some intel tests upon the input file being fully read instead of at an arbitrary time. - Improve termination condition for some sumstats/cluster tests. - Filter uninteresting output from some supervisor tests. - Test for `notice_policy.log` is no longer needed.
72 lines
2 KiB
Text
72 lines
2 KiB
Text
# @TEST-PORT: BROKER_PORT1
|
|
# @TEST-PORT: BROKER_PORT2
|
|
#
|
|
# @TEST-EXEC: btest-bg-run manager-1 ZEEKPATH=$ZEEKPATH:.. CLUSTER_NODE=manager-1 zeek -b %INPUT
|
|
# @TEST-EXEC: btest-bg-run worker-1 ZEEKPATH=$ZEEKPATH:.. CLUSTER_NODE=worker-1 zeek -b %INPUT
|
|
# @TEST-EXEC: btest-bg-wait 25
|
|
|
|
# @TEST-EXEC: btest-diff manager-1/.stdout
|
|
|
|
@load base/frameworks/sumstats
|
|
@load base/frameworks/cluster
|
|
|
|
@TEST-START-FILE cluster-layout.zeek
|
|
redef Cluster::nodes = {
|
|
["manager-1"] = [$node_type=Cluster::MANAGER, $ip=127.0.0.1, $p=to_port(getenv("BROKER_PORT1"))],
|
|
["worker-1"] = [$node_type=Cluster::WORKER, $ip=127.0.0.1, $p=to_port(getenv("BROKER_PORT2")), $manager="manager-1", $interface="eth0"],
|
|
};
|
|
@TEST-END-FILE
|
|
|
|
global c = 0;
|
|
|
|
event do_observe()
|
|
{
|
|
print "do observe", c;
|
|
SumStats::observe("test",
|
|
[$str=cat(c)],
|
|
[$num=c]
|
|
);
|
|
++c;
|
|
schedule 0.1secs { do_observe() };
|
|
}
|
|
|
|
event zeek_init()
|
|
{
|
|
local r1 = SumStats::Reducer($stream="test",
|
|
$apply=set(SumStats::LAST),
|
|
$num_last_elements=1
|
|
);
|
|
|
|
SumStats::create([$name="test",
|
|
$epoch=10secs,
|
|
$reducers=set(r1),
|
|
$threshold_val(key: SumStats::Key, result: SumStats::Result): double = { return 2.0; },
|
|
$threshold = 1.0,
|
|
$threshold_crossed(key: SumStats::Key, result: SumStats::Result) =
|
|
{
|
|
local l = SumStats::get_last(result["test"]);
|
|
print "test thresh crossed", l;
|
|
|
|
if ( l[0]$num == 7 )
|
|
terminate();
|
|
}
|
|
]);
|
|
}
|
|
|
|
event Cluster::node_up(name: string, id: string)
|
|
{
|
|
print "node up", name;
|
|
|
|
if ( Cluster::node == "worker-1" && name == "manager-1" )
|
|
schedule 0.1secs { do_observe() };
|
|
}
|
|
|
|
event Cluster::node_down(name: string, id: string)
|
|
{
|
|
print "node down", name;
|
|
}
|
|
|
|
event Broker::peer_lost(endpoint: Broker::EndpointInfo, id: string)
|
|
{
|
|
terminate();
|
|
}
|