aboutsummaryrefslogtreecommitdiff
path: root/src/tests/test-modem-helpers.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2020-04-04 11:18:28 +0200
committerAleksander Morgado <aleksander@aleksander.es>2020-04-08 16:35:09 +0200
commit78cad902ef342d6da628f26e1282782aa8361316 (patch)
tree1ad8e46217e316363aa44d9d5d08c053c07b5fe6 /src/tests/test-modem-helpers.c
parent5b1b33a894e3677dd633f032d5d9a07931096719 (diff)
modem-helpers: remove unused supported capabilities filter
Diffstat (limited to 'src/tests/test-modem-helpers.c')
-rw-r--r--src/tests/test-modem-helpers.c94
1 files changed, 0 insertions, 94 deletions
diff --git a/src/tests/test-modem-helpers.c b/src/tests/test-modem-helpers.c
index f1b236bd..f991f023 100644
--- a/src/tests/test-modem-helpers.c
+++ b/src/tests/test-modem-helpers.c
@@ -3475,98 +3475,6 @@ test_supported_mode_filter (void *f, gpointer d)
}
/*****************************************************************************/
-
-static gboolean
-find_capability_combination (GArray *capabilities,
- MMModemCapability capability)
-{
- guint i;
-
- for (i = 0; i < capabilities->len; i++) {
- MMModemCapability capability_i;
-
- capability_i = g_array_index (capabilities, MMModemCapability, i);
- if (capability_i == capability)
- return TRUE;
- }
-
- return FALSE;
-}
-
-static void
-test_supported_capability_filter (void *f, gpointer d)
-{
- MMModemCapability capability;
- GArray *combinations;
- GArray *filtered;
-
- combinations = g_array_sized_new (FALSE, FALSE, sizeof (MMModemCapability), 6);
-
- /* GSM/UMTS only */
- capability = MM_MODEM_CAPABILITY_GSM_UMTS;
- g_array_append_val (combinations, capability);
- /* CDMA/EVDO only */
- capability = MM_MODEM_CAPABILITY_CDMA_EVDO;
- g_array_append_val (combinations, capability);
- /* GSM/UMTS and CDMA/EVDO */
- capability = (MM_MODEM_CAPABILITY_CDMA_EVDO | MM_MODEM_CAPABILITY_GSM_UMTS);
- g_array_append_val (combinations, capability);
- /* GSM/UMTS+LTE */
- capability = (MM_MODEM_CAPABILITY_GSM_UMTS | MM_MODEM_CAPABILITY_LTE);
- g_array_append_val (combinations, capability);
- /* CDMA/EVDO+LTE */
- capability = (MM_MODEM_CAPABILITY_CDMA_EVDO | MM_MODEM_CAPABILITY_LTE);
- g_array_append_val (combinations, capability);
- /* GSM/UMTS+CDMA/EVDO+LTE */
- capability = (MM_MODEM_CAPABILITY_GSM_UMTS | MM_MODEM_CAPABILITY_CDMA_EVDO | MM_MODEM_CAPABILITY_LTE);
- g_array_append_val (combinations, capability);
-
- /* Only GSM-UMTS supported */
- filtered = mm_filter_supported_capabilities (MM_MODEM_CAPABILITY_GSM_UMTS, combinations);
- g_assert_cmpuint (filtered->len, ==, 1);
- g_assert (find_capability_combination (filtered, MM_MODEM_CAPABILITY_GSM_UMTS));
- g_array_unref (filtered);
-
- /* Only CDMA-EVDO supported */
- filtered = mm_filter_supported_capabilities (MM_MODEM_CAPABILITY_CDMA_EVDO, combinations);
- g_assert_cmpuint (filtered->len, ==, 1);
- g_assert (find_capability_combination (filtered, MM_MODEM_CAPABILITY_CDMA_EVDO));
- g_array_unref (filtered);
-
- /* GSM-UMTS and CDMA-EVDO supported */
- filtered = mm_filter_supported_capabilities ((MM_MODEM_CAPABILITY_CDMA_EVDO |
- MM_MODEM_CAPABILITY_GSM_UMTS),
- combinations);
- g_assert_cmpuint (filtered->len, ==, 3);
- g_assert (find_capability_combination (filtered, MM_MODEM_CAPABILITY_CDMA_EVDO));
- g_assert (find_capability_combination (filtered, MM_MODEM_CAPABILITY_GSM_UMTS));
- g_assert (find_capability_combination (filtered, (MM_MODEM_CAPABILITY_GSM_UMTS |
- MM_MODEM_CAPABILITY_CDMA_EVDO)));
- g_array_unref (filtered);
-
- /* GSM-UMTS, CDMA-EVDO and LTE supported */
- filtered = mm_filter_supported_capabilities ((MM_MODEM_CAPABILITY_CDMA_EVDO |
- MM_MODEM_CAPABILITY_GSM_UMTS |
- MM_MODEM_CAPABILITY_LTE),
- combinations);
- g_assert_cmpuint (filtered->len, ==, 6);
- g_assert (find_capability_combination (filtered, MM_MODEM_CAPABILITY_CDMA_EVDO));
- g_assert (find_capability_combination (filtered, MM_MODEM_CAPABILITY_GSM_UMTS));
- g_assert (find_capability_combination (filtered, (MM_MODEM_CAPABILITY_GSM_UMTS |
- MM_MODEM_CAPABILITY_CDMA_EVDO)));
- g_assert (find_capability_combination (filtered, (MM_MODEM_CAPABILITY_GSM_UMTS |
- MM_MODEM_CAPABILITY_LTE)));
- g_assert (find_capability_combination (filtered, (MM_MODEM_CAPABILITY_CDMA_EVDO |
- MM_MODEM_CAPABILITY_LTE)));
- g_assert (find_capability_combination (filtered, (MM_MODEM_CAPABILITY_GSM_UMTS |
- MM_MODEM_CAPABILITY_CDMA_EVDO |
- MM_MODEM_CAPABILITY_LTE)));
- g_array_unref (filtered);
-
- g_array_unref (combinations);
-}
-
-/*****************************************************************************/
/* Test +CCLK responses */
typedef struct {
@@ -4721,8 +4629,6 @@ int main (int argc, char **argv)
g_test_suite_add (suite, TESTCASE (test_supported_mode_filter, NULL));
- g_test_suite_add (suite, TESTCASE (test_supported_capability_filter, NULL));
-
g_test_suite_add (suite, TESTCASE (test_cclk_response, NULL));
g_test_suite_add (suite, TESTCASE (test_crsm_response, NULL));