]> saetta.ns0.it Git - solipa/libsolipa/commitdiff
Aggiunto il test per GDateTime.
authorAndrea Zagli <azagli@libero.it>
Mon, 4 Jul 2011 13:16:45 +0000 (15:16 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 4 Jul 2011 13:16:45 +0000 (15:16 +0200)
NOTA BENE: sotto GNU/Linux non trovati i problemi di time zone del
commit precedente.

.gitignore
src/utils.c
tests/Makefile.am
tests/utils_gdatetime.c [new file with mode: 0644]

index a4ab5a98214fa3ca4d4503ee1cec7f51a5cff99c..d0b2e54c95e161ae76a3a27ab720c227e21a3940 100644 (file)
@@ -55,6 +55,7 @@ tests/progresswindow
 tests/utils
 tests/utils_codfisc_piva
 tests/utils_format_money
+tests/utils_gdatetime
 tests/utils_infobar
 tests/utils_round
 *.csv
index 91c0865703ebb586b4111a25fc527640149a0256..df5ce0e585b8b706a78502ab4d15ab19f8823fec 100644 (file)
@@ -647,12 +647,12 @@ GDateTime
        ret = NULL;
        if (tm_data != NULL)
                {
-                       ret = g_date_time_new_utc (tm_data->tm_year + 1900,
-                                                  tm_data->tm_mon + 1,
-                                                  tm_data->tm_mday,
-                                                  tm_data->tm_hour,
-                                                  tm_data->tm_min,
-                                                  tm_data->tm_sec);
+                       ret = g_date_time_new_local (tm_data->tm_year + 1900,
+                                                    tm_data->tm_mon + 1,
+                                                    tm_data->tm_mday,
+                                                    tm_data->tm_hour,
+                                                    tm_data->tm_min,
+                                                    tm_data->tm_sec);
                }
 
        return ret;
@@ -685,28 +685,7 @@ const gchar
 
        if (tm_data != NULL)
                {
-                       if (format == NULL)
-                               {
-                                       _format = g_strdup ("%F %R:%S");
-                               }
-                       else
-                               {
-                                       _format = g_strstrip (g_strdup (format));
-                                       if (g_strcmp0 (_format, "") == 0
-                                           || g_strcmp0 (_format, "datetime") == 0)
-                                               {
-                                                       _format = g_strdup ("%F %R:%S");
-                                               }
-                                       else if (g_strcmp0 (_format, "date") == 0)
-                                               {
-                                                       _format = g_strdup ("%F");
-                                               }
-                                       else if (g_strcmp0 (_format, "time") == 0)
-                                               {
-                                                       _format = g_strdup ("%R:%S");
-                                               }
-                               }
-                       ret = g_strdup_printf ("'%s'", g_date_time_format (solipa_tm_to_gdatetime (tm_data), _format));
+                       ret = solipa_gdatetime_to_sql (solipa_tm_to_gdatetime (tm_data), _format);
                }
 
        return ret;
@@ -862,12 +841,12 @@ GDateTime
        g_free (new_format);
        g_free (new_str);
 
-       ret = g_date_time_new_utc (year,
-                                  month,
-                                  day,
-                                  hour,
-                                  minute,
-                                  seconds);
+       ret = g_date_time_new_local (year,
+                                    month,
+                                    day,
+                                    hour,
+                                    minute,
+                                    seconds);
 
        return ret;
 }
index da8ccfd2dc0a39f4cc33b6c18da231282943a065..fe29ea6649d586c52a788c83a75dcdd282d4bd27 100644 (file)
@@ -17,5 +17,6 @@ noinst_PROGRAMS = allegato \
                   utils \
                   utils_codfisc_piva \
                   utils_format_money \
+                  utils_gdatetime \
                   utils_infobar \
                   utils_round
diff --git a/tests/utils_gdatetime.c b/tests/utils_gdatetime.c
new file mode 100644 (file)
index 0000000..457e356
--- /dev/null
@@ -0,0 +1,49 @@
+/*
+ * Copyright (C) 2011 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include <solipa.h>
+#include <utils.h>
+
+int
+main (int argc, char *argv[])
+{
+       GDateTime *gdatetime;
+
+       g_type_init ();
+
+       if (argc == 3)
+               {
+                       gdatetime = solipa_get_gdatetime_from_string (argv[1], argv[2]);
+               }
+       else
+               {
+                       g_message ("Usage: utils_gdatetime <date time string> <date time format string>");
+                       return 0;
+               }
+
+       if (gdatetime == NULL)
+               {
+                       g_message ("Unabel to get a GDateTime object from the string «%s».", argv[1]);
+                       return 0;
+               }
+
+       g_message ("g_date_time_format %s", g_date_time_format (gdatetime, "%d/%m/%Y %H.%M.%S"));
+       g_message ("solipa_gdatetime_to_sql %s", solipa_gdatetime_to_sql (gdatetime, "datetime"));
+
+       return 0;
+}