[folks] Add test for linking personas using the Tracker backend
- From: Raul Gutierrez Segales <raulgs src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [folks] Add test for linking personas using the Tracker backend
- Date: Fri, 1 Apr 2011 20:55:45 +0000 (UTC)
commit 4379835b5144c45700c3fb2471910484cb338b14
Author: Raul Gutierrez Segales <raul gutierrez segales collabora co uk>
Date: Mon Mar 28 11:52:08 2011 +0100
Add test for linking personas using the Tracker backend
tests/tracker/Makefile.am | 9 +
tests/tracker/link-personas.vala | 320 ++++++++++++++++++++++++++++++++++++++
2 files changed, 329 insertions(+), 0 deletions(-)
---
diff --git a/tests/tracker/Makefile.am b/tests/tracker/Makefile.am
index 5d11af8..fd8a18b 100644
--- a/tests/tracker/Makefile.am
+++ b/tests/tracker/Makefile.am
@@ -2,6 +2,7 @@ AM_CPPFLAGS = \
$(GLIB_CFLAGS) \
$(GEE_CFLAGS) \
$(TRACKER_SPARQL_CFLAGS) \
+ $(GCONF2_CFLAGS) \
-I$(top_srcdir)/folks \
-I$(top_srcdir)/backends/tracker/lib \
-I$(top_srcdir)/tests/lib \
@@ -17,6 +18,7 @@ LDADD = \
$(GLIB_LIBS) \
$(GEE_LIBS) \
$(TRACKER_SPARQL_LIBS) \
+ $(GCONF2_LIBS) \
-L$(top_srcdir)/backends/tracker/lib \
$(NULL)
@@ -35,6 +37,7 @@ AM_VALAFLAGS = \
--pkg folks-test \
--pkg folks-tracker \
--pkg tracker-sparql-0.10 \
+ --pkg gconf-2.0 \
--pkg tracker-test \
$(NULL)
@@ -86,6 +89,7 @@ noinst_PROGRAMS = \
set-notes \
set-birthday \
set-gender \
+ link-personas \
$(NULL)
backend_store_key_file=$(srcdir)/data/backend-tracker-only.ini
@@ -284,6 +288,10 @@ set_gender_SOURCES = \
set-gender.vala \
$(NULL)
+link_personas_SOURCES = \
+ link-personas.vala \
+ $(NULL)
+
CLEANFILES = \
*.pid \
*.address \
@@ -338,6 +346,7 @@ MAINTAINERCLEANFILES = \
set_notes_vala.stamp \
set_birthday_vala.stamp \
set_gender_vala.stamp \
+ link_personas_vala.stamp \
$(NULL)
EXTRA_DIST = \
diff --git a/tests/tracker/link-personas.vala b/tests/tracker/link-personas.vala
new file mode 100644
index 0000000..fe2a2b7
--- /dev/null
+++ b/tests/tracker/link-personas.vala
@@ -0,0 +1,320 @@
+/*
+ * Copyright (C) 2011 Collabora Ltd.
+ *
+ * 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/>.
+ *
+ * Authors: Raul Gutierrez Segales <raul gutierrez segales collabora co uk>
+ *
+ */
+
+using Tracker.Sparql;
+using TrackerTest;
+using Folks;
+using Gee;
+
+public class LinkPersonasTests : Folks.TestCase
+{
+ private GLib.MainLoop _main_loop;
+ private TrackerTest.Backend _tracker_backend;
+ private IndividualAggregator _aggregator;
+ private string _persona_fullname_1;
+ private string _persona_fullname_2;
+ private string _proto = "jabber";
+ private string _im_address_1 = "someone-1 jabber example org";
+ private string _im_address_2 = "someone-2 jabber example org";
+ private bool _linking_fired;
+ private bool _persona_found_1;
+ private bool _persona_found_2;
+ private string _persona_iid_1 = "";
+ private string _persona_iid_2 = "";
+ private GLib.List<Persona> _personas;
+ private int _removed_individuals = 0;
+ private string _folks_config_key = "/system/folks/backends/primary_store";
+ private unowned GConf.Client _gconf_client;
+ private Gee.HashMap<string, string> _linking_props;
+
+ public LinkPersonasTests ()
+ {
+ base ("LinkPersonasTests");
+
+ this._tracker_backend = new TrackerTest.Backend ();
+
+ this.add_test ("test linking personas", this.test_linking_personas);
+ }
+
+ public override void set_up ()
+ {
+ this._gconf_client = GConf.Client.get_default ();
+
+ /* We configure Tracker as the primary (writeable) store by
+ * setting the appropiate GConf key. */
+ try
+ {
+ GConf.Value val = new GConf.Value (GConf.ValueType.STRING);
+ val.set_string ("tracker");
+ this._gconf_client.set (this._folks_config_key, val);
+ }
+ catch (GLib.Error e)
+ {
+ warning ("Couldn't set primary store: %s\n", e.message);
+ }
+
+ /* FIXME: this set_up method takes care both of setting
+ * the connection with Tracker and adding the contacts
+ * needed for the tests. We might need to trigger those
+ * actions at separate points so we should decouple them. */
+ this._tracker_backend.set_up ();
+ }
+
+ public override void tear_down ()
+ {
+ this._tracker_backend.tear_down ();
+
+ /* Clean-up GConf config (although we are running our own instance
+ * lets do the house-keeping anyways). */
+ try
+ {
+ this._gconf_client.unset (this._folks_config_key);
+ }
+ catch (GLib.Error e)
+ {
+ warning ("Couldn't unset primary store: %s\n", e.message);
+ }
+ }
+
+ public void test_linking_personas ()
+ {
+ this._main_loop = new GLib.MainLoop (null, false);
+ this._persona_fullname_1 = "persona #1";
+ this._persona_fullname_2 = "persona #2";
+ this._personas = new GLib.List<Persona> ();
+
+ this._persona_found_1 = false;
+ this._persona_found_2 = false;
+ this._linking_fired = false;
+
+ this._linking_props = new Gee.HashMap<string, string> ();
+ this._linking_props.set ("prop1", this._im_address_1);
+ this._linking_props.set ("prop2", this._im_address_2);
+
+ this._test_linking_personas_async ();
+
+ /* Kill the main loop after 5 seconds: if the linked individual hasn't
+ * show up at this point then we've either seen an error or we've been
+ * too slow (which we can consider to be failure). */
+ Timeout.add_seconds (5, () =>
+ {
+ this._main_loop.quit ();
+ assert_not_reached ();
+ });
+
+ this._main_loop.run ();
+
+ /* Check we get the new individual (containing the linked
+ * personas) and that the previous ones were removed. */
+ assert (this._linking_props.size == 0);
+ assert (this._removed_individuals == 2);
+ }
+
+ private async void _test_linking_personas_async ()
+ {
+ var store = BackendStore.dup ();
+ yield store.prepare ();
+ this._aggregator = new IndividualAggregator ();
+ this._aggregator.individuals_changed.connect
+ (this._individuals_changed_cb);
+ try
+ {
+ yield this._aggregator.prepare ();
+
+ PersonaStore pstore = null;
+ foreach (var backend in store.enabled_backends)
+ {
+ pstore = backend.persona_stores.lookup ("tracker");
+ if (pstore != null)
+ break;
+ }
+ assert (pstore != null);
+
+ yield _add_personas (pstore);
+ }
+ catch (GLib.Error e)
+ {
+ GLib.warning ("Error when calling prepare: %s\n", e.message);
+ }
+ }
+
+ /* Here is how this test is expected to work:
+ * - we start by adding 2 personas
+ * - this should trigger individuals-changed with 2 new individuals
+ * - we ask the IndividualAggregator to link the 2 personas coming
+ * from those individuals
+ * - we wait for a new Individual which contains the linkable
+ * attributes of these 2 personas
+ */
+ private async void _add_personas (PersonaStore pstore)
+ {
+ HashTable<string, Value?> details1 = new HashTable<string, Value?>
+ (str_hash, str_equal);
+ Value? v1 = Value (typeof (HashTable<string, LinkedHashSet<string>>));
+ HashTable<string, LinkedHashSet<string>> im_addrs1 =
+ new HashTable<string, LinkedHashSet<string>> (null, null);
+ LinkedHashSet<string> addrs1 = new LinkedHashSet<string> ();
+ addrs1.add (this._im_address_1);
+ im_addrs1.insert (this._proto, addrs1);
+ v1.set_boxed (im_addrs1);
+ details1.insert ("im-addresses", (owned) v1);
+
+ Value? v2 = Value (typeof (string));
+ v2.set_string (this._persona_fullname_1);
+ details1.insert ("full-name", (owned) v2);
+
+ HashTable<string, Value?> details2 = new HashTable<string, Value?>
+ (str_hash, str_equal);
+ Value? v3 = Value (typeof (HashTable<string, LinkedHashSet<string>>));
+ HashTable<string, LinkedHashSet<string>> im_addrs2 =
+ new HashTable<string, LinkedHashSet<string>> (null, null);
+ LinkedHashSet<string> addrs2 = new LinkedHashSet<string> ();
+ addrs2.add (this._im_address_2);
+ im_addrs2.insert (this._proto, addrs2);
+ v3.set_boxed (im_addrs2);
+ details2.insert ("im-addresses", (owned) v3);
+
+ Value? v4 = Value (typeof (string));
+ v4.set_string (this._persona_fullname_2);
+ details2.insert ("full-name", (owned)v4);
+
+ try
+ {
+ yield this._aggregator.add_persona_from_details (null,
+ pstore, details1);
+
+ yield this._aggregator.add_persona_from_details (null,
+ pstore, details2);
+ }
+ catch (Folks.IndividualAggregatorError e)
+ {
+ GLib.warning ("[AddPersonaError] add_persona_from_details: %s\n",
+ e.message);
+ }
+ }
+
+ private void _individuals_changed_cb
+ (GLib.List<Individual>? added,
+ GLib.List<Individual>? removed,
+ string? message,
+ Persona? actor,
+ GroupDetails.ChangeReason reason)
+ {
+ foreach (unowned Individual i in added)
+ {
+ /* Lets listen to notifications from those individuals
+ * which aren't the default (Tracker) user */
+ if (!i.is_user)
+ {
+ this._check_personas (i);
+ i.notify["full-name"].connect (this._notify_cb);
+ i.notify["im-addresses"].connect (this._notify_cb);
+ }
+ }
+
+ if (removed != null)
+ this._removed_individuals += (int) removed.length ();
+ }
+
+ private void _notify_cb (Object individual_obj, ParamSpec ps)
+ {
+ Folks.Individual i = (Folks.Individual) individual_obj;
+ this._check_personas (i);
+ }
+
+ /* As mentioned in _add_personas here we actually check
+ * for the following events
+ *
+ * - spot the 2 individuals corresponding to the 2 personas we've added
+ * - when we've spotted these 2, we pack them in a list and feed that to
+ * IndividualAggregator#link_personas
+ * - this should fire a new individuals-changed event with a new individual
+ * which should be the linked individual if it contains the linking
+ * properties of the 2 linked personas.
+ */
+ private void _check_personas (Individual i)
+ {
+ if (i.full_name == this._persona_fullname_1 &&
+ this._persona_iid_1 == "")
+ {
+ this._persona_iid_1 = i.personas.nth_data (0).iid;
+ this._personas.prepend (i.personas.nth_data (0));
+ }
+ else if (i.full_name == this._persona_fullname_2 &&
+ this._persona_iid_2 == "")
+ {
+ this._persona_iid_2 = i.personas.nth_data (0).iid;
+ this._personas.prepend (i.personas.nth_data (0));
+ }
+ else if (i.personas.length () > 1)
+ {
+ /* Lets check if it contains all the linking properties */
+ foreach (var proto in i.im_addresses.get_keys ())
+ {
+ GLib.stdout.printf ("Got %s\n", proto);
+ var addrs = i.im_addresses.lookup (proto);
+ foreach (var a in addrs)
+ {
+ if (a == this._linking_props.get ("prop1"))
+ {
+ this._linking_props.unset ("prop1");
+ }
+ else if (a == this._linking_props.get ("prop2"))
+ {
+ this._linking_props.unset ("prop2");
+ }
+ }
+ }
+
+ if (this._linking_props.size == 0)
+ {
+ this._main_loop.quit ();
+ }
+ }
+
+ /* We can try linking the personas only once we've got the
+ * 2 initially created personas. */
+ if (this._personas.length () == 2 &&
+ this._linking_fired == false)
+ {
+ this._linking_fired = true;
+
+ /* FIXME: we need a way to sync with Tracker
+ * delayed events. */
+ Timeout.add_seconds (2, () =>
+ {
+ this._aggregator.link_personas (this._personas);
+ return false;
+ });
+ }
+ }
+}
+
+public int main (string[] args)
+{
+ Test.init (ref args);
+
+ TestSuite root = TestSuite.get_root ();
+ root.add_suite (new LinkPersonasTests ().get_suite ());
+
+ Test.run ();
+
+ return 0;
+}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]