
Some quectel devices, like the EC25 have a non-standard additional '3' mode value: 0: Disable automatic time zone update via NITZ 1: Enable automatic time zone update via NITZ 3: Enable automatic time zone update via NITZ and update LOCAL time to RTC
94 lines
3.1 KiB
C
94 lines
3.1 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details:
|
|
*
|
|
* Copyright (C) 2020 Aleksander Morgado <aleksander@aleksander.es>
|
|
*/
|
|
|
|
#include <glib.h>
|
|
#include <glib-object.h>
|
|
#include <locale.h>
|
|
|
|
#include <ModemManager.h>
|
|
#define _LIBMM_INSIDE_MM
|
|
#include <libmm-glib.h>
|
|
#include <math.h>
|
|
|
|
#include "mm-log-test.h"
|
|
#include "mm-modem-helpers.h"
|
|
#include "mm-modem-helpers-quectel.h"
|
|
|
|
/*****************************************************************************/
|
|
/* Test ^CTZU test responses */
|
|
|
|
typedef struct {
|
|
const gchar *response;
|
|
gboolean expect_supports_disable;
|
|
gboolean expect_supports_enable;
|
|
gboolean expect_supports_enable_update_rtc;
|
|
} TestCtzuResponse;
|
|
|
|
static const TestCtzuResponse test_ctzu_response[] = {
|
|
{ "+CTZU: (0,1)", TRUE, TRUE, FALSE },
|
|
{ "+CTZU: (0,1,3)", TRUE, TRUE, TRUE },
|
|
};
|
|
|
|
static void
|
|
common_test_ctzu (const gchar *response,
|
|
gboolean expect_supports_disable,
|
|
gboolean expect_supports_enable,
|
|
gboolean expect_supports_enable_update_rtc)
|
|
{
|
|
g_autoptr(GError) error = NULL;
|
|
gboolean res;
|
|
gboolean supports_disable = FALSE;
|
|
gboolean supports_enable = FALSE;
|
|
gboolean supports_enable_update_rtc = FALSE;
|
|
|
|
res = mm_quectel_parse_ctzu_test_response (response,
|
|
NULL,
|
|
&supports_disable,
|
|
&supports_enable,
|
|
&supports_enable_update_rtc,
|
|
&error);
|
|
g_assert_no_error (error);
|
|
g_assert (res);
|
|
|
|
g_assert_cmpuint (expect_supports_disable, ==, supports_disable);
|
|
g_assert_cmpuint (expect_supports_enable, ==, supports_enable);
|
|
g_assert_cmpuint (expect_supports_enable_update_rtc, ==, supports_enable_update_rtc);
|
|
}
|
|
|
|
static void
|
|
test_ctzu (void)
|
|
{
|
|
guint i;
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (test_ctzu_response); i++)
|
|
common_test_ctzu (test_ctzu_response[i].response,
|
|
test_ctzu_response[i].expect_supports_disable,
|
|
test_ctzu_response[i].expect_supports_enable,
|
|
test_ctzu_response[i].expect_supports_enable_update_rtc);
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
int main (int argc, char **argv)
|
|
{
|
|
setlocale (LC_ALL, "");
|
|
|
|
g_test_init (&argc, &argv, NULL);
|
|
|
|
g_test_add_func ("/MM/quectel/ctzu", test_ctzu);
|
|
|
|
return g_test_run ();
|
|
}
|