~ubuntu-branches/ubuntu/wily/alarm-clock-applet/wily

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
/*
 * test_list_entry.c -- Test for AlarmListEntry
 * 
 * Copyright (C) 2007-2008 Johannes H. Jensen <joh@pseudoberries.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.
 * 
 * Authors:
 * 		Johannes H. Jensen <joh@pseudoberries.com>
 */

#include <glib.h>

#include "list-entry.h"

static void
entry_dump (AlarmListEntry *entry)
{
	g_print ("ListEntry %p: ");
	if (entry != NULL)
		g_print ("name: '%s', data: '%s', icon: '%s'", entry->name, entry->data, entry->icon);
	g_print ("\n");
}

int main (void)
{
	AlarmListEntry *entry = NULL;
	GList *list = NULL, *l;
	GnomeVFSResult result;
	gchar *mime;
	guint i;
	
	// Test alarm list entry alloc
	entry = alarm_list_entry_new ("Name", "Some data", "Icon");
	entry_dump (entry);
	alarm_list_entry_free(entry);
	
	entry = alarm_list_entry_new ("Name", NULL, NULL);
	entry_dump (entry);
	alarm_list_entry_free(entry);
	
	// Test alarm list entry from file
	entry = alarm_list_entry_new_file("file:///usr/share/sounds/question.wav", &result, &mime);
	entry_dump (entry);
	g_print ("VFSResult: %s, MIME: %s\n", gnome_vfs_result_to_string(result), mime);
	alarm_list_entry_free (entry);
	g_free (mime);
	
	// Test alarm list
	list = alarm_list_entry_list_new ("file:///usr/share/sounds/", NULL);
	
	g_print ("\nGot %d entries: \n---\n", g_list_length(list));
	for (l = list, i = 0; l; l = l->next, i++) {
		entry = (AlarmListEntry *)l->data;
		g_print ("#%2d: ", i);
		entry_dump (entry);
	}
	
	alarm_list_entry_list_free (&list);
	
	g_print ("After list_free: %p\n", list);
	
	return 0;
}