2 * Copyright (C) 2011 Collabora Ltd.
4 * This library is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation, either version 2.1 of the License, or
7 * (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this library. If not, see <http://www.gnu.org/licenses/>.
17 * Authors: Raul Gutierrez Segales <raul.gutierrez.segales@collabora.co.uk>
26 public class UrlDetailsInterfaceTests : TrackerTest.TestCase
28 private GLib.MainLoop _main_loop;
29 private IndividualAggregator _aggregator;
30 private string _blog_url;
31 private string _website_url;
33 private bool _found_blog;
34 private bool _found_website;
36 public UrlDetailsInterfaceTests ()
38 base ("UrlDetailsInterfaceTests");
40 ((!) this.tracker_backend).debug = false;
42 this.add_test ("test url details interface",
43 this.test_url_details_interface);
46 public void test_url_details_interface ()
48 this._main_loop = new GLib.MainLoop (null, false);
49 Gee.HashMap<string, string> c1 = new Gee.HashMap<string, string> ();
50 this._blog_url = "http://blog.example.org";
51 this._website_url = "http://www.example.org";
52 this._urls = "%s,%s".printf (this._blog_url, this._website_url);
54 c1.set (Trf.OntologyDefs.NCO_FULLNAME, "persona #1");
55 c1.set (TrackerTest.Backend.URLS, this._urls);
56 ((!) this.tracker_backend).add_contact (c1);
58 ((!) this.tracker_backend).set_up ();
60 this._found_blog = false;
61 this._found_website = false;
63 this._test_url_details_interface_async.begin ();
65 TestUtils.loop_run_with_timeout (this._main_loop);
67 assert (this._found_blog == true);
68 assert (this._found_website == true);
71 private async void _test_url_details_interface_async ()
73 var store = BackendStore.dup ();
74 yield store.prepare ();
75 this._aggregator = new IndividualAggregator ();
76 this._aggregator.individuals_changed_detailed.connect
77 (this._individuals_changed_cb);
80 yield this._aggregator.prepare ();
84 GLib.warning ("Error when calling prepare: %s\n", e.message);
88 private void _individuals_changed_cb (
89 MultiMap<Individual?, Individual?> changes)
91 var added = changes.get_values ();
92 var removed = changes.get_keys ();
94 foreach (var i in added)
98 string full_name = i.full_name;
99 if (full_name != null)
101 foreach (var url in i.urls)
103 if (url.value == this._blog_url)
105 this._found_blog = true;
107 else if (url.value == this._website_url)
109 this._found_website = true;
115 if (this._found_blog &&
117 this._main_loop.quit ();
119 assert (removed.size == 1);
121 foreach (var i in removed)
128 public int main (string[] args)
130 Test.init (ref args);
132 var tests = new UrlDetailsInterfaceTests ();
135 tests.final_tear_down ();