aboutsummaryrefslogtreecommitdiffstats
path: root/libical/src/test/testclassify.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@src.gnome.org>2000-12-12 06:07:10 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2000-12-12 06:07:10 +0800
commit1a8645d8b85f46d34ff24f1f7bdc69bfd32282d4 (patch)
treee6bb5fd749b39ef9a0c2f29353986d9e9854c8b6 /libical/src/test/testclassify.c
parent23be726b6025c8e1a656840903da15f7d1f3fb37 (diff)
downloadgsoc2013-evolution-1a8645d8b85f46d34ff24f1f7bdc69bfd32282d4.tar
gsoc2013-evolution-1a8645d8b85f46d34ff24f1f7bdc69bfd32282d4.tar.gz
gsoc2013-evolution-1a8645d8b85f46d34ff24f1f7bdc69bfd32282d4.tar.bz2
gsoc2013-evolution-1a8645d8b85f46d34ff24f1f7bdc69bfd32282d4.tar.lz
gsoc2013-evolution-1a8645d8b85f46d34ff24f1f7bdc69bfd32282d4.tar.xz
gsoc2013-evolution-1a8645d8b85f46d34ff24f1f7bdc69bfd32282d4.tar.zst
gsoc2013-evolution-1a8645d8b85f46d34ff24f1f7bdc69bfd32282d4.zip
Initial revision
svn path=/trunk/; revision=6915
Diffstat (limited to 'libical/src/test/testclassify.c')
-rw-r--r--libical/src/test/testclassify.c157
1 files changed, 157 insertions, 0 deletions
diff --git a/libical/src/test/testclassify.c b/libical/src/test/testclassify.c
new file mode 100644
index 0000000000..821baac251
--- /dev/null
+++ b/libical/src/test/testclassify.c
@@ -0,0 +1,157 @@
+/* -*- Mode: C -*-
+ ======================================================================
+ FILE: testclassify.c
+ CREATOR: eric 11 February 2000
+
+ $Id$
+ $Locker$
+
+ (C) COPYRIGHT 2000 Eric Busboom
+ http://www.softwarestudio.org
+
+ The contents of this file are subject to the Mozilla Public License
+ Version 1.0 (the "License"); you may not use this file except in
+ compliance with the License. You may obtain a copy of the License at
+ http://www.mozilla.org/MPL/
+
+ Software distributed under the License is distributed on an "AS IS"
+ basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+ the License for the specific language governing rights and
+ limitations under the License.
+
+ The Original Code is eric. The Initial Developer of the Original
+ Code is Eric Busboom
+
+
+ ======================================================================*/
+
+#include <stdio.h> /* for printf */
+#include "ical.h"
+#include <errno.h>
+#include <string.h> /* For strerror */
+#include "icalset.h"
+#include "icalclassify.h"
+#include "icalssutil.h"
+
+
+struct class_map {
+ ical_class class;
+ char *str;
+} class_map[] = {
+ {ICAL_NO_CLASS,"No class"},
+ {ICAL_PUBLISH_NEW_CLASS,"New Publish"},
+ {ICAL_PUBLISH_UPDATE_CLASS,"Update Publish"},
+ {ICAL_REQUEST_NEW_CLASS,"New request"},
+ {ICAL_REQUEST_UPDATE_CLASS,"Update"},
+ {ICAL_REQUEST_RESCHEDULE_CLASS,"Reschedule"},
+ {ICAL_REQUEST_DELEGATE_CLASS,"Delegate"},
+ {ICAL_REQUEST_NEW_ORGANIZER_CLASS,"New Organizer"},
+ {ICAL_REQUEST_FORWARD_CLASS,"Forward"},
+ {ICAL_REQUEST_STATUS_CLASS,"Status request"},
+ {ICAL_REPLY_ACCEPT_CLASS,"Accept reply"},
+ {ICAL_REPLY_DECLINE_CLASS,"Decline reply"},
+ {ICAL_REPLY_CRASHER_ACCEPT_CLASS,"Crasher's accept reply"},
+ {ICAL_REPLY_CRASHER_DECLINE_CLASS,"Crasher's decline reply"},
+ {ICAL_ADD_INSTANCE_CLASS,"Add instance"},
+ {ICAL_CANCEL_EVENT_CLASS,"Cancel event"},
+ {ICAL_CANCEL_INSTANCE_CLASS,"Cancel instance"},
+ {ICAL_CANCEL_ALL_CLASS,"Cancel all instances"},
+ {ICAL_REFRESH_CLASS,"Refresh"},
+ {ICAL_COUNTER_CLASS,"Counter"},
+ {ICAL_DECLINECOUNTER_CLASS,"Decline counter"},
+ {ICAL_MALFORMED_CLASS,"Malformed"},
+ {ICAL_OBSOLETE_CLASS,"Obsolete"},
+ {ICAL_MISSEQUENCED_CLASS,"Missequenced"},
+ {ICAL_UNKNOWN_CLASS,"Unknown"}
+};
+
+char* find_class_string(ical_class class)
+{
+ int i;
+
+ for (i = 0;class_map[i].class != ICAL_UNKNOWN_CLASS;i++){
+ if (class_map[i].class == class){
+ return class_map[i].str;
+ }
+ }
+
+ return "Unknown";
+}
+
+
+int main(int argc, char* argv[])
+{
+ icalcomponent *c;
+ int i=0;
+
+ icalset* f = icalset_new_file("../../test-data/incoming.ics");
+ icalset* cal = icalset_new_file("../../test-data/calendar.ics");
+
+ assert(f!= 0);
+ assert(cal!=0);
+
+
+ /* Foreach incoming message */
+ for(c=icalset_get_first_component(f);c!=0;
+ c=icalset_get_next_component(f)){
+
+ ical_class class;
+ icalcomponent *match;
+ icalcomponent *inner = icalcomponent_get_first_real_component(c);
+ icalcomponent *p;
+ const char *this_uid;
+ const char *i_x_note=0;
+ const char *c_x_note=0;
+
+ i++;
+
+ if(inner == 0){
+ continue;
+ }
+
+ p = icalcomponent_get_first_property(inner,ICAL_UID_PROPERTY);
+ this_uid = icalproperty_get_uid(p);
+
+ assert(this_uid != 0);
+
+ /* Find a booked component that is matched to the incoming
+ message, based on the incoming component's UID, SEQUENCE
+ and RECURRENCE-ID*/
+
+ match = icalset_fetch(cal,this_uid);
+
+ class = icalclassify(c,match,"A@example.com");
+
+ for(p = icalcomponent_get_first_property(c,ICAL_X_PROPERTY);
+ p!= 0;
+ p = icalcomponent_get_next_property(c,ICAL_X_PROPERTY)){
+ if(strcmp(icalproperty_get_x_name(p),"X-LIC-NOTE")==0){
+ i_x_note = icalproperty_get_x(p);
+ }
+ }
+
+
+ if(i_x_note == 0){
+ i_x_note = "None";
+ }
+
+ for(p = icalcomponent_get_first_property(match,ICAL_X_PROPERTY);
+ p!= 0;
+ p = icalcomponent_get_next_property(match,ICAL_X_PROPERTY)){
+ if(strcmp(icalproperty_get_x_name(p),"X-LIC-NOTE")==0){
+ c_x_note = icalproperty_get_x(p);
+ }
+ }
+
+ if(c_x_note == 0){
+ c_x_note = "None";
+ }
+
+
+ printf("Test %d\nIncoming: %s\nMatched: %s\nClassification: %s\n\n",i,i_x_note,c_x_note,find_class_string(class));
+ }
+
+ return 0;
+}
+
+