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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/* Easy Publish and Consume Library
* Copyright (C) 2007, 2008 Openismus GmbH
*
* This library 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.
*
* This library 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 this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Authors:
* Mathias Hasselmann
*/
#include "libepc/service-type.h"
static gint n_failures = 0;
#define fail(message, ...) _fail (G_STRLOC, (message), __VA_ARGS__)
#define check_not_null(value) _check_not_null (G_STRLOC, (value))
#define check_str_eq(expected, value) _check_str_eq (G_STRLOC, (expected), (value))
#define check_int_eq(expected, value) _check_int_eq (G_STRLOC, (expected), (value))
G_GNUC_PRINTF(2, 3) static void
_fail (const gchar *strloc,
const gchar *message,
...)
{
va_list args;
gchar *tmp;
va_start (args, message);
tmp = g_strdup_vprintf (message, args);
va_end (args);
g_print ("%s: assertion `%s' failed\n", strloc, tmp);
g_free (tmp);
}
static gboolean
_check_not_null (const gchar *strloc,
gconstpointer value)
{
if (NULL != value)
return TRUE;
_fail (strloc, "value is not NULL");
return FALSE;
}
static gboolean
_check_str_eq (const gchar *strloc,
const gchar *expected,
const gchar *value)
{
if (_check_not_null (strloc, value) &&
g_str_equal (expected, value))
return TRUE;
_fail (strloc, "value is `%s' (got: `%s')", expected, value);
return FALSE;
}
static gboolean
_check_int_eq (const gchar *strloc,
gint expected,
gint value)
{
if (expected == value)
return TRUE;
_fail (strloc, "value is `%d' (got: `%d')", expected, value);
return FALSE;
}
int
main (void)
{
check_str_eq ("_http._tcp", epc_service_type_get_base ("_http._tcp"));
check_str_eq ("_http._tcp", epc_service_type_get_base ("_test._sub._http._tcp"));
check_int_eq (EPC_PROTOCOL_HTTP, epc_service_type_get_protocol (EPC_SERVICE_TYPE_HTTP));
check_int_eq (EPC_PROTOCOL_HTTPS, epc_service_type_get_protocol (EPC_SERVICE_TYPE_HTTPS));
check_int_eq (EPC_PROTOCOL_UNKNOWN, epc_service_type_get_protocol ("unknown"));
return n_failures;
}
|