File: test-misc.c

package info (click to toggle)
easytag 2.4.3-12
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,128 kB
  • sloc: ansic: 35,121; sh: 4,199; cpp: 991; xml: 714; makefile: 533
file content (273 lines) | stat: -rw-r--r-- 7,438 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/* EasyTAG - tag editor for audio files
 * Copyright (C) 2014-2016 David King <amigadave@amigadave.com>
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc., 51
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

#include "misc.h"

#include <glib/gstdio.h>

GtkWidget *MainWindow;
GSettings *MainSettings;

static void
misc_convert_duration (void)
{
    gsize i;
    gchar *time;

    static const struct
    {
        const gulong seconds;
        const gchar *result;
    } times[] = 
    {
        { 0, "0:00" },
        { 10, "0:10" },
        { 100, "1:40" },
        { 1000, "16:40" },
        { 10000, "2:46:40" },
        { 100000, "27:46:40" },
        { 1000000, "277:46:40" }
        /* TODO: Add more tests. */
    };

    for (i = 0; i < G_N_ELEMENTS (times); i++)
    {
        time = Convert_Duration (times[i].seconds);
        g_assert_cmpstr (time, ==, times[i].result);
        g_free (time);
    }
}

static void
misc_filename_prepare (void)
{
    gsize i;

    static const struct
    {
        const gchar *filename;
        const gchar *result_replace;
        const gchar *result;
    } filenames[] =
    {
        { "foo:bar", "foo-bar", "foo:bar" },
        { "foo" G_DIR_SEPARATOR_S "bar", "foo-bar", "foo-bar" },
        { "foo*bar", "foo+bar", "foo*bar" },
        { "foo?bar", "foo_bar", "foo?bar" },
        { "foo\"bar", "foo\'bar", "foo\"bar" },
        { "foo<bar", "foo(bar", "foo<bar" },
        { "foo>bar", "foo)bar", "foo>bar" },
        { "foo|bar", "foo-bar", "foo|bar" },
        { "foo|bar*baz", "foo-bar+baz", "foo|bar*baz" },
        { "foo.", "foo_", "foo." },
        { "foo ", "foo_", "foo " }
        /* TODO: Add more tests. */
    };

    for (i = 0; i < G_N_ELEMENTS (filenames); i++)
    {
        gchar *filename;

        filename = g_strdup (filenames[i].filename);

        /* Replace illegal characters. */
        et_filename_prepare (filename, TRUE);
        g_assert_cmpstr (filename, ==, filenames[i].result_replace);

        g_free (filename);

        filename = g_strdup (filenames[i].filename);

        /* Leave illegal characters unchanged. */
        et_filename_prepare (filename, FALSE);
        g_assert_cmpstr (filename, ==, filenames[i].result);

        g_free (filename);
    }
}

static void
misc_normalized_strcmp0 (void)
{
    static const gchar str1[] = "foo";
    static const gchar str2[] = "bar";
    static const gchar str3[] = "BAR";

    g_assert_cmpint (et_normalized_strcmp0 (NULL, NULL), ==, 0);
    g_assert_cmpint (et_normalized_strcmp0 (str1, NULL), >, 0);
    g_assert_cmpint (et_normalized_strcmp0 (NULL, str2), <, 0);
    g_assert_cmpint (et_normalized_strcmp0 (str1, str2), >, 0);
    g_assert_cmpint (et_normalized_strcmp0 (str2, str3), >, 0);
}

static void
misc_normalized_strcasecmp0 (void)
{
    gsize i;

    static const struct
    {
        const gchar *str1;
        const gchar *str2;
        const gint result;
    } strings[] =
    {
        { NULL, NULL, 0 },
        { "foo", NULL, 1 },
        { NULL, "bar", -1 },
        { "foo", "bar", -1 },
        { "FOO", "foo", 0 },
        { "foo", "FOO", 0 }
        /* TODO: Add more tests. */
    };

    for (i = 0; i < G_N_ELEMENTS (strings); i++)
    {
        g_assert_cmpint (et_normalized_strcasecmp0 (strings->str1,
                                                    strings->str2), ==,
                         strings->result);
    }
}

static void
misc_rename_file (void)
{
    gchar *filename1;
    gchar *filename2;
    gchar *filename3;
    gchar *basename;
    gchar *basename_upper;
    gchar *dirname;
    gint fd1;
    gint fd2;
    gint fd3;
    GError *error1 = NULL;
    GError *error2 = NULL;
    GError *error3 = NULL;

    fd1 = g_file_open_tmp ("EasyTAG-test1.XXXXXX", &filename1, &error1);
    fd2 = g_file_open_tmp ("EasyTAG-test2.XXXXXX", &filename2, &error2);
    g_assert_no_error (error1);
    g_assert_no_error (error2);

    g_close (fd1, &error1);
    g_close (fd2, &error2);
    g_assert_no_error (error1);
    g_assert_no_error (error2);

    /* Renaming to an existing filename should fail. */
    et_rename_file (filename1, filename2, &error1);
    et_rename_file (filename2, filename1, &error2);
    g_assert_error (error1, G_IO_ERROR, G_IO_ERROR_EXISTS);
    g_assert_error (error2, G_IO_ERROR, G_IO_ERROR_EXISTS);

    g_clear_error (&error1);
    g_clear_error (&error2);

    fd3 = g_file_open_tmp ("EasyTAG-test3.XXXXXX", &filename3, &error3);
    g_assert_no_error (error3);

    g_close (fd3, &error3);
    g_assert_no_error (error3);

    g_assert_cmpint (g_unlink (filename3), ==, 0);

    g_assert_cmpint (g_rename (filename2, filename3), ==, 0);

    /* Renaming to a new filename should succeed. */
    et_rename_file (filename1, filename2, &error1);
    et_rename_file (filename2, filename1, &error2);
    g_assert_no_error (error1);
    g_assert_no_error (error2);

    g_assert_cmpint (g_unlink (filename1), ==, 0);

    g_free (filename1);
    g_free (filename2);

    basename = g_path_get_basename (filename3);
    dirname = g_path_get_dirname (filename3);

    basename_upper = g_ascii_strup (basename, -1);
    g_free (basename);

    filename2 = g_build_filename (dirname, basename_upper, NULL);
    g_free (basename_upper);
    g_free (dirname);

    /* Renaming to a new filename, differing only by case, should succeed, even
     * in the case of a case-insensitive filesystem. */
    et_rename_file (filename3, filename2, &error3);
    g_assert_no_error (error3);

    g_assert_cmpint (g_unlink (filename2), ==, 0);

    g_free (filename2);
    g_free (filename3);
}

static void
misc_str_empty (void)
{
    gsize i;
    static const struct
    {
        const gchar *string;
        const gboolean empty;
    } strings[] =
    {
        { NULL, TRUE },
        { "", TRUE },
        { "\0a", TRUE },
        { "a", FALSE }
    };

    for (i = 0; i < G_N_ELEMENTS (strings); i++)
    {
        gint result;

        result = et_str_empty (strings[i].string);
        g_assert (strings[i].empty == result);
    }
}

static void
misc_undo_key (void)
{
    guint undo_key;

    undo_key = et_undo_key_new ();
    g_assert_cmpint (undo_key, >, 0U);
    g_assert_cmpint (undo_key, <, et_undo_key_new ());
}
int
main (int argc, char** argv)
{
    g_test_init (&argc, &argv, NULL);

    g_test_add_func ("/misc/convert-duration", misc_convert_duration);
    g_test_add_func ("/misc/filename-prepare", misc_filename_prepare);
    g_test_add_func ("/misc/normalized-strcmp0", misc_normalized_strcmp0);
    g_test_add_func ("/misc/normalized-strcasecmp0",
                     misc_normalized_strcasecmp0);
    g_test_add_func ("/misc/rename-file", misc_rename_file);
    g_test_add_func ("/misc/str-empty", misc_str_empty);
    g_test_add_func ("/misc/undo-key", misc_undo_key);

    return g_test_run ();
}