123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- // SPDX-License-Identifier: GPL-3.0-or-later
- #include "test_exporting_engine.h"
- // Use memory allocation functions guarded by CMocka in strdupz
- const char *__wrap_strdupz(const char *s)
- {
- char *duplicate = malloc(sizeof(char) * (strlen(s) + 1));
- strcpy(duplicate, s);
- return duplicate;
- }
- time_t __wrap_now_realtime_sec(void)
- {
- function_called();
- return mock_type(time_t);
- }
- void __wrap_uv_thread_set_name_np(uv_thread_t ut, const char* name)
- {
- (void)ut;
- (void)name;
- function_called();
- }
- void __wrap_info_int(const char *file, const char *function, const unsigned long line, const char *fmt, ...)
- {
- (void)file;
- (void)function;
- (void)line;
- function_called();
- va_list args;
- va_start(args, fmt);
- vsnprintf(log_line, MAX_LOG_LINE, fmt, args);
- va_end(args);
- }
- int __wrap_connect_to_one_of(
- const char *destination,
- int default_port,
- struct timeval *timeout,
- size_t *reconnects_counter,
- char *connected_to,
- size_t connected_to_size)
- {
- (void)timeout;
- function_called();
- check_expected(destination);
- check_expected_ptr(default_port);
- // TODO: check_expected_ptr(timeout);
- check_expected(reconnects_counter);
- check_expected(connected_to);
- check_expected(connected_to_size);
- return mock_type(int);
- }
- void __rrdhost_check_rdlock(RRDHOST *host, const char *file, const char *function, const unsigned long line)
- {
- (void)host;
- (void)file;
- (void)function;
- (void)line;
- }
- void __rrdset_check_rdlock(RRDSET *st, const char *file, const char *function, const unsigned long line)
- {
- (void)st;
- (void)file;
- (void)function;
- (void)line;
- }
- void __rrd_check_rdlock(const char *file, const char *function, const unsigned long line)
- {
- (void)file;
- (void)function;
- (void)line;
- }
- RRDSET *rrdset_create_custom(
- RRDHOST *host,
- const char *type,
- const char *id,
- const char *name,
- const char *family,
- const char *context,
- const char *title,
- const char *units,
- const char *plugin,
- const char *module,
- long priority,
- int update_every,
- RRDSET_TYPE chart_type,
- RRD_MEMORY_MODE memory_mode,
- long history_entries)
- {
- check_expected_ptr(host);
- check_expected_ptr(type);
- check_expected_ptr(id);
- check_expected_ptr(name);
- check_expected_ptr(family);
- check_expected_ptr(context);
- UNUSED(title);
- check_expected_ptr(units);
- check_expected_ptr(plugin);
- check_expected_ptr(module);
- check_expected(priority);
- check_expected(update_every);
- check_expected(chart_type);
- UNUSED(memory_mode);
- UNUSED(history_entries);
- function_called();
- return mock_ptr_type(RRDSET *);
- }
- void rrdset_next_usec(RRDSET *st, usec_t microseconds)
- {
- check_expected_ptr(st);
- UNUSED(microseconds);
- function_called();
- }
- void rrdset_done(RRDSET *st)
- {
- check_expected_ptr(st);
- function_called();
- }
- RRDDIM *rrddim_add_custom(
- RRDSET *st,
- const char *id,
- const char *name,
- collected_number multiplier,
- collected_number divisor,
- RRD_ALGORITHM algorithm,
- RRD_MEMORY_MODE memory_mode)
- {
- check_expected_ptr(st);
- UNUSED(id);
- check_expected_ptr(name);
- check_expected(multiplier);
- check_expected(divisor);
- check_expected(algorithm);
- UNUSED(memory_mode);
- function_called();
- return NULL;
- }
- collected_number rrddim_set_by_pointer(RRDSET *st, RRDDIM *rd, collected_number value)
- {
- check_expected_ptr(st);
- UNUSED(rd);
- UNUSED(value);
- function_called();
- return 0;
- }
- const char *rrd_memory_mode_name(RRD_MEMORY_MODE id)
- {
- (void)id;
- return RRD_MEMORY_MODE_NONE_NAME;
- }
- calculated_number rrdvar2number(RRDVAR *rv)
- {
- (void)rv;
- return 0;
- }
- int foreach_host_variable_callback(RRDHOST *host, int (*callback)(RRDVAR *rv, void *data), void *data)
- {
- (void)host;
- (void)callback;
- (void)data;
- return 0;
- }
- void rrdset_update_heterogeneous_flag(RRDSET *st)
- {
- (void)st;
- }
- time_t __mock_rrddim_query_oldest_time(RRDDIM *rd)
- {
- (void)rd;
- function_called();
- return mock_type(time_t);
- }
- time_t __mock_rrddim_query_latest_time(RRDDIM *rd)
- {
- (void)rd;
- function_called();
- return mock_type(time_t);
- }
- void __mock_rrddim_query_init(RRDDIM *rd, struct rrddim_query_handle *handle, time_t start_time, time_t end_time)
- {
- (void)rd;
- (void)handle;
- function_called();
- check_expected(start_time);
- check_expected(end_time);
- }
- int __mock_rrddim_query_is_finished(struct rrddim_query_handle *handle)
- {
- (void)handle;
- function_called();
- return mock_type(int);
- }
- storage_number __mock_rrddim_query_next_metric(struct rrddim_query_handle *handle, time_t *current_time)
- {
- (void)handle;
- (void)current_time;
- function_called();
- return mock_type(storage_number);
- }
- void __mock_rrddim_query_finalize(struct rrddim_query_handle *handle)
- {
- (void)handle;
- function_called();
- }
|