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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* 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.
*
* The Rhythmbox authors hereby grants permission for non-GPL compatible
* GStreamer plugins to be used and distributed together with GStreamer
* and Rhythmbox. This permission is above and beyond the permissions granted
* by the GPL license by which Rhythmbox is covered. If you modify this code
* you may extend this exception to your version of the code, but you are not
* obligated to do so. If you do not wish to do so, delete this exception
* statement from your 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 St, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/
#include "config.h"
#include <check.h>
#include <gtk/gtk.h>
#include "test-utils.h"
#include "rhythmdb.h"
#include "rhythmdb-tree.h"
#include "rb-debug.h"
#include "rb-util.h"
void
start_test_case (void)
{
fprintf (stderr, "\n>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n");
}
void
end_step (void)
{
while (gtk_events_pending ())
gtk_main_iteration_do (FALSE);
fprintf (stderr, "----------------------------------------------------------------\n");
}
void
end_test_case (void)
{
fprintf (stderr, "<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n");
}
gboolean waiting, signaled;
char *sig_name;
gulong sig_handler;
GObject *sig_object;
static void
mark_signal (void)
{
g_signal_handler_disconnect (sig_object, sig_handler);
sig_object = NULL;
sig_handler = 0;
if (signaled) {
rb_debug ("got signal '%s' multiple times", sig_name);
} else {
rb_debug ("got signal '%s'", sig_name);
signaled = TRUE;
if (waiting)
gtk_main_quit ();
}
}
void
set_waiting_signal (GObject *o, const char *name)
{
signaled = FALSE;
waiting = FALSE;
sig_name = g_strdup (name);
sig_object = o;
sig_handler = g_signal_connect (o, sig_name, G_CALLBACK (mark_signal), NULL);
}
void
wait_for_signal (void)
{
if (!signaled) {
rb_debug ("waiting for signal '%s'", sig_name);
waiting = TRUE;
gtk_main ();
} else {
rb_debug ("no need to wait for signal '%s', already received", sig_name);
}
g_free (sig_name);
sig_name = NULL;
}
/* common setup and teardown */
RhythmDB *db = NULL;
gboolean waiting_db, finalised_db;
void
test_rhythmdb_setup (void)
{
RhythmDBEntryType entry_type;
db = rhythmdb_tree_new ("test");
fail_unless (db != NULL, "failed to initialise DB");
rhythmdb_start_action_thread (db);
/* allow SONGs to be synced to for the tests */
entry_type = RHYTHMDB_ENTRY_TYPE_SONG;
entry_type->can_sync_metadata = (RhythmDBEntryCanSyncFunc)rb_true_function;
entry_type->sync_metadata = (RhythmDBEntrySyncFunc)rb_null_function;
}
void
test_rhythmdb_shutdown (void)
{
fail_unless (db != NULL, "failed to shutdown DB");
rhythmdb_shutdown (db);
/* release the reference, and wait until after finalisation */
g_object_weak_ref (G_OBJECT (db), (GWeakNotify)gtk_main_quit, NULL);
g_idle_add ((GSourceFunc)g_object_unref, db);
gtk_main ();
db = NULL;
}
void
set_entry_string (RhythmDB *db, RhythmDBEntry *entry, RhythmDBPropType prop, const char *value)
{
GValue v = {0,};
g_value_init (&v, G_TYPE_STRING);
g_value_set_string (&v, value);
rhythmdb_entry_set (db, entry, prop, &v);
g_value_unset (&v);
}
void
set_entry_ulong (RhythmDB *db, RhythmDBEntry *entry, RhythmDBPropType prop, gulong value)
{
GValue v = {0,};
g_value_init (&v, G_TYPE_ULONG);
g_value_set_ulong (&v, value);
rhythmdb_entry_set (db, entry, prop, &v);
g_value_unset (&v);
}
void
set_entry_hidden (RhythmDB *db, RhythmDBEntry *entry, gboolean hidden)
{
GValue v = {0,};
g_value_init (&v, G_TYPE_BOOLEAN);
g_value_set_boolean (&v, hidden);
rhythmdb_entry_set (db, entry, RHYTHMDB_PROP_HIDDEN, &v);
g_value_unset (&v);
}
|