/* * 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 . * * Authors: Raul Gutierrez Segales * */ using EdsTest; using Folks; using Gee; public class SetStructuredNameTests : EdsTest.TestCase { private IndividualAggregator _aggregator; private GLib.MainLoop _main_loop; private bool _found_before_update; private bool _found_after_update; private StructuredName _sname; public SetStructuredNameTests () { base ("SetStructuredName"); this.add_test ("setting structured name on e-d-s persona", this.test_set_structured_name); } void test_set_structured_name () { Gee.HashMap c1 = new Gee.HashMap (); this._main_loop = new GLib.MainLoop (null, false); this._sname = new StructuredName.simple ("Innocenti", "Bernie"); Value? v; this._found_before_update = false; this._found_after_update = false; this.eds_backend.reset (); v = Value (typeof (string)); v.set_string ("bernie h. innocenti"); c1.set ("full_name", (owned) v); this.eds_backend.add_contact (c1); this._test_set_structured_name_async.begin (); TestUtils.loop_run_with_timeout (this._main_loop, 5); assert (this._found_before_update); assert (this._found_after_update); } private async void _test_set_structured_name_async () { yield this.eds_backend.commit_contacts_to_addressbook (); var store = BackendStore.dup (); yield store.prepare (); this._aggregator = IndividualAggregator.dup (); 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 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 == "bernie h. innocenti") { i.notify["structured-name"].connect ( this._notify_structured_name_cb); this._found_before_update = true; foreach (var p in i.personas) { ((NameDetails) p).structured_name = this._sname; } } } assert (removed.size == 1); foreach (var i in removed) { assert (i == null); } } private void _notify_structured_name_cb (Object individual_obj, ParamSpec ps) { Folks.Individual i = (Folks.Individual) individual_obj; if (i.structured_name.equal (this._sname)) { this._found_after_update = true; this._main_loop.quit (); } } } public int main (string[] args) { Test.init (ref args); var tests = new SetStructuredNameTests (); tests.register (); Test.run (); tests.final_tear_down (); return 0; }