From 7cb2a8aebca7cd898f2012b6c9eb0aa6bf0d18df Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Tue, 11 Mar 2008 12:22:47 +0000 Subject: Improve a bit the test and fix empathy_contact_run_until, data.ready was not set. svn path=/trunk/; revision=760 --- tests/contact-run-until-ready.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'tests') diff --git a/tests/contact-run-until-ready.c b/tests/contact-run-until-ready.c index ee7a692fb..50011bbc4 100644 --- a/tests/contact-run-until-ready.c +++ b/tests/contact-run-until-ready.c @@ -10,6 +10,7 @@ main (int argc, char **argv) EmpathyContactFactory *factory; McAccount *account; EmpathyContact *contact; + EmpathyContactReady ready_flags; g_type_init (); @@ -18,17 +19,18 @@ main (int argc, char **argv) contact = empathy_contact_factory_get_from_id (factory, account, "testman@jabber.belnet.be"); - g_print ("Contact handle=%d\n", empathy_contact_get_handle (contact)); - - empathy_contact_run_until_ready (contact, - EMPATHY_CONTACT_READY_HANDLE | - EMPATHY_CONTACT_READY_NAME, - NULL); - - g_print ("Contact ready: handle=%d alias=%s\n", + g_print ("Contact handle=%d alias=%s\n", empathy_contact_get_handle (contact), empathy_contact_get_name (contact)); + ready_flags = EMPATHY_CONTACT_READY_HANDLE | EMPATHY_CONTACT_READY_NAME; + empathy_contact_run_until_ready (contact, ready_flags, NULL); + + g_print ("Contact ready: handle=%d alias=%s ready=%d needed-ready=%d\n", + empathy_contact_get_handle (contact), + empathy_contact_get_name (contact), + empathy_contact_get_ready (contact), + ready_flags); g_object_unref (factory); g_object_unref (account); -- cgit