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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/browser_thread_impl.h"
#include "content/browser/geolocation/gps_location_provider_linux.h"
#include "content/browser/geolocation/libgps_wrapper_linux.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "base/bind.h"
using content::BrowserThread;
using content::BrowserThreadImpl;
namespace {
class MockLibGps : public LibGps {
public:
MockLibGps();
~MockLibGps();
virtual bool GetPositionIfFixed(content::Geoposition* position) {
CHECK(position);
++get_position_calls_;
*position = get_position_;
return get_position_ret_;
}
static int gps_open_stub(const char*, const char*, struct gps_data_t*) {
CHECK(g_instance_);
g_instance_->gps_open_calls_++;
return g_instance_->gps_open_ret_;
}
static int gps_close_stub(struct gps_data_t*) {
return 0;
}
static int gps_read_stub(struct gps_data_t*) {
CHECK(g_instance_);
g_instance_->gps_read_calls_++;
return g_instance_->gps_read_ret_;
}
int get_position_calls_;
bool get_position_ret_;
int gps_open_calls_;
int gps_open_ret_;
int gps_read_calls_;
int gps_read_ret_;
content::Geoposition get_position_;
static MockLibGps* g_instance_;
};
class LocaionProviderListenerLoopQuitter
: public LocationProviderBase::ListenerInterface {
// LocationProviderBase::ListenerInterface
virtual void LocationUpdateAvailable(LocationProviderBase* provider) {
MessageLoop::current()->Quit();
}
};
class GeolocationGpsProviderLinuxTests : public testing::Test {
public:
GeolocationGpsProviderLinuxTests();
~GeolocationGpsProviderLinuxTests();
static LibGps* NewMockLibGps() {
return new MockLibGps();
}
static LibGps* NoLibGpsFactory() {
return NULL;
}
protected:
MessageLoop message_loop_;
BrowserThreadImpl ui_thread_;
LocaionProviderListenerLoopQuitter location_listener_;
scoped_ptr<GpsLocationProviderLinux> provider_;
};
void CheckValidPosition(const content::Geoposition& expected,
const content::Geoposition& actual) {
EXPECT_TRUE(actual.Validate());
EXPECT_DOUBLE_EQ(expected.latitude, actual.latitude);
EXPECT_DOUBLE_EQ(expected.longitude, actual.longitude);
EXPECT_DOUBLE_EQ(expected.accuracy, actual.accuracy);
}
MockLibGps* MockLibGps::g_instance_ = NULL;
MockLibGps::MockLibGps()
: LibGps(NULL, gps_open_stub, gps_close_stub, gps_read_stub),
get_position_calls_(0),
get_position_ret_(true),
gps_open_calls_(0),
gps_open_ret_(0),
gps_read_calls_(0),
gps_read_ret_(0) {
get_position_.error_code =
content::Geoposition::ERROR_CODE_POSITION_UNAVAILABLE;
EXPECT_FALSE(g_instance_);
g_instance_ = this;
}
MockLibGps::~MockLibGps() {
EXPECT_EQ(this, g_instance_);
g_instance_ = NULL;
}
GeolocationGpsProviderLinuxTests::GeolocationGpsProviderLinuxTests()
: ui_thread_(BrowserThread::IO, &message_loop_),
provider_(new GpsLocationProviderLinux(NewMockLibGps)) {
provider_->RegisterListener(&location_listener_);
}
GeolocationGpsProviderLinuxTests::~GeolocationGpsProviderLinuxTests() {
provider_->UnregisterListener(&location_listener_);
}
TEST_F(GeolocationGpsProviderLinuxTests, NoLibGpsInstalled) {
provider_.reset(new GpsLocationProviderLinux(NoLibGpsFactory));
ASSERT_TRUE(provider_.get());
const bool ok = provider_->StartProvider(true);
EXPECT_FALSE(ok);
content::Geoposition position;
provider_->GetPosition(&position);
EXPECT_FALSE(position.Validate());
EXPECT_EQ(content::Geoposition::ERROR_CODE_POSITION_UNAVAILABLE,
position.error_code);
}
#if defined(OS_CHROMEOS)
TEST_F(GeolocationGpsProviderLinuxTests, GetPosition) {
ASSERT_TRUE(provider_.get());
const bool ok = provider_->StartProvider(true);
EXPECT_TRUE(ok);
ASSERT_TRUE(MockLibGps::g_instance_);
EXPECT_EQ(0, MockLibGps::g_instance_->get_position_calls_);
EXPECT_EQ(0, MockLibGps::g_instance_->gps_open_calls_);
EXPECT_EQ(0, MockLibGps::g_instance_->gps_read_calls_);
content::Geoposition position;
provider_->GetPosition(&position);
EXPECT_FALSE(position.Validate());
EXPECT_EQ(content::Geoposition::ERROR_CODE_POSITION_UNAVAILABLE,
position.error_code);
MockLibGps::g_instance_->get_position_.error_code =
content::Geoposition::ERROR_CODE_NONE;
MockLibGps::g_instance_->get_position_.latitude = 4.5;
MockLibGps::g_instance_->get_position_.longitude = -34.1;
MockLibGps::g_instance_->get_position_.accuracy = 345;
MockLibGps::g_instance_->get_position_.timestamp =
base::Time::FromDoubleT(200);
EXPECT_TRUE(MockLibGps::g_instance_->get_position_.Validate());
MessageLoop::current()->Run();
EXPECT_EQ(1, MockLibGps::g_instance_->get_position_calls_);
EXPECT_EQ(1, MockLibGps::g_instance_->gps_open_calls_);
EXPECT_EQ(1, MockLibGps::g_instance_->gps_read_calls_);
provider_->GetPosition(&position);
CheckValidPosition(MockLibGps::g_instance_->get_position_, position);
// Movement. This will block for up to half a second.
MockLibGps::g_instance_->get_position_.latitude += 0.01;
MessageLoop::current()->Run();
provider_->GetPosition(&position);
EXPECT_EQ(2, MockLibGps::g_instance_->get_position_calls_);
EXPECT_EQ(1, MockLibGps::g_instance_->gps_open_calls_);
EXPECT_EQ(2, MockLibGps::g_instance_->gps_read_calls_);
CheckValidPosition(MockLibGps::g_instance_->get_position_, position);
}
void EnableGpsOpenCallback() {
CHECK(MockLibGps::g_instance_);
MockLibGps::g_instance_->gps_open_ret_ = 0;
}
TEST_F(GeolocationGpsProviderLinuxTests, LibGpsReconnect) {
// Setup gpsd reconnect interval to be 1000ms to speed up test.
provider_->SetGpsdReconnectIntervalMillis(1000);
provider_->SetPollPeriodMovingMillis(200);
const bool ok = provider_->StartProvider(true);
EXPECT_TRUE(ok);
ASSERT_TRUE(MockLibGps::g_instance_);
// Let gps_open() fails, and so will LibGps::Start().
// Reconnect will happen in 1000ms.
MockLibGps::g_instance_->gps_open_ret_ = 1;
content::Geoposition position;
MockLibGps::g_instance_->get_position_.error_code =
content::Geoposition::ERROR_CODE_NONE;
MockLibGps::g_instance_->get_position_.latitude = 4.5;
MockLibGps::g_instance_->get_position_.longitude = -34.1;
MockLibGps::g_instance_->get_position_.accuracy = 345;
MockLibGps::g_instance_->get_position_.timestamp =
base::Time::FromDoubleT(200);
EXPECT_TRUE(MockLibGps::g_instance_->get_position_.Validate());
// This task makes gps_open() and LibGps::Start() to succeed after
// 1500ms.
MessageLoop::current()->PostDelayedTask(
FROM_HERE,
base::Bind(&EnableGpsOpenCallback),
base::TimeDelta::FromMilliseconds(1500));
MessageLoop::current()->Run();
provider_->GetPosition(&position);
EXPECT_TRUE(position.Validate());
// 3 gps_open() calls are expected (2 failures and 1 success)
EXPECT_EQ(1, MockLibGps::g_instance_->get_position_calls_);
EXPECT_EQ(3, MockLibGps::g_instance_->gps_open_calls_);
EXPECT_EQ(1, MockLibGps::g_instance_->gps_read_calls_);
}
#endif // #if defined(OS_CHROMEOS)
} // namespace
|