glib/glib/tests/cxx.cpp
Philip Withnall 6c39f08f37 gstrfuncs: Fix regression in C++ types accepted by g_str_equal()
Further to commit bcd364afef984da894045, fix the types accepted by the
`g_str_equal()` macro for C++ too. C++ is more restrictive about
const-correctness.

Add unit tests.

Signed-off-by: Philip Withnall <pwithnall@endlessos.org>

Fixes: #2820
2022-11-28 12:58:05 +00:00

350 lines
10 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Copyright 2020 Xavier Claessens
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#include <glib.h>
#if !defined (G_CXX_STD_VERSION) || !defined (G_CXX_STD_CHECK_VERSION)
#error G_CXX_STD_VERSION is not defined
#endif
#ifdef G_C_STD_VERSION
#error G_C_STD_VERSION should be undefined in C programs
#endif
G_STATIC_ASSERT (G_CXX_STD_VERSION);
G_STATIC_ASSERT (!G_C_STD_CHECK_VERSION (99));
#if G_CXX_STD_VERSION >= 199711L
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (98));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (199711L));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (03));
#endif
#if G_CXX_STD_VERSION == 199711L
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (11));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (201103L));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (14));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (201402L));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (17));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (201703L));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (20));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (202002L));
#endif
#if G_CXX_STD_VERSION >= 201103L
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (98));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (199711L));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (03));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (11));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (201103L));
#endif
#if G_CXX_STD_VERSION == 201103L
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (14));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (201402L));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (17));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (201703L));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (20));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (202002L));
#endif
#if G_CXX_STD_VERSION >= 201402L
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (14));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (201402L));
#endif
#if G_CXX_STD_VERSION == 201402L
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (17));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (201703L));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (20));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (202002L));
#endif
#if G_CXX_STD_VERSION >= 201703L
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (17));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (201703L));
#endif
#if G_CXX_STD_VERSION == 201703L
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (20));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (202002L));
#endif
#if G_CXX_STD_VERSION >= 202002L
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (20));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (202002L));
#endif
#if G_CXX_STD_VERSION == 202002L
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (23));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (202300L));
#endif
#ifdef _G_EXPECTED_CXX_STANDARD
static void
test_cpp_standard (void)
{
guint64 std_version = 0;
if (!g_ascii_string_to_unsigned (_G_EXPECTED_CXX_STANDARD, 10, 0, G_MAXUINT64,
&std_version, NULL))
{
g_test_skip ("Expected standard value is non-numeric: "
_G_EXPECTED_CXX_STANDARD);
return;
}
#if !G_GNUC_CHECK_VERSION (11, 0)
if (std_version >= 20)
{
// See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93821
g_test_skip ("Expected standard version is not properly supported by compiler");
return;
}
#endif
g_test_message ("Checking if '" G_STRINGIFY (G_CXX_STD_VERSION) "' respects "
"the expected standard version '" _G_EXPECTED_CXX_STANDARD "'");
g_assert_true (G_CXX_STD_CHECK_VERSION (std_version));
if (std_version < 10 || std_version > 90)
std_version = 97;
if (std_version >= 90)
g_assert_cmpuint (G_CXX_STD_VERSION, >=, (std_version + 1900) * 100);
else
g_assert_cmpuint (G_CXX_STD_VERSION, >=, (std_version + 2000) * 100);
}
#endif
typedef struct
{
int dummy;
} MyObject;
static void
test_typeof (void)
{
MyObject *obj = g_rc_box_new0 (MyObject);
MyObject *obj2 = g_rc_box_acquire (obj);
g_assert_true (obj2 == obj);
G_STATIC_ASSERT (sizeof (glib_typeof (*obj)) == sizeof (glib_typeof (*obj2)));
MyObject *obj3 = g_atomic_pointer_get (&obj2);
g_assert_true (obj3 == obj);
MyObject *obj4 = NULL;
g_atomic_pointer_set (&obj4, obj3);
g_assert_true (obj4 == obj);
MyObject *obj5 = NULL;
g_atomic_pointer_compare_and_exchange (&obj5, NULL, obj4);
g_assert_true (obj5 == obj);
MyObject *obj6 = g_steal_pointer (&obj5);
g_assert_true (obj6 == obj);
g_clear_pointer (&obj6, g_rc_box_release);
g_rc_box_release (obj);
}
static void
test_atomic_pointer_compare_and_exchange (void)
{
const gchar *str1 = "str1";
const gchar *str2 = "str2";
const gchar *atomic_string = str1;
g_test_message ("Test that g_atomic_pointer_compare_and_exchange() with a "
"non-void* pointer doesnt have any compiler warnings in C++ mode");
g_assert_true (g_atomic_pointer_compare_and_exchange (&atomic_string, str1, str2));
g_assert_true (atomic_string == str2);
}
static void
test_atomic_pointer_compare_and_exchange_full (void)
{
const gchar *str1 = "str1";
const gchar *str2 = "str2";
const gchar *atomic_string = str1;
const gchar *old;
g_test_message ("Test that g_atomic_pointer_compare_and_exchange_full() with a "
"non-void* pointer doesnt have any compiler warnings in C++ mode");
g_assert_true (g_atomic_pointer_compare_and_exchange_full (&atomic_string, str1, str2, &old));
g_assert_true (atomic_string == str2);
g_assert_true (old == str1);
}
static void
test_atomic_int_compare_and_exchange (void)
{
gint atomic_int = 5;
g_test_message ("Test that g_atomic_int_compare_and_exchange() doesnt have "
"any compiler warnings in C++ mode");
g_assert_true (g_atomic_int_compare_and_exchange (&atomic_int, 5, 50));
g_assert_cmpint (atomic_int, ==, 50);
}
static void
test_atomic_int_compare_and_exchange_full (void)
{
gint atomic_int = 5;
gint old_value;
g_test_message ("Test that g_atomic_int_compare_and_exchange_full() doesnt have "
"any compiler warnings in C++ mode");
g_assert_true (g_atomic_int_compare_and_exchange_full (&atomic_int, 5, 50, &old_value));
g_assert_cmpint (atomic_int, ==, 50);
g_assert_cmpint (old_value, ==, 5);
}
static void
test_atomic_pointer_exchange (void)
{
const gchar *str1 = "str1";
const gchar *str2 = "str2";
const gchar *atomic_string = str1;
g_test_message ("Test that g_atomic_pointer_exchange() with a "
"non-void* pointer doesnt have any compiler warnings in C++ mode");
g_assert_true (g_atomic_pointer_exchange (&atomic_string, str2) == str1);
g_assert_true (atomic_string == str2);
}
static void
test_atomic_int_exchange (void)
{
gint atomic_int = 5;
g_test_message ("Test that g_atomic_int_compare_and_exchange() doesnt have "
"any compiler warnings in C++ mode");
g_assert_cmpint (g_atomic_int_exchange (&atomic_int, 50), ==, 5);
}
G_NO_INLINE
static gboolean
do_not_inline_this (void)
{
return FALSE;
}
G_ALWAYS_INLINE
static inline gboolean
do_inline_this (void)
{
return TRUE;
}
static void
test_inline_no_inline_macros (void)
{
g_test_message ("Test that G_NO_INLINE and G_ALWAYS_INLINE functions "
"can be compiled with C++ compiler");
g_assert_false (do_not_inline_this ());
g_assert_true (do_inline_this ());
}
static void
clear_boolean_ptr (gboolean *val)
{
*val = TRUE;
}
static void
test_clear_pointer (void)
{
gboolean value = FALSE;
gboolean *ptr = &value;
g_assert_true (ptr == &value);
g_assert_false (value);
g_clear_pointer (&ptr, clear_boolean_ptr);
g_assert_null (ptr);
g_assert_true (value);
}
static void
test_steal_pointer (void)
{
gpointer ptr = &ptr;
g_assert_true (ptr == &ptr);
g_assert_true (g_steal_pointer (&ptr) == &ptr);
g_assert_null (ptr);
}
static void
test_str_equal (void)
{
const char *str_a = "a";
char *str_b = g_strdup ("b");
gconstpointer str_a_ptr = str_a, str_b_ptr = str_b;
const unsigned char *str_c = (const unsigned char *) "c";
g_test_summary ("Test typechecking and casting of arguments to g_str_equal() macro in C++");
g_test_bug ("https://gitlab.gnome.org/GNOME/glib/-/issues/2820");
/* We dont actually care what the comparisons do at runtime. What were
* checking here is that the types dont emit warnings at compile time. */
g_assert_true (g_str_equal ("a", str_a));
g_assert_false (g_str_equal ("a", str_b));
g_assert_true (g_str_equal (str_a, str_a_ptr));
g_assert_false (g_str_equal (str_a_ptr, str_b_ptr));
g_assert_false (g_str_equal (str_c, str_b));
g_free (str_b);
}
int
main (int argc, char *argv[])
{
#if G_CXX_STD_CHECK_VERSION (11)
g_test_init (&argc, &argv, NULL);
#else
g_test_init (&argc, &argv, static_cast<void *>(NULL));
#endif
#ifdef _G_EXPECTED_CXX_STANDARD
g_test_add_func ("/C++/check-standard-" _G_EXPECTED_CXX_STANDARD, test_cpp_standard);
#endif
g_test_add_func ("/C++/typeof", test_typeof);
g_test_add_func ("/C++/atomic-pointer-compare-and-exchange", test_atomic_pointer_compare_and_exchange);
g_test_add_func ("/C++/atomic-pointer-compare-and-exchange-full", test_atomic_pointer_compare_and_exchange_full);
g_test_add_func ("/C++/atomic-int-compare-and-exchange", test_atomic_int_compare_and_exchange);
g_test_add_func ("/C++/atomic-int-compare-and-exchange-full", test_atomic_int_compare_and_exchange_full);
g_test_add_func ("/C++/atomic-pointer-exchange", test_atomic_pointer_exchange);
g_test_add_func ("/C++/atomic-int-exchange", test_atomic_int_exchange);
g_test_add_func ("/C++/inlined-not-inlined-functions", test_inline_no_inline_macros);
g_test_add_func ("/C++/clear-pointer", test_clear_pointer);
g_test_add_func ("/C++/steal-pointer", test_steal_pointer);
g_test_add_func ("/C++/str-equal", test_str_equal);
return g_test_run ();
}