zeek/testing/btest/plugins/storage.zeek
2025-03-18 09:32:34 -07:00

52 lines
1.8 KiB
Text

# @TEST-DOC: Basic test of a plugin implmenting a backend for the storage framework
# @TEST-REQUIRES: test "${ZEEK_ZAM}" != "1"
# @TEST-EXEC: ${DIST}/auxil/zeek-aux/plugin-support/init-plugin -u . Testing StorageDummy
# @TEST-EXEC: cp -r %DIR/storage-plugin/* .
# @TEST-EXEC: ./configure --zeek-dist=${DIST} && make
# @TEST-EXEC: ZEEK_PLUGIN_PATH=$(pwd) zeek -b Testing::StorageDummy %INPUT >> output 2>zeek-stderr
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff output
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff zeek-stderr
@load base/frameworks/storage
# Create a typename here that can be passed down into get().
type str: string;
type StorageDummyOpts : record {
open_fail: bool;
};
event zeek_init() {
local opts : StorageDummyOpts;
opts$open_fail = F;
local key = "key1234";
local value = "value5678";
# Test basic operation. The second get() should return an error
# as the key should have been erased.
local b = Storage::open_backend(Storage::STORAGEDUMMY, opts, str, str);
local put_res = Storage::put(b, [$key=key, $value=value, $overwrite=F, $async_mode=F]);
local get_res = Storage::get(b, key, F);
if ( get_res is bool ) {
print("Got an invalid value in response!");
}
local erase_res = Storage::erase(b, key, F);
get_res = Storage::get(b, key, F);
Storage::close_backend(b);
# Test attempting to use the closed handle.
put_res = Storage::put(b, [$key="a", $value="b", $overwrite=F]);
get_res = Storage::get(b, "a");
erase_res = Storage::erase(b, "a");
print(fmt("results of trying to use closed handle: get: %d, put: %d, erase: %d",
get_res, put_res, erase_res));
# Test failing to open the handle and test closing an invalid handle.
opts$open_fail = T;
local b2 = Storage::open_backend(Storage::STORAGEDUMMY, opts, str, str);
Storage::close_backend(b2);
}