[folks] e-d-s: add test case for settings roles



commit 21115d35329c10b5136880117edaf66d5c698a9a
Author: Raul Gutierrez Segales <rgs collabora co uk>
Date:   Sun Sep 4 15:21:44 2011 +0100

    e-d-s: add test case for settings roles

 tests/eds/Makefile.am    |    6 ++
 tests/eds/set-roles.vala |  161 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 167 insertions(+), 0 deletions(-)
---
diff --git a/tests/eds/Makefile.am b/tests/eds/Makefile.am
index 0aea0fc..3600292 100644
--- a/tests/eds/Makefile.am
+++ b/tests/eds/Makefile.am
@@ -72,6 +72,7 @@ noinst_PROGRAMS = \
 	set-urls \
 	set-properties-race \
 	set-birthday \
+	set-roles \
 	$(NULL)
 
 RUN_WITH_PRIVATE_BUS = $(top_srcdir)/tests/tools/with-session-bus-eds.sh
@@ -194,6 +195,10 @@ set_birthday_SOURCES = \
 	set-birthday.vala \
 	$(NULL)
 
+set_roles_SOURCES = \
+	set-roles.vala \
+	$(NULL)
+
 CLEANFILES = \
         *.pid \
         *.address \
@@ -228,6 +233,7 @@ MAINTAINERCLEANFILES = \
 	set_gender_vala.stamp \
 	set_urls_vala.stamp \
 	set_birthday_vala.stamp \
+	set_roles_vala.stamp \
         $(NULL)
 
 EXTRA_DIST = \
diff --git a/tests/eds/set-roles.vala b/tests/eds/set-roles.vala
new file mode 100644
index 0000000..fddb48c
--- /dev/null
+++ b/tests/eds/set-roles.vala
@@ -0,0 +1,161 @@
+/*
+ * 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 SetRolesTests : Folks.TestCase
+{
+  private EdsTest.Backend _eds_backend;
+  private IndividualAggregator _aggregator;
+  private GLib.MainLoop _main_loop;
+  private bool _found_before_update;
+  private bool _found_after_update;
+
+
+  public SetRolesTests ()
+    {
+      base ("SetRoles");
+
+      this._eds_backend = new EdsTest.Backend ();
+
+      this.add_test ("setting roles on e-d-s persona",
+          this.test_set_roles);
+    }
+
+  public override void set_up ()
+    {
+      this._eds_backend.set_up ();
+    }
+
+  public override void tear_down ()
+    {
+      this._eds_backend.tear_down ();
+    }
+
+  void test_set_roles ()
+    {
+      Gee.HashMap<string, Value?> c1 = new Gee.HashMap<string, Value?> ();
+      this._main_loop = new GLib.MainLoop (null, false);
+      Value? v;
+
+      this._found_before_update = false;
+      this._found_after_update = false;
+
+      this._eds_backend.reset ();
+
+      v = Value (typeof (string));
+      v.set_string ("The Guard");
+      c1.set ("full_name", (owned) v);
+      this._eds_backend.add_contact (c1);
+
+      this._test_set_roles_async ();
+
+      Timeout.add_seconds (5, () => {
+            this._main_loop.quit ();
+            assert_not_reached ();
+          });
+
+      this._main_loop.run ();
+
+      assert (this._found_before_update);
+      assert (this._found_after_update);
+    }
+
+  private async void _test_set_roles_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\n", e.message);
+        }
+    }
+
+  private void _individuals_changed_cb (
+       MultiMap<Individual?, Individual?> changes)
+    {
+      var added = changes.get_values ();
+      var removed = changes.get_keys ();
+
+      assert (removed.size == 0);
+
+      foreach (Individual i in added)
+        {
+          var name = (Folks.NameDetails) i;
+
+          if (name.full_name == "The Guard")
+            {
+              i.notify["roles"].connect (this._notify_roles_cb);
+              this._found_before_update = true;
+
+              foreach (var p in i.personas)
+                {
+                  var role_fds = new HashSet<RoleFieldDetails> (
+                      (GLib.HashFunc) RoleFieldDetails.hash,
+                      (GLib.EqualFunc) RoleFieldDetails.equal);
+                  var r1 = new Role ("Dr.", "The Nut House Ltd");
+                  r1.role = "The Manager";
+                  var role_fd1 = new RoleFieldDetails (r1);
+                  role_fds.add (role_fd1);
+                  ((RoleDetails) p).roles = role_fds;
+                }
+            }
+        }
+    }
+
+  private void _notify_roles_cb (Object individual_obj, ParamSpec ps)
+    {
+      Folks.Individual i = (Folks.Individual) individual_obj;
+      foreach (var role_fd in i.roles)
+        {
+          var r1 = new Role ("Dr.", "The Nut House Ltd");
+          r1.role = "The Manager";
+          var role_fd_expected = new RoleFieldDetails (r1);
+          if (role_fd.equal (role_fd_expected))
+            {
+              this._found_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 SetRolesTests ().get_suite ());
+
+  Test.run ();
+
+  return 0;
+}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]