summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/librdkafka-2.1.0/tests/interceptor_test/interceptor_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'fluent-bit/lib/librdkafka-2.1.0/tests/interceptor_test/interceptor_test.h')
-rw-r--r--fluent-bit/lib/librdkafka-2.1.0/tests/interceptor_test/interceptor_test.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/fluent-bit/lib/librdkafka-2.1.0/tests/interceptor_test/interceptor_test.h b/fluent-bit/lib/librdkafka-2.1.0/tests/interceptor_test/interceptor_test.h
new file mode 100644
index 000000000..646b4b4d6
--- /dev/null
+++ b/fluent-bit/lib/librdkafka-2.1.0/tests/interceptor_test/interceptor_test.h
@@ -0,0 +1,54 @@
+#ifndef _INTERCEPTOR_TEST_H_
+#define _INTERCEPTOR_TEST_H_
+
+
+struct ictcnt {
+ int cnt;
+ int min;
+ int max;
+};
+
+struct ictest {
+ struct ictcnt conf_init;
+ struct ictcnt on_new;
+
+ /* intercepted interceptor_test.config1 and .config2 properties */
+ char *config1;
+ char *config2;
+
+ /* intercepted session.timeout.ms and socket.timeout.ms */
+ char *session_timeout_ms;
+ char *socket_timeout_ms;
+};
+
+#define ictest_init(ICT) memset((ICT), 0, sizeof(ictest))
+#define ictest_cnt_init(CNT, MIN, MAX) \
+ do { \
+ (CNT)->cnt = 0; \
+ (CNT)->min = MIN; \
+ (CNT)->max = MAX; \
+ } while (0)
+
+#define ictest_free(ICT) \
+ do { \
+ if ((ICT)->config1) \
+ free((ICT)->config1); \
+ if ((ICT)->config2) \
+ free((ICT)->config2); \
+ if ((ICT)->session_timeout_ms) \
+ free((ICT)->session_timeout_ms); \
+ if ((ICT)->socket_timeout_ms) \
+ free((ICT)->socket_timeout_ms); \
+ } while (0)
+
+#define ICTEST_CNT_CHECK(F) \
+ do { \
+ if (ictest.F.cnt > ictest.F.max) \
+ TEST_FAIL("interceptor %s count %d > max %d", #F, \
+ ictest.F.cnt, ictest.F.max); \
+ } while (0)
+
+/* The ictest struct is defined and set up by the calling test. */
+extern struct ictest ictest;
+
+#endif /* _INTERCEPTOR_TEST_H_ */