summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2014-08-19 00:49:43 +0200
committerThomas Haller <thaller@redhat.com>2014-08-22 15:24:31 +0200
commitb8a475ba3f54b2354dceea16038ac435f3324546 (patch)
tree402cb745038bff650994ea3ac558df7815468a78
parent9ea3653f1f0c6d1a9f4456ea0f717fb62e80dd9e (diff)
tests: refactor tests to use g_test framework (g_test_add_func)
Signed-off-by: Thomas Haller <thaller@redhat.com>
-rw-r--r--libnm-core/tests/test-general.c196
-rw-r--r--src/settings/plugins/keyfile/tests/test-keyfile.c85
2 files changed, 146 insertions, 135 deletions
diff --git a/libnm-core/tests/test-general.c b/libnm-core/tests/test-general.c
index a77930f7aa..e620e1de75 100644
--- a/libnm-core/tests/test-general.c
+++ b/libnm-core/tests/test-general.c
@@ -1837,11 +1837,29 @@ test_setting_compare_id (void)
g_assert (success);
}
+typedef struct {
+ NMSettingSecretFlags secret_flags;
+ NMSettingCompareFlags comp_flags;
+ gboolean remove_secret;
+} TestDataCompareSecrets;
+
+static TestDataCompareSecrets *
+test_data_compare_secrets_new (NMSettingSecretFlags secret_flags,
+ NMSettingCompareFlags comp_flags,
+ gboolean remove_secret)
+{
+ TestDataCompareSecrets *data = g_new0 (TestDataCompareSecrets, 1);
+
+ data->secret_flags = secret_flags;
+ data->comp_flags = comp_flags;
+ data->remove_secret = remove_secret;
+ return data;
+}
+
static void
-test_setting_compare_secrets (NMSettingSecretFlags secret_flags,
- NMSettingCompareFlags comp_flags,
- gboolean remove_secret)
+test_setting_compare_secrets (gconstpointer test_data)
{
+ const TestDataCompareSecrets *data = test_data;
NMSetting *old, *new;
gboolean success;
@@ -1854,26 +1872,25 @@ test_setting_compare_secrets (NMSettingSecretFlags secret_flags,
NM_SETTING_WIRELESS_SECURITY_KEY_MGMT, "wpa-psk",
NM_SETTING_WIRELESS_SECURITY_PSK, "really cool psk",
NULL);
- nm_setting_set_secret_flags (old, NM_SETTING_WIRELESS_SECURITY_PSK, secret_flags, NULL);
+ nm_setting_set_secret_flags (old, NM_SETTING_WIRELESS_SECURITY_PSK, data->secret_flags, NULL);
/* Clear the PSK from the duplicated setting */
new = nm_setting_duplicate (old);
- if (remove_secret) {
+ if (data->remove_secret) {
g_object_set (new, NM_SETTING_WIRELESS_SECURITY_PSK, NULL, NULL);
success = nm_setting_compare (old, new, NM_SETTING_COMPARE_FLAG_EXACT);
g_assert (success == FALSE);
}
- success = nm_setting_compare (old, new, comp_flags);
+ success = nm_setting_compare (old, new, data->comp_flags);
g_assert (success);
}
static void
-test_setting_compare_vpn_secrets (NMSettingSecretFlags secret_flags,
- NMSettingCompareFlags comp_flags,
- gboolean remove_secret)
+test_setting_compare_vpn_secrets (gconstpointer test_data)
{
+ const TestDataCompareSecrets *data = test_data;
NMSetting *old, *new;
gboolean success;
@@ -1886,11 +1903,11 @@ test_setting_compare_vpn_secrets (NMSettingSecretFlags secret_flags,
nm_setting_vpn_add_secret (NM_SETTING_VPN (old), "asdfasdfasdf", "really adfasdfasdfasdf");
nm_setting_vpn_add_secret (NM_SETTING_VPN (old), "0123456778", "abcdefghijklmnpqrstuvqxyz");
nm_setting_vpn_add_secret (NM_SETTING_VPN (old), "borkbork", "yet another really secret password");
- nm_setting_set_secret_flags (old, "borkbork", secret_flags, NULL);
+ nm_setting_set_secret_flags (old, "borkbork", data->secret_flags, NULL);
/* Clear "borkbork" from the duplicated setting */
new = nm_setting_duplicate (old);
- if (remove_secret) {
+ if (data->remove_secret) {
nm_setting_vpn_remove_secret (NM_SETTING_VPN (new), "borkbork");
/* First make sure they are different */
@@ -1898,7 +1915,7 @@ test_setting_compare_vpn_secrets (NMSettingSecretFlags secret_flags,
g_assert (success == FALSE);
}
- success = nm_setting_compare (old, new, comp_flags);
+ success = nm_setting_compare (old, new, data->comp_flags);
g_assert (success);
}
@@ -3046,86 +3063,85 @@ NMTST_DEFINE ();
int main (int argc, char **argv)
{
- char *base;
-
nmtst_init (&argc, &argv, TRUE);
/* The tests */
- test_setting_vpn_items ();
- test_setting_vpn_update_secrets ();
- test_setting_vpn_modify_during_foreach ();
- test_setting_ip4_config_labels ();
- test_setting_ip6_config_old_address_array ();
- test_setting_gsm_apn_spaces ();
- test_setting_gsm_apn_bad_chars ();
- test_setting_gsm_apn_underscore ();
- test_setting_gsm_without_number ();
- test_setting_to_hash_all ();
- test_setting_to_hash_no_secrets ();
- test_setting_to_hash_only_secrets ();
- test_setting_compare_id ();
- test_setting_compare_secrets (NM_SETTING_SECRET_FLAG_AGENT_OWNED, NM_SETTING_COMPARE_FLAG_IGNORE_AGENT_OWNED_SECRETS, TRUE);
- test_setting_compare_secrets (NM_SETTING_SECRET_FLAG_NOT_SAVED, NM_SETTING_COMPARE_FLAG_IGNORE_NOT_SAVED_SECRETS, TRUE);
- test_setting_compare_secrets (NM_SETTING_SECRET_FLAG_NONE, NM_SETTING_COMPARE_FLAG_IGNORE_SECRETS, TRUE);
- test_setting_compare_secrets (NM_SETTING_SECRET_FLAG_NONE, NM_SETTING_COMPARE_FLAG_EXACT, FALSE);
- test_setting_compare_vpn_secrets (NM_SETTING_SECRET_FLAG_AGENT_OWNED, NM_SETTING_COMPARE_FLAG_IGNORE_AGENT_OWNED_SECRETS, TRUE);
- test_setting_compare_vpn_secrets (NM_SETTING_SECRET_FLAG_NOT_SAVED, NM_SETTING_COMPARE_FLAG_IGNORE_NOT_SAVED_SECRETS, TRUE);
- test_setting_compare_vpn_secrets (NM_SETTING_SECRET_FLAG_NONE, NM_SETTING_COMPARE_FLAG_IGNORE_SECRETS, TRUE);
- test_setting_compare_vpn_secrets (NM_SETTING_SECRET_FLAG_NONE, NM_SETTING_COMPARE_FLAG_EXACT, FALSE);
- test_setting_old_uuid ();
-
- test_connection_to_hash_setting_name ();
- test_setting_new_from_hash ();
- test_connection_replace_settings ();
- test_connection_replace_settings_from_connection ();
- test_connection_new_from_hash ();
- test_connection_verify_sets_interface_name ();
- test_connection_normalize_virtual_iface_name ();
- test_connection_normalize_type ();
- test_connection_normalize_slave_type_1 ();
- test_connection_normalize_slave_type_2 ();
-
- test_setting_connection_permissions_helpers ();
- test_setting_connection_permissions_property ();
-
- test_connection_compare_same ();
- test_connection_compare_key_only_in_a ();
- test_connection_compare_setting_only_in_a ();
- test_connection_compare_key_only_in_b ();
- test_connection_compare_setting_only_in_b ();
-
- test_connection_diff_a_only ();
- test_connection_diff_same ();
- test_connection_diff_different ();
- test_connection_diff_no_secrets ();
- test_connection_diff_inferrable ();
- test_connection_good_base_types ();
- test_connection_bad_base_types ();
-
- test_hwaddr_aton_ether_normal ();
- test_hwaddr_aton_ib_normal ();
- test_hwaddr_aton_no_leading_zeros ();
- test_hwaddr_aton_malformed ();
- test_hwaddr_equal ();
-
- test_ip4_prefix_to_netmask ();
- test_ip4_netmask_to_prefix ();
-
- test_connection_changed_signal ();
- test_setting_connection_changed_signal ();
- test_setting_bond_changed_signal ();
- test_setting_ip4_changed_signal ();
- test_setting_ip6_changed_signal ();
- test_setting_vlan_changed_signal ();
- test_setting_vpn_changed_signal ();
- test_setting_wired_changed_signal ();
- test_setting_wireless_changed_signal ();
- test_setting_wireless_security_changed_signal ();
- test_setting_802_1x_changed_signal ();
-
- base = g_path_get_basename (argv[0]);
- fprintf (stdout, "%s: SUCCESS\n", base);
- g_free (base);
- return 0;
+ g_test_add_func ("/core/general/test_setting_vpn_items", test_setting_vpn_items);
+ g_test_add_func ("/core/general/test_setting_vpn_update_secrets", test_setting_vpn_update_secrets);
+ g_test_add_func ("/core/general/test_setting_vpn_modify_during_foreach", test_setting_vpn_modify_during_foreach);
+ g_test_add_func ("/core/general/test_setting_ip4_config_labels", test_setting_ip4_config_labels);
+ g_test_add_func ("/core/general/test_setting_ip6_config_old_address_array", test_setting_ip6_config_old_address_array);
+ g_test_add_func ("/core/general/test_setting_gsm_apn_spaces", test_setting_gsm_apn_spaces);
+ g_test_add_func ("/core/general/test_setting_gsm_apn_bad_chars", test_setting_gsm_apn_bad_chars);
+ g_test_add_func ("/core/general/test_setting_gsm_apn_underscore", test_setting_gsm_apn_underscore);
+ g_test_add_func ("/core/general/test_setting_gsm_without_number", test_setting_gsm_without_number);
+ g_test_add_func ("/core/general/test_setting_to_hash_all", test_setting_to_hash_all);
+ g_test_add_func ("/core/general/test_setting_to_hash_no_secrets", test_setting_to_hash_no_secrets);
+ g_test_add_func ("/core/general/test_setting_to_hash_only_secrets", test_setting_to_hash_only_secrets);
+ g_test_add_func ("/core/general/test_setting_compare_id", test_setting_compare_id);
+#define ADD_FUNC(func, secret_flags, comp_flags, remove_secret) \
+ g_test_add_data_func_full ("/core/general/" G_STRINGIFY (func), \
+ test_data_compare_secrets_new (secret_flags, comp_flags, remove_secret), \
+ func, g_free)
+ ADD_FUNC (test_setting_compare_secrets, NM_SETTING_SECRET_FLAG_AGENT_OWNED, NM_SETTING_COMPARE_FLAG_IGNORE_AGENT_OWNED_SECRETS, TRUE);
+ ADD_FUNC (test_setting_compare_secrets, NM_SETTING_SECRET_FLAG_NOT_SAVED, NM_SETTING_COMPARE_FLAG_IGNORE_NOT_SAVED_SECRETS, TRUE);
+ ADD_FUNC (test_setting_compare_secrets, NM_SETTING_SECRET_FLAG_NONE, NM_SETTING_COMPARE_FLAG_IGNORE_SECRETS, TRUE);
+ ADD_FUNC (test_setting_compare_secrets, NM_SETTING_SECRET_FLAG_NONE, NM_SETTING_COMPARE_FLAG_EXACT, FALSE);
+ ADD_FUNC (test_setting_compare_vpn_secrets, NM_SETTING_SECRET_FLAG_AGENT_OWNED, NM_SETTING_COMPARE_FLAG_IGNORE_AGENT_OWNED_SECRETS, TRUE);
+ ADD_FUNC (test_setting_compare_vpn_secrets, NM_SETTING_SECRET_FLAG_NOT_SAVED, NM_SETTING_COMPARE_FLAG_IGNORE_NOT_SAVED_SECRETS, TRUE);
+ ADD_FUNC (test_setting_compare_vpn_secrets, NM_SETTING_SECRET_FLAG_NONE, NM_SETTING_COMPARE_FLAG_IGNORE_SECRETS, TRUE);
+ ADD_FUNC (test_setting_compare_vpn_secrets, NM_SETTING_SECRET_FLAG_NONE, NM_SETTING_COMPARE_FLAG_EXACT, FALSE);
+ g_test_add_func ("/core/general/test_setting_old_uuid", test_setting_old_uuid);
+
+ g_test_add_func ("/core/general/test_connection_to_hash_setting_name", test_connection_to_hash_setting_name);
+ g_test_add_func ("/core/general/test_setting_new_from_hash", test_setting_new_from_hash);
+ g_test_add_func ("/core/general/test_connection_replace_settings", test_connection_replace_settings);
+ g_test_add_func ("/core/general/test_connection_replace_settings_from_connection", test_connection_replace_settings_from_connection);
+ g_test_add_func ("/core/general/test_connection_new_from_hash", test_connection_new_from_hash);
+ g_test_add_func ("/core/general/test_connection_verify_sets_interface_name", test_connection_verify_sets_interface_name);
+ g_test_add_func ("/core/general/test_connection_normalize_virtual_iface_name", test_connection_normalize_virtual_iface_name);
+ g_test_add_func ("/core/general/test_connection_normalize_type", test_connection_normalize_type);
+ g_test_add_func ("/core/general/test_connection_normalize_slave_type_1", test_connection_normalize_slave_type_1);
+ g_test_add_func ("/core/general/test_connection_normalize_slave_type_2", test_connection_normalize_slave_type_2);
+
+ g_test_add_func ("/core/general/test_setting_connection_permissions_helpers", test_setting_connection_permissions_helpers);
+ g_test_add_func ("/core/general/test_setting_connection_permissions_property", test_setting_connection_permissions_property);
+
+ g_test_add_func ("/core/general/test_connection_compare_same", test_connection_compare_same);
+ g_test_add_func ("/core/general/test_connection_compare_key_only_in_a", test_connection_compare_key_only_in_a);
+ g_test_add_func ("/core/general/test_connection_compare_setting_only_in_a", test_connection_compare_setting_only_in_a);
+ g_test_add_func ("/core/general/test_connection_compare_key_only_in_b", test_connection_compare_key_only_in_b);
+ g_test_add_func ("/core/general/test_connection_compare_setting_only_in_b", test_connection_compare_setting_only_in_b);
+
+ g_test_add_func ("/core/general/test_connection_diff_a_only", test_connection_diff_a_only);
+ g_test_add_func ("/core/general/test_connection_diff_same", test_connection_diff_same);
+ g_test_add_func ("/core/general/test_connection_diff_different", test_connection_diff_different);
+ g_test_add_func ("/core/general/test_connection_diff_no_secrets", test_connection_diff_no_secrets);
+ g_test_add_func ("/core/general/test_connection_diff_inferrable", test_connection_diff_inferrable);
+ g_test_add_func ("/core/general/test_connection_good_base_types", test_connection_good_base_types);
+ g_test_add_func ("/core/general/test_connection_bad_base_types", test_connection_bad_base_types);
+
+ g_test_add_func ("/core/general/test_hwaddr_aton_ether_normal", test_hwaddr_aton_ether_normal);
+ g_test_add_func ("/core/general/test_hwaddr_aton_ib_normal", test_hwaddr_aton_ib_normal);
+ g_test_add_func ("/core/general/test_hwaddr_aton_no_leading_zeros", test_hwaddr_aton_no_leading_zeros);
+ g_test_add_func ("/core/general/test_hwaddr_aton_malformed", test_hwaddr_aton_malformed);
+ g_test_add_func ("/core/general/test_hwaddr_equal", test_hwaddr_equal);
+
+ g_test_add_func ("/core/general/test_ip4_prefix_to_netmask", test_ip4_prefix_to_netmask);
+ g_test_add_func ("/core/general/test_ip4_netmask_to_prefix", test_ip4_netmask_to_prefix);
+
+ g_test_add_func ("/core/general/test_connection_changed_signal", test_connection_changed_signal);
+ g_test_add_func ("/core/general/test_setting_connection_changed_signal", test_setting_connection_changed_signal);
+ g_test_add_func ("/core/general/test_setting_bond_changed_signal", test_setting_bond_changed_signal);
+ g_test_add_func ("/core/general/test_setting_ip4_changed_signal", test_setting_ip4_changed_signal);
+ g_test_add_func ("/core/general/test_setting_ip6_changed_signal", test_setting_ip6_changed_signal);
+ g_test_add_func ("/core/general/test_setting_vlan_changed_signal", test_setting_vlan_changed_signal);
+ g_test_add_func ("/core/general/test_setting_vpn_changed_signal", test_setting_vpn_changed_signal);
+ g_test_add_func ("/core/general/test_setting_wired_changed_signal", test_setting_wired_changed_signal);
+ g_test_add_func ("/core/general/test_setting_wireless_changed_signal", test_setting_wireless_changed_signal);
+ g_test_add_func ("/core/general/test_setting_wireless_security_changed_signal", test_setting_wireless_security_changed_signal);
+ g_test_add_func ("/core/general/test_setting_802_1x_changed_signal", test_setting_802_1x_changed_signal);
+
+ return g_test_run ();
}
diff --git a/src/settings/plugins/keyfile/tests/test-keyfile.c b/src/settings/plugins/keyfile/tests/test-keyfile.c
index fb58e22454..086fd72244 100644
--- a/src/settings/plugins/keyfile/tests/test-keyfile.c
+++ b/src/settings/plugins/keyfile/tests/test-keyfile.c
@@ -3442,69 +3442,64 @@ NMTST_DEFINE ();
int main (int argc, char **argv)
{
- char *base;
-
nmtst_init_assert_logging (&argc, &argv);
/* The tests */
- test_read_valid_wired_connection ();
- test_write_wired_connection ();
+ g_test_add_func ("/keyfile/test_read_valid_wired_connection ", test_read_valid_wired_connection);
+ g_test_add_func ("/keyfile/test_write_wired_connection ", test_write_wired_connection);
- test_read_ip6_wired_connection ();
- test_write_ip6_wired_connection ();
+ g_test_add_func ("/keyfile/test_read_ip6_wired_connection ", test_read_ip6_wired_connection);
+ g_test_add_func ("/keyfile/test_write_ip6_wired_connection ", test_write_ip6_wired_connection);
- test_read_wired_mac_case ();
- test_read_mac_old_format ();
- test_read_mac_ib_old_format ();
+ g_test_add_func ("/keyfile/test_read_wired_mac_case ", test_read_wired_mac_case);
+ g_test_add_func ("/keyfile/test_read_mac_old_format ", test_read_mac_old_format);
+ g_test_add_func ("/keyfile/test_read_mac_ib_old_format ", test_read_mac_ib_old_format);
- test_read_valid_wireless_connection ();
- test_write_wireless_connection ();
+ g_test_add_func ("/keyfile/test_read_valid_wireless_connection ", test_read_valid_wireless_connection);
+ g_test_add_func ("/keyfile/test_write_wireless_connection ", test_write_wireless_connection);
- test_read_string_ssid ();
- test_write_string_ssid ();
+ g_test_add_func ("/keyfile/test_read_string_ssid ", test_read_string_ssid);
+ g_test_add_func ("/keyfile/test_write_string_ssid ", test_write_string_ssid);
- test_read_intlist_ssid ();
- test_write_intlist_ssid ();
+ g_test_add_func ("/keyfile/test_read_intlist_ssid ", test_read_intlist_ssid);
+ g_test_add_func ("/keyfile/test_write_intlist_ssid ", test_write_intlist_ssid);
- test_read_intlike_ssid ();
- test_write_intlike_ssid ();
+ g_test_add_func ("/keyfile/test_read_intlike_ssid ", test_read_intlike_ssid);
+ g_test_add_func ("/keyfile/test_write_intlike_ssid ", test_write_intlike_ssid);
- test_read_intlike_ssid_2 ();
- test_write_intlike_ssid_2 ();
+ g_test_add_func ("/keyfile/test_read_intlike_ssid_2 ", test_read_intlike_ssid_2);
+ g_test_add_func ("/keyfile/test_write_intlike_ssid_2 ", test_write_intlike_ssid_2);
- test_read_bt_dun_connection ();
- test_write_bt_dun_connection ();
+ g_test_add_func ("/keyfile/test_read_bt_dun_connection ", test_read_bt_dun_connection);
+ g_test_add_func ("/keyfile/test_write_bt_dun_connection ", test_write_bt_dun_connection);
- test_read_gsm_connection ();
- test_write_gsm_connection ();
+ g_test_add_func ("/keyfile/test_read_gsm_connection ", test_read_gsm_connection);
+ g_test_add_func ("/keyfile/test_write_gsm_connection ", test_write_gsm_connection);
- test_read_wired_8021x_tls_blob_connection ();
- test_read_wired_8021x_tls_bad_path_connection ();
+ g_test_add_func ("/keyfile/test_read_wired_8021x_tls_blob_connection ", test_read_wired_8021x_tls_blob_connection);
+ g_test_add_func ("/keyfile/test_read_wired_8021x_tls_bad_path_connection ", test_read_wired_8021x_tls_bad_path_connection);
- test_read_wired_8021x_tls_old_connection ();
- test_read_wired_8021x_tls_new_connection ();
- test_write_wired_8021x_tls_connection_path ();
- test_write_wired_8021x_tls_connection_blob ();
+ g_test_add_func ("/keyfile/test_read_wired_8021x_tls_old_connection ", test_read_wired_8021x_tls_old_connection);
+ g_test_add_func ("/keyfile/test_read_wired_8021x_tls_new_connection ", test_read_wired_8021x_tls_new_connection);
+ g_test_add_func ("/keyfile/test_write_wired_8021x_tls_connection_path ", test_write_wired_8021x_tls_connection_path);
+ g_test_add_func ("/keyfile/test_write_wired_8021x_tls_connection_blob ", test_write_wired_8021x_tls_connection_blob);
- test_read_infiniband_connection ();
- test_write_infiniband_connection ();
+ g_test_add_func ("/keyfile/test_read_infiniband_connection ", test_read_infiniband_connection);
+ g_test_add_func ("/keyfile/test_write_infiniband_connection ", test_write_infiniband_connection);
- test_read_bridge_main ();
- test_write_bridge_main ();
- test_read_bridge_component ();
- test_write_bridge_component ();
+ g_test_add_func ("/keyfile/test_read_bridge_main ", test_read_bridge_main);
+ g_test_add_func ("/keyfile/test_write_bridge_main ", test_write_bridge_main);
+ g_test_add_func ("/keyfile/test_read_bridge_component ", test_read_bridge_component);
+ g_test_add_func ("/keyfile/test_write_bridge_component ", test_write_bridge_component);
- test_read_new_wired_group_name ();
- test_write_new_wired_group_name ();
- test_read_new_wireless_group_names ();
- test_write_new_wireless_group_names ();
+ g_test_add_func ("/keyfile/test_read_new_wired_group_name ", test_read_new_wired_group_name);
+ g_test_add_func ("/keyfile/test_write_new_wired_group_name ", test_write_new_wired_group_name);
+ g_test_add_func ("/keyfile/test_read_new_wireless_group_names ", test_read_new_wireless_group_names);
+ g_test_add_func ("/keyfile/test_write_new_wireless_group_names ", test_write_new_wireless_group_names);
- test_read_missing_vlan_setting ();
- test_read_missing_id_uuid ();
+ g_test_add_func ("/keyfile/test_read_missing_vlan_setting ", test_read_missing_vlan_setting);
+ g_test_add_func ("/keyfile/test_read_missing_id_uuid ", test_read_missing_id_uuid);
- base = g_path_get_basename (argv[0]);
- fprintf (stdout, "%s: SUCCESS\n", base);
- g_free (base);
- return 0;
+ return g_test_run ();
}