helpers: implement CGDCONT reply parsing

New method to parse the PDP query reply, and build a list of structs with the
found info.
This commit is contained in:
Aleksander Morgado
2011-12-15 19:57:18 +01:00
parent d7f4a5e134
commit 5f4655c574
3 changed files with 141 additions and 1 deletions

View File

@@ -1177,6 +1177,57 @@ test_cind_response_moto_v3m (void *f, gpointer d)
test_cind_results ("Motorola V3m", reply, &expected[0], G_N_ELEMENTS (expected));
}
static void
test_cgdcont_results (const gchar *desc,
const gchar *reply,
MM3gppPdpContext *expected_results,
guint32 expected_results_len)
{
GList *l;
GError *error = NULL;
GList *results;
g_print ("\nTesting %s +CGDCONT response...\n", desc);
results = mm_3gpp_parse_pdp_query_response (reply, &error);
g_assert (results);
g_assert_no_error (error);
g_assert_cmpuint (g_list_length (results), ==, expected_results_len);
for (l = results; l; l = g_list_next (l)) {
MM3gppPdpContext *pdp = l->data;
gboolean found = FALSE;
guint i;
for (i = 0; !found && i < expected_results_len; i++) {
MM3gppPdpContext *expected;
expected = &expected_results[i];
if (pdp->cid == expected->cid) {
found = TRUE;
g_assert_cmpstr (pdp->pdp_type, ==, expected->pdp_type);
g_assert_cmpstr (pdp->apn, ==, expected->apn);
}
}
g_assert (found == TRUE);
}
mm_3gpp_pdp_context_list_free (results);
}
static void
test_cgdcont_response_nokia (void *f, gpointer d)
{
const gchar *reply = "+CGDCONT: 1,\"IP\",,,0,0";
static MM3gppPdpContext expected[] = {
{ 1, "IP", "" }
};
test_cgdcont_results ("Nokia", reply, &expected[0], G_N_ELEMENTS (expected));
}
static TestData *
test_data_new (void)
{
@@ -1297,6 +1348,8 @@ int main (int argc, char **argv)
item++;
}
g_test_suite_add (suite, TESTCASE (test_cgdcont_response_nokia, NULL));
result = g_test_run ();
test_data_free (data);