~sethj/ubuntu/wily/unity/fix-for-1445595

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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
/*
 * Copyright (C) 2012 Canonical Ltd
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3 as
 * published by the Free Software Foundation.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Authored by: Michal Hruby <michal.hruby@canonical.com>
 */

#include <list>
#include <algorithm>
#include <gmock/gmock.h>
#include <UnityCore/GLibWrapper.h>
#include <UnityCore/Results.h>
#include <UnityCore/Variant.h>

#include <dee.h>

using namespace std;
using namespace testing;
using namespace unity;
using namespace unity::glib;
using namespace unity::dash;

namespace
{

class TestResultIterator : public ::testing::Test
{
public:
  TestResultIterator()
    : results(new Results(ModelType::LOCAL))
  {
    dee_model_set_schema (results->model(),
                          "s", "s", "u", "u", "s", "s", "s", "s", "a{sv}", NULL);
  }

  void AddResult(std::string const& uri, std::string const& name)
  {
    GVariantBuilder b;
    g_variant_builder_init(&b, G_VARIANT_TYPE("a{sv}"));
    glib::Variant hints = g_variant_builder_end(&b);

    dee_model_append(results->model(),
                     uri.c_str(),  // uri
                     "icon",       // icon-hint
                     0,            // category
                     0,            // result-type
                     "text/plain", // mimetype
                     name.c_str(), // display name
                     "",           // comment
                     uri.c_str(),  // dnd-uri
                     static_cast<GVariant*>(hints));       // hints
  }

  Results::Ptr results;
};

TEST_F(TestResultIterator, TestNullModel)
{
  Object<DeeModel> model;
  ResultIterator it(model);

  EXPECT_TRUE(it.IsLast());
  // first could be undefined, but let's make sure the behaviour doesn't change
  EXPECT_TRUE(it.IsFirst());
}

TEST_F(TestResultIterator, TestEmpty)
{
  ResultIterator it(results->model());

  EXPECT_TRUE(it.IsLast());
  // first could be undefined, but let's make sure the behaviour doesn't change
  EXPECT_TRUE(it.IsFirst());
}

TEST_F(TestResultIterator, TestNonEmpty)
{
  AddResult("mailto:nospam@example.org", "Email");

  ResultIterator it(results->model());

  EXPECT_TRUE(it.IsFirst());
  EXPECT_FALSE(it.IsLast());
}

TEST_F(TestResultIterator, TestCopy)
{
  AddResult("mailto:nospam@example.org", "Email");

  ResultIterator one(results->model());
  ResultIterator two(one);

  EXPECT_EQ(one, two);

  ResultIterator const& original = two++;
  EXPECT_EQ(original, one);
  EXPECT_NE(one, two);
}

TEST_F(TestResultIterator, TestEqual)
{
  AddResult("mailto:nospam@example.org", "Email");

  ResultIterator one(results->model());
  ResultIterator two = one;

  EXPECT_EQ(one, two);

  ResultIterator const& original = two++;
  EXPECT_EQ(original, one);
  EXPECT_NE(one, two);
}

TEST_F(TestResultIterator, TestIncrement)
{
  AddResult("file:///foo.txt", "Result #1");
  AddResult("file:///qoo.txt", "Result #2");

  ResultIterator it(results->model());

  EXPECT_EQ((*it).uri(), "file:///foo.txt");
  EXPECT_EQ((*it).name(), "Result #1");

  it++;
  EXPECT_EQ((*it).uri(), "file:///qoo.txt");
  EXPECT_EQ((*it).name(), "Result #2");

  it++;
  EXPECT_TRUE(it.IsLast());
  EXPECT_FALSE(it.IsFirst());
}

TEST_F(TestResultIterator, TestDecrement)
{
  AddResult("file:///foo.txt", "Result #1");
  AddResult("file:///qoo.txt", "Result #2");

  ResultIterator it(results->end());
  EXPECT_TRUE(it.IsLast());

  it--;
  EXPECT_EQ((*it).uri, "file:///qoo.txt");
  EXPECT_EQ((*it).name, "Result #2");

  it--;
  EXPECT_EQ((*it).uri, "file:///foo.txt");
  EXPECT_EQ((*it).name, "Result #1");

  EXPECT_TRUE(it.IsFirst());
  EXPECT_FALSE(it.IsLast());
}

TEST_F(TestResultIterator, TestAdd)
{
  AddResult("file:///foo.txt", "Result #1");
  AddResult("file:///qoo.txt", "Result #2");
  AddResult("file:///bar.txt", "Result #3");

  ResultIterator it(results->model());
  EXPECT_EQ((*it).uri, "file:///foo.txt");
  EXPECT_EQ((*it).name, "Result #1");

  it+=2;
  EXPECT_EQ((*it).uri, "file:///bar.txt");
  EXPECT_EQ((*it).name, "Result #3");
  EXPECT_FALSE(it.IsLast());

  it+=1;
  EXPECT_TRUE(it.IsLast());
  EXPECT_FALSE(it.IsFirst());
}

TEST_F(TestResultIterator, TestSubtract)
{
  AddResult("file:///foo.txt", "Result #1");
  AddResult("file:///qoo.txt", "Result #2");
  AddResult("file:///bar.txt", "Result #3");

  ResultIterator it(results->end());
  EXPECT_TRUE(it.IsLast());

  it--;
  EXPECT_EQ((*it).uri, "file:///bar.txt");
  EXPECT_EQ((*it).name, "Result #3");

  it-=2;
  EXPECT_EQ((*it).uri, "file:///foo.txt");
  EXPECT_EQ((*it).name, "Result #1");
  EXPECT_TRUE(it.IsFirst());
  EXPECT_FALSE(it.IsLast());
}

TEST_F(TestResultIterator, TestOperatorAt)
{
  AddResult("file:///foo.txt", "Result #1");
  AddResult("file:///qoo.txt", "Result #2");
  AddResult("file:///bar.txt", "Result #3");

  ResultIterator it(results->begin());
  it = it[1];

  EXPECT_EQ((*it).uri, "file:///qoo.txt");
  EXPECT_EQ((*it).name, "Result #2");
} // Namespace

}