test: print connections as keyfile on failure of nmtst_assert_connection_equals()

If the assertion nmtst_assert_connection_equals() is about to fail,
dump out the offending connections as keyfile.
This commit is contained in:
Thomas Haller
2015-03-13 14:32:55 +01:00
parent 3790d8db2e
commit a5ea98005f

View File

@@ -887,6 +887,24 @@ nmtst_assert_connection_equals (NMConnection *a, gboolean normalize_a, NMConnect
__NMTST_LOG (g_message, ">>> differences in setting '%s.%s'", name, pname); __NMTST_LOG (g_message, ">>> differences in setting '%s.%s'", name, pname);
} }
} }
#ifdef __NM_KEYFILE_INTERNAL_H__
{
gs_unref_keyfile GKeyFile *kf_a = NULL, *kf_b = NULL;
gs_free char *str_a = NULL, *str_b = NULL;
kf_a = nm_keyfile_write (a, NULL, NULL, NULL);
kf_b = nm_keyfile_write (b, NULL, NULL, NULL);
if (kf_a)
str_a = g_key_file_to_data (kf_a, NULL, NULL);
if (kf_b)
str_b = g_key_file_to_data (kf_b, NULL, NULL);
__NMTST_LOG (g_message, ">>> Connection A as kf (*WARNING: keyfile representation might not show the difference*):\n%s", str_a);
__NMTST_LOG (g_message, ">>> Connection B as kf (*WARNING: keyfile representation might not show the difference*):\n%s", str_b);
}
#endif
} }
g_assert (compare); g_assert (compare);
g_assert (!out_settings); g_assert (!out_settings);