/*
* This file is part of Cockpit.
*
* Copyright (C) 2013 Red Hat, Inc.
*
* Cockpit is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* Cockpit is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Cockpit; If not, see .
*/
#include
#ifndef __COCKPIT_TEST_H__
#define __COCKPIT_TEST_H__
#include
G_BEGIN_DECLS
#define COCKPIT_TEST_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
void cockpit_test_init (int *argc,
char ***argv);
void _cockpit_expect_logged_msg (const char *domain,
const char *file,
int line,
const char *func,
GLogLevelFlags log_level,
const gchar *pattern,
gboolean skipable,
gboolean optional);
#define cockpit_expect_log(domain, level, pattern) \
(_cockpit_expect_logged_msg ((domain), __FILE__, __LINE__, G_STRFUNC, (level), (pattern), FALSE, FALSE))
#define cockpit_expect_unordered_log(domain, level, pattern) \
(_cockpit_expect_logged_msg ((domain), __FILE__, __LINE__, G_STRFUNC, (level), (pattern), TRUE, FALSE))
#define cockpit_expect_possible_log(domain, level, pattern) \
(_cockpit_expect_logged_msg ((domain), __FILE__, __LINE__, G_STRFUNC, (level), (pattern), TRUE, TRUE))
#define cockpit_expect_warning(pattern) \
(_cockpit_expect_logged_msg (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, G_LOG_LEVEL_WARNING, (pattern), FALSE, FALSE))
#define cockpit_expect_critical(pattern) \
(_cockpit_expect_logged_msg (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, G_LOG_LEVEL_CRITICAL, (pattern), FALSE, FALSE))
#define cockpit_expect_message(pattern) \
(_cockpit_expect_logged_msg (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, G_LOG_LEVEL_MESSAGE, (pattern), FALSE, FALSE))
#define cockpit_expect_info(pattern) \
(_cockpit_expect_logged_msg (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, G_LOG_LEVEL_INFO, (pattern), FALSE, FALSE))
void cockpit_assert_expected (void);
void _cockpit_assert_strmatch_msg (const char *domain,
const char *file,
int line,
const char *func,
const gchar *string,
const gchar *pattern);
#define cockpit_assert_strmatch(str, pattern) \
(_cockpit_assert_strmatch_msg (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, (str), (pattern)))
void _cockpit_assert_json_eq_msg (const char *domain,
const char *file,
int line,
const char *func,
gpointer object_or_array,
const gchar *json);
#define cockpit_assert_json_eq(obj_or_arr, json) \
(_cockpit_assert_json_eq_msg (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, (obj_or_arr), (json)))
void _cockpit_assert_data_eq_msg (const char *domain,
const char *file,
int line,
const char *func,
gconstpointer data,
gssize len,
gconstpointer expect,
gssize exp_len);
#define cockpit_assert_data_eq(data, len, exp, elen) \
(_cockpit_assert_data_eq_msg (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, (data), (len), (exp), (elen)))
void _cockpit_assert_bytes_eq_msg (const char *domain,
const char *file,
int line,
const char *func,
GBytes *data,
gconstpointer expect,
gssize exp_len);
#define cockpit_assert_bytes_eq(data, exp, len) \
(_cockpit_assert_bytes_eq_msg (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, (data), (exp), (len)))
void cockpit_test_skip (const gchar *reason);
void cockpit_test_signal_backtrace (int sig);
GInetAddress * cockpit_test_find_non_loopback_address (void);
void cockpit_test_allow_warnings (void);
void cockpit_test_reset_warnings (void);
G_END_DECLS
#endif /* __COCKPIT_TEST_H__ */