[folks] e-d-s: test setting is-favourite property
- From: Raul Gutierrez Segales <raulgs src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [folks] e-d-s: test setting is-favourite property
- Date: Tue, 25 Oct 2011 21:22:12 +0000 (UTC)
commit 66a18236c6a0c94c12f86a649633d665aca3fdbc
Author: Raul Gutierrez Segales <rgs collabora co uk>
Date: Tue Oct 25 17:18:41 2011 +0100
e-d-s: test setting is-favourite property
Helps: https://bugzilla.gnome.org/show_bug.cgi?id=660908
tests/eds/Makefile.am | 6 ++
tests/eds/set-is-favourite.vala | 160 +++++++++++++++++++++++++++++++++++++++
2 files changed, 166 insertions(+), 0 deletions(-)
---
diff --git a/tests/eds/Makefile.am b/tests/eds/Makefile.am
index 00dbc46..a1ffe10 100644
--- a/tests/eds/Makefile.am
+++ b/tests/eds/Makefile.am
@@ -73,6 +73,7 @@ noinst_PROGRAMS = \
set-roles \
change-primary-store \
link-personas-diff-stores \
+ set-is-favourite \
$(NULL)
RUN_WITH_PRIVATE_BUS = $(top_srcdir)/tests/tools/with-session-bus-eds.sh
@@ -211,6 +212,10 @@ link_personas_diff_stores_SOURCES = \
link-personas-diff-stores.vala \
$(NULL)
+set_is_favourite_SOURCES = \
+ set-is-favourite.vala \
+ $(NULL)
+
CLEANFILES = \
*.pid \
*.address \
@@ -249,6 +254,7 @@ MAINTAINERCLEANFILES = \
set_roles_vala.stamp \
change_primary_store_vala.stamp \
link_personas_diff_stores_vala.stamp \
+ set_is_favourite_vala.stamp \
$(NULL)
EXTRA_DIST = \
diff --git a/tests/eds/set-is-favourite.vala b/tests/eds/set-is-favourite.vala
new file mode 100644
index 0000000..99af8c3
--- /dev/null
+++ b/tests/eds/set-is-favourite.vala
@@ -0,0 +1,160 @@
+/*
+ * 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 EdsTest;
+using Folks;
+using Gee;
+
+public class SetIsFavouriteTests : Folks.TestCase
+{
+ private EdsTest.Backend _eds_backend;
+ private IndividualAggregator _aggregator;
+ private GLib.MainLoop _main_loop;
+ private bool _is_favourite_before_update;
+ private bool _is_favourite_after_update;
+
+ public SetIsFavouriteTests ()
+ {
+ base ("SetIsFavourite");
+
+ this._eds_backend = new EdsTest.Backend ();
+
+ this.add_test ("setting is favourite on e-d-s persona",
+ this.test_set_favourite);
+ }
+
+ public override void set_up ()
+ {
+ this._eds_backend.set_up ();
+ }
+
+ public override void tear_down ()
+ {
+ this._eds_backend.tear_down ();
+ }
+
+ void test_set_favourite ()
+ {
+ Gee.HashMap<string, Value?> c1 = new Gee.HashMap<string, Value?> ();
+ this._main_loop = new GLib.MainLoop (null, false);
+ Value? v;
+
+ this._is_favourite_before_update = true;
+ this._is_favourite_after_update = false;
+
+ this._eds_backend.reset ();
+
+ v = Value (typeof (string));
+ v.set_string ("juanito from mallorca");
+ c1.set ("full_name", (owned) v);
+ this._eds_backend.add_contact (c1);
+
+ this._test_set_is_favourite_async ();
+
+ Timeout.add_seconds (5, () =>
+ {
+ this._main_loop.quit ();
+ assert_not_reached ();
+ });
+
+ this._main_loop.run ();
+
+ assert (!this._is_favourite_before_update);
+ assert (this._is_favourite_after_update);
+ }
+
+ private async void _test_set_is_favourite_async ()
+ {
+ yield this._eds_backend.commit_contacts_to_addressbook ();
+
+ var store = BackendStore.dup ();
+ yield store.prepare ();
+ this._aggregator = new IndividualAggregator ();
+ this._aggregator.individuals_changed_detailed.connect (
+ this._individuals_changed_cb);
+ try
+ {
+ yield this._aggregator.prepare ();
+ }
+ catch (GLib.Error e)
+ {
+ GLib.warning ("Error when calling prepare: %s", e.message);
+ }
+ }
+
+ private void _individuals_changed_cb (
+ MultiMap<Individual?, Individual?> changes)
+ {
+ var added = changes.get_values ();
+ var removed = changes.get_keys ();
+
+ foreach (Individual i in added)
+ {
+ assert (i != null);
+
+ var name = (Folks.NameDetails) i;
+
+ if (name.full_name == "juanito from mallorca")
+ {
+ i.notify["is-favourite"].connect (this._is_favourite_changed_cb);
+ if (!i.is_favourite)
+ {
+ this._is_favourite_before_update = false;
+ }
+
+ foreach (var p in i.personas)
+ {
+ ((FavouriteDetails) p).is_favourite = true;
+ }
+ }
+ }
+
+ assert (removed.size == 1);
+
+ foreach (var i in removed)
+ {
+ assert (i == null);
+ }
+ }
+
+ private void _is_favourite_changed_cb (
+ Object individual_obj,
+ ParamSpec ps)
+ {
+ Folks.Individual i = (Folks.Individual) individual_obj;
+ if (i.is_favourite)
+ {
+ this._is_favourite_after_update = true;
+ this._main_loop.quit ();
+ }
+ }
+}
+
+public int main (string[] args)
+{
+ Test.init (ref args);
+
+ TestSuite root = TestSuite.get_root ();
+ root.add_suite (new SetIsFavouriteTests ().get_suite ());
+
+ Test.run ();
+
+ return 0;
+}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]