blob: 1169d8fd821680815efb43e3228a48b33d3ff678 (
plain)
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
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#include <fluent-bit.h>
#include "flb_tests_runtime.h"
void flb_test_input_event()
{
int ret;
flb_ctx_t *ctx;
int in_ffd;
int out_ffd;
ctx = flb_create();
in_ffd = flb_input(ctx, (char *) "event_test", NULL);
TEST_CHECK(in_ffd >= 0);
out_ffd = flb_output(ctx, (char *) "null", NULL);
TEST_CHECK(out_ffd >= 0);
flb_output_set(ctx, out_ffd, "match", "test", NULL);
ret = flb_start(ctx);
TEST_CHECK(ret == 0);
sleep(8);
flb_stop(ctx);
flb_destroy(ctx);
}
/* Test list */
TEST_LIST = {
{"event_test", flb_test_input_event},
{NULL, NULL}
};
|