summaryrefslogtreecommitdiff
path: root/tests/tracker/set-structured-name.vala
blob: 1f449822795b56b0c41e374c2cfbcd4452e324f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
 * 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 Tracker.Sparql;
using TrackerTest;
using Folks;
using Gee;

public class SetStructuredNameTests : TrackerTest.TestCase
{
  private GLib.MainLoop _main_loop;
  private IndividualAggregator _aggregator;
  private string _persona_fullname;
  private bool _sname_found;
  private StructuredName _sname;
  private string _family_name;
  private string _given_name;
  private string _additional_names;
  private string _prefixes;
  private string _suffixes;

  public SetStructuredNameTests ()
    {
      base ("SetStructuredNameTests");

      this.add_test ("test setting structured name ",
          this.test_set_structured_name);
    }

  public void test_set_structured_name ()
    {
      this._main_loop = new GLib.MainLoop (null, false);
      Gee.HashMap<string, string> c1 = new Gee.HashMap<string, string> ();
      this._persona_fullname = "persona #1";
      this._family_name = "family name";
      this._given_name = "given name";
      this._additional_names = "additional name";
      this._prefixes = "prefixes";
      this._suffixes = "suffixes";

      this._sname = new StructuredName (this._family_name, this._given_name,
          this._additional_names, this._prefixes, this._suffixes);

      c1.set (Trf.OntologyDefs.NCO_FULLNAME, this._persona_fullname);
      ((!) this.tracker_backend).add_contact (c1);

      ((!) this.tracker_backend).set_up ();

      this._sname_found = false;

      this._test_set_structured_name_async.begin ();

      TestUtils.loop_run_with_timeout (this._main_loop);

      assert (this._sname_found);
    }

  private async void _test_set_structured_name_async ()
    {
      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 ();

      foreach (var i in added)
        {
          assert (i != null);

          if (i.full_name == this._persona_fullname)
            {
              foreach (var p in i.personas)
                {
                  p.notify["structured-name"].connect (this._notify_sname_cb);
                  ((NameDetails) p).structured_name = this._sname;
                }
            }
        }

      assert (removed.size == 1);

      foreach (var i in removed)
        {
          assert (i == null);
        }
    }

  private void _notify_sname_cb (Object persona, ParamSpec ps)
    {
      Trf.Persona p = (Trf.Persona) persona;
      if (p.full_name == this._persona_fullname)
        {
          if (p.structured_name.is_empty () == false &&
              p.structured_name.equal (this._sname) == true)
            {
              this._sname_found = 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;
}