Mercurial > pidgin
view libpurple/tests/tests.h @ 27763:f834ffa7490b
cert: Validate subject name before prompting due to no CA pool.
This likely 'broke' when the subject name validation was moved
to the end of x509_tls_cached_unknown_peer. String changes
going into 2.6.1.
I need to stop looking at these functions, but the
Black Hat conference provoked me.
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Fri, 31 Jul 2009 06:35:35 +0000 |
parents | 42359a734696 |
children | 2da9e4266742 |
line wrap: on
line source
#ifndef TESTS_H # define TESTS_H #include "../purple.h" #include <check.h> /* define the test suites here */ /* remember to add the suite to the runner in check_libpurple.c */ Suite * master_suite(void); Suite * cipher_suite(void); Suite * jabber_jutil_suite(void); Suite * yahoo_util_suite(void); Suite * util_suite(void); /* helper macros */ #define assert_string_equal(expected, actual) { \ const gchar *a = actual; \ fail_unless(strcmp(expected, a) == 0, "Expecting '%s' but got '%s'", expected, a); \ } #define assert_string_equal_free(expected, actual) { \ gchar *b = actual; \ assert_string_equal(expected, b); \ g_free(b); \ } #endif /* ifndef TESTS_H */