ftp://ftp.redhat.com/pub/redhat/linux/rawhide/SRPMS/SRPMS/gnome-vfs2-2.3.8-1.src.rpm
[gnome-vfs-httpcaptive.git] / test / test-dirop.c
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2 /* test-unlink.c - Test program for unlink operation in the GNOME
3    Virtual File System.
4
5    Copyright (C) 1999 Free Software Foundation
6    Copyright (C) 2000 Eazel Inc.
7
8    The Gnome Library is free software; you can redistribute it and/or
9    modify it under the terms of the GNU Library General Public License as
10    published by the Free Software Foundation; either version 2 of the
11    License, or (at your option) any later version.
12
13    The Gnome Library is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    Library General Public License for more details.
17
18    You should have received a copy of the GNU Library General Public
19    License along with the Gnome Library; see the file COPYING.LIB.  If not,
20    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21    Boston, MA 02111-1307, USA.
22
23    Authors: 
24         Ettore Perazzoli <ettore@gnu.org> 
25         Ian McKellar <yakk@yakk.net.au>
26  */
27
28 #include <config.h>
29
30 #include <libgnomevfs/gnome-vfs-init.h>
31 #include <libgnomevfs/gnome-vfs-ops.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <unistd.h>
36
37 static void
38 show_result (GnomeVFSResult result, const gchar *what, const gchar *text_uri)
39 {
40         fprintf (stderr, "%s `%s': %s\n",
41                  what, text_uri, gnome_vfs_result_to_string (result));
42         if (result != GNOME_VFS_OK)
43                 exit (1);
44 }
45
46 int
47 main (int argc, char **argv)
48 {
49         GnomeVFSResult    result;
50         GnomeVFSURI      *uri;
51         gchar            *text_uri;
52
53         if (argc != 3 && argc != 4) {
54                 printf ("Usage: %s make <uri> [mode]\n       %s remove) <uri>\n", argv[0], argv[0]);
55                 return 1;
56         }
57
58         if (! gnome_vfs_init ()) {
59                 fprintf (stderr, "Cannot initialize gnome-vfs.\n");
60                 return 1;
61         }
62
63         uri = gnome_vfs_uri_new (argv[2]);
64         if (uri == NULL) {
65                 fprintf (stderr, "URI not valid.\n");
66                 return 1;
67         }
68
69         text_uri = gnome_vfs_uri_to_string (uri, GNOME_VFS_URI_HIDE_NONE);
70
71         if(!strcmp(argv[1], "make")) {
72                 int mode = 0755;
73
74                 if (argc == 4) {
75                         mode = strtol (argv[3], (char **)NULL, 8);
76                 }
77                 result = gnome_vfs_make_directory_for_uri (uri, mode);
78                 show_result (result, "make_directory", text_uri);
79         } else if(!strcmp(argv[1], "remove")) {
80                 result = gnome_vfs_remove_directory_from_uri (uri);
81                 show_result (result, "remove_directory", text_uri);
82         } else {
83                 fprintf (stderr, "Unknown directory operation `%s'\n", argv[1]);
84         }
85
86         g_free (text_uri);
87
88         return 0;
89 }