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
|
/*
* Copyright (C) 2020 Red Hat, Inc.
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <glib.h>
#include "libphodav/phodav.h"
#define PORT 8080
static void
create_test_file (const gchar *path)
{
GFile *f = g_file_new_for_path (path);
GFileOutputStream *out = g_file_replace (f, NULL, FALSE, G_FILE_CREATE_NONE, NULL, NULL);
g_output_stream_printf (G_OUTPUT_STREAM (out), NULL, NULL, NULL, "test data");
g_object_unref (out);
g_object_unref (f);
}
/* Taken from phodav-method-delete.c and simplified */
static void
delete_file_recursive (GFile *file)
{
GFileEnumerator *e;
e = g_file_enumerate_children (file, "standard::*", G_FILE_QUERY_INFO_NONE, NULL, NULL);
if (e)
{
while (TRUE)
{
GFileInfo *info = g_file_enumerator_next_file (e, NULL, NULL);
if (!info)
break;
GFile *del = g_file_get_child (file, g_file_info_get_name (info));
delete_file_recursive (del);
g_object_unref (del);
g_object_unref (info);
}
g_file_enumerator_close (e, NULL, NULL);
g_clear_object (&e);
}
g_file_delete (file, NULL, NULL);
}
static gboolean
stdin_watch (GIOChannel *source, GIOCondition condition, gpointer data)
{
g_debug ("stdin condition %d, quitting", condition);
GMainLoop *loop = data;
g_main_loop_quit (loop);
return G_SOURCE_REMOVE;
}
/* This is basically a very stripped-down version of chezdav
* for the purpose of testing PhodavVirtualDir.
*
* It creates a folder that acts as the "real" root and one virtual dir "/virtual"
* inside it - so the setup is similar to the one used by spice-gtk */
int
main (int argc, char *argv[])
{
gboolean quit_on_stdin = FALSE;
if (argc >= 2 && !g_strcmp0 (argv[1], "--quit-on-stdin")) {
quit_on_stdin = TRUE;
}
GFile *root_dir = g_file_new_for_path ("./phodav-virtual-root");
GFile *real_dir = g_file_get_child (root_dir, "real");
/* clean-up after any previous tests */
delete_file_recursive (root_dir);
/* setup local dir structure */
g_assert_true (g_file_make_directory (root_dir, NULL, NULL));
g_assert_true (g_file_make_directory (real_dir, NULL, NULL));
create_test_file ("./phodav-virtual-root/test.txt");
/* setup virtual dir structure */
PhodavVirtualDir *root = phodav_virtual_dir_new_root ();
phodav_virtual_dir_root_set_real (root, "./phodav-virtual-root");
PhodavVirtualDir *virtual_dir = phodav_virtual_dir_new_dir (root, "/virtual", NULL);
phodav_virtual_dir_attach_real_child (virtual_dir, real_dir);
PhodavServer *phodav = phodav_server_new_for_root_file (G_FILE(root));
g_object_unref (virtual_dir);
g_object_unref (real_dir);
g_object_unref (root_dir);
g_object_unref (root);
SoupServer *server = phodav_server_get_soup_server (phodav);
GError *error = NULL;
if (!soup_server_listen_all (server, PORT, 0, &error))
{
g_printerr ("Failed to listen on port %d: %s\n", PORT, error->message);
g_error_free (error);
return 1;
}
GMainLoop *loop = g_main_loop_new (NULL, FALSE);
if (quit_on_stdin) {
GIOChannel *stdin_channel;
#ifdef G_OS_WIN32
stdin_channel = g_io_channel_win32_new_fd (0);
#else
stdin_channel = g_io_channel_unix_new (0);
#endif
g_io_add_watch (stdin_channel, G_IO_IN | G_IO_HUP | G_IO_ERR, stdin_watch, loop);
g_io_channel_unref (stdin_channel);
}
g_print ("OK\n");
g_main_loop_run (loop);
g_main_loop_unref (loop);
g_object_unref (phodav);
return 0;
}
|