chiark / gitweb /
Start on 'settings' window. Currently disabled as it's not very
[disorder] / lib / t-filepart.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2005, 2007, 2008 Richard Kettlewell
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20 #include "test.h"
21
22 void test_filepart(void) {
23   fprintf(stderr, "test_filepart\n");
24   check_string(d_dirname("/"), "/");
25   check_string(d_dirname("////"), "/");
26   check_string(d_dirname("/spong"), "/");
27   check_string(d_dirname("////spong"), "/");
28   check_string(d_dirname("/foo/bar"), "/foo");
29   check_string(d_dirname("////foo/////bar"), "////foo");
30   check_string(d_dirname("./bar"), ".");
31   check_string(d_dirname(".//bar"), ".");
32   check_string(d_dirname("."), ".");
33   check_string(d_dirname(".."), ".");
34   check_string(d_dirname("../blat"), "..");
35   check_string(d_dirname("..//blat"), "..");
36   check_string(d_dirname("wibble"), ".");
37   check_string(extension("foo.c"), ".c");
38   check_string(extension(".c"), ".c");
39   check_string(extension("."), ".");
40   check_string(extension("foo"), "");
41   check_string(extension("./foo"), "");
42   check_string(extension("./foo.c"), ".c");
43   check_string(strip_extension("foo.c"), "foo");
44   check_string(strip_extension("foo.mp3"), "foo");
45   check_string(strip_extension("foo.---"), "foo.---");
46   check_string(strip_extension("foo.---xyz"), "foo.---xyz");
47   check_string(strip_extension("foo.bar/wibble.spong"), "foo.bar/wibble");
48 }
49
50 /*
51 Local Variables:
52 c-basic-offset:2
53 comment-column:40
54 fill-column:79
55 indent-tabs-mode:nil
56 End:
57 */