/*
* 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 Tracker.Sparql;
using TrackerTest;
using Folks;
using Gee;
public class ImDetailsInterfaceTests : TrackerTest.TestCase
{
private GLib.MainLoop _main_loop;
private IndividualAggregator _aggregator;
private int _num_addrs;
private bool _found_addr_1;
private bool _found_addr_2;
private string _fullname;
public ImDetailsInterfaceTests ()
{
base ("ImDetailsInterfaceTests");
this.add_test ("test im details interface",
this.test_im_details_interface);
}
public void test_im_details_interface ()
{
this._main_loop = new GLib.MainLoop (null, false);
Gee.HashMap c1 = new Gee.HashMap ();
this._fullname = "persona #1";
c1.set (Trf.OntologyDefs.NCO_FULLNAME, this._fullname);
c1.set (Trf.OntologyDefs.NCO_IMADDRESS,
"jabber#test1@example.org,aim#test2@example.org");
((!) this.tracker_backend).add_contact (c1);
((!) this.tracker_backend).set_up ();
this._num_addrs = 0;
this._found_addr_1 = false;
this._found_addr_2 = false;
this._test_im_details_interface_async.begin ();
TestUtils.loop_run_with_timeout (this._main_loop);
assert (this._num_addrs == 2);
assert (this._found_addr_1 == true);
assert (this._found_addr_2 == true);
}
private async void _test_im_details_interface_async ()
{
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 (var i in added)
{
assert (i != null);
string full_name = i.full_name;
if (full_name == this._fullname)
{
foreach (var proto in i.im_addresses.get_keys ())
{
var addrs = i.im_addresses.get (proto);
if (proto == "jabber")
{
foreach (var im_fd in addrs)
{
if (im_fd.value == "test1@example.org")
{
this._found_addr_1 = true;
this._num_addrs++;
break;
}
}
}
else if (proto == "aim")
{
foreach (var im_fd in addrs)
{
if (im_fd.value == "test2@example.org")
{
this._found_addr_2 = true;
this._num_addrs++;
break;
}
}
}
}
}
}
if (this._num_addrs == 2 &&
this._found_addr_1 == true &&
this._found_addr_2 == true)
this._main_loop.quit ();
assert (removed.size == 1);
foreach (var i in removed)
{
assert (i == null);
}
}
}
public int main (string[] args)
{
Test.init (ref args);
var tests = new ImDetailsInterfaceTests ();
tests.register ();
Test.run ();
tests.final_tear_down ();
return 0;
}