blob: cb30bb0be65740dc14071835c1be7c726a92296d [file] [log] [blame]
[email protected]ac4c6682012-01-04 00:57:391// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]b44d5cc2009-06-15 10:30:442// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]59e69e742013-06-18 20:27:525#include "base/message_loop/message_pump_glib.h"
[email protected]b44d5cc2009-06-15 10:30:446
[email protected]d90efd52012-06-28 19:57:267#include <glib.h>
[email protected]23d35392009-06-15 19:53:088#include <math.h>
9
[email protected]b44d5cc2009-06-15 10:30:4410#include <algorithm>
11#include <vector>
[email protected]23d35392009-06-15 19:53:0812
[email protected]8f5a7e492012-01-01 02:14:4713#include "base/bind.h"
14#include "base/bind_helpers.h"
[email protected]763839e2011-12-09 23:06:0215#include "base/callback.h"
[email protected]3b63f8f42011-03-28 01:54:1516#include "base/memory/ref_counted.h"
[email protected]b44d5cc2009-06-15 10:30:4417#include "base/message_loop.h"
[email protected]7ff48ca2013-02-06 16:56:1918#include "base/run_loop.h"
[email protected]34b99632011-01-01 01:01:0619#include "base/threading/thread.h"
[email protected]b44d5cc2009-06-15 10:30:4420#include "testing/gtest/include/gtest/gtest.h"
21
[email protected]a13283cc2012-04-05 00:21:2222#if defined(TOOLKIT_GTK)
[email protected]258dca42011-09-21 00:17:1923#include <gtk/gtk.h>
24#endif
25
[email protected]7ff48ca2013-02-06 16:56:1926namespace base {
[email protected]b44d5cc2009-06-15 10:30:4427namespace {
28
29// This class injects dummy "events" into the GLib loop. When "handled" these
30// events can run tasks. This is intended to mock gtk events (the corresponding
31// GLib source runs at the same priority).
32class EventInjector {
33 public:
34 EventInjector() : processed_events_(0) {
35 source_ = static_cast<Source*>(g_source_new(&SourceFuncs, sizeof(Source)));
36 source_->injector = this;
37 g_source_attach(source_, NULL);
38 g_source_set_can_recurse(source_, TRUE);
39 }
40
41 ~EventInjector() {
42 g_source_destroy(source_);
43 g_source_unref(source_);
44 }
45
46 int HandlePrepare() {
47 // If the queue is empty, block.
48 if (events_.empty())
49 return -1;
[email protected]59e69e742013-06-18 20:27:5250 TimeDelta delta = events_[0].time - Time::NowFromSystemTime();
[email protected]b44d5cc2009-06-15 10:30:4451 return std::max(0, static_cast<int>(ceil(delta.InMillisecondsF())));
52 }
53
54 bool HandleCheck() {
55 if (events_.empty())
56 return false;
[email protected]59e69e742013-06-18 20:27:5257 return events_[0].time <= Time::NowFromSystemTime();
[email protected]b44d5cc2009-06-15 10:30:4458 }
59
60 void HandleDispatch() {
61 if (events_.empty())
62 return;
63 Event event = events_[0];
64 events_.erase(events_.begin());
65 ++processed_events_;
[email protected]8f5a7e492012-01-01 02:14:4766 if (!event.callback.is_null())
[email protected]763839e2011-12-09 23:06:0267 event.callback.Run();
[email protected]8f5a7e492012-01-01 02:14:4768 else if (!event.task.is_null())
69 event.task.Run();
[email protected]b44d5cc2009-06-15 10:30:4470 }
71
[email protected]763839e2011-12-09 23:06:0272 // Adds an event to the queue. When "handled", executes |callback|.
[email protected]b44d5cc2009-06-15 10:30:4473 // delay_ms is relative to the last event if any, or to Now() otherwise.
[email protected]59e69e742013-06-18 20:27:5274 void AddEvent(int delay_ms, const Closure& callback) {
75 AddEventHelper(delay_ms, callback, Closure());
[email protected]763839e2011-12-09 23:06:0276 }
77
78 void AddDummyEvent(int delay_ms) {
[email protected]59e69e742013-06-18 20:27:5279 AddEventHelper(delay_ms, Closure(), Closure());
[email protected]763839e2011-12-09 23:06:0280 }
81
[email protected]59e69e742013-06-18 20:27:5282 void AddEventAsTask(int delay_ms, const Closure& task) {
83 AddEventHelper(delay_ms, Closure(), task);
[email protected]b44d5cc2009-06-15 10:30:4484 }
85
86 void Reset() {
87 processed_events_ = 0;
88 events_.clear();
89 }
90
91 int processed_events() const { return processed_events_; }
92
93 private:
94 struct Event {
[email protected]59e69e742013-06-18 20:27:5295 Time time;
96 Closure callback;
97 Closure task;
[email protected]b44d5cc2009-06-15 10:30:4498 };
99
100 struct Source : public GSource {
101 EventInjector* injector;
102 };
103
[email protected]8f5a7e492012-01-01 02:14:47104 void AddEventHelper(
[email protected]59e69e742013-06-18 20:27:52105 int delay_ms, const Closure& callback, const Closure& task) {
106 Time last_time;
[email protected]8f5a7e492012-01-01 02:14:47107 if (!events_.empty())
[email protected]763839e2011-12-09 23:06:02108 last_time = (events_.end()-1)->time;
[email protected]8f5a7e492012-01-01 02:14:47109 else
[email protected]59e69e742013-06-18 20:27:52110 last_time = Time::NowFromSystemTime();
[email protected]8f5a7e492012-01-01 02:14:47111
[email protected]59e69e742013-06-18 20:27:52112 Time future = last_time + TimeDelta::FromMilliseconds(delay_ms);
[email protected]8f5a7e492012-01-01 02:14:47113 EventInjector::Event event = {future, callback, task};
[email protected]763839e2011-12-09 23:06:02114 events_.push_back(event);
115 }
116
[email protected]b44d5cc2009-06-15 10:30:44117 static gboolean Prepare(GSource* source, gint* timeout_ms) {
118 *timeout_ms = static_cast<Source*>(source)->injector->HandlePrepare();
119 return FALSE;
120 }
121
122 static gboolean Check(GSource* source) {
123 return static_cast<Source*>(source)->injector->HandleCheck();
124 }
125
126 static gboolean Dispatch(GSource* source,
127 GSourceFunc unused_func,
128 gpointer unused_data) {
129 static_cast<Source*>(source)->injector->HandleDispatch();
130 return TRUE;
131 }
132
133 Source* source_;
134 std::vector<Event> events_;
135 int processed_events_;
136 static GSourceFuncs SourceFuncs;
137 DISALLOW_COPY_AND_ASSIGN(EventInjector);
138};
139
140GSourceFuncs EventInjector::SourceFuncs = {
141 EventInjector::Prepare,
142 EventInjector::Check,
143 EventInjector::Dispatch,
144 NULL
145};
146
[email protected]b44d5cc2009-06-15 10:30:44147void IncrementInt(int *value) {
148 ++*value;
149}
150
151// Checks how many events have been processed by the injector.
152void ExpectProcessedEvents(EventInjector* injector, int count) {
153 EXPECT_EQ(injector->processed_events(), count);
154}
155
[email protected]b44d5cc2009-06-15 10:30:44156// Posts a task on the current message loop.
157void PostMessageLoopTask(const tracked_objects::Location& from_here,
[email protected]59e69e742013-06-18 20:27:52158 const Closure& task) {
[email protected]b44d5cc2009-06-15 10:30:44159 MessageLoop::current()->PostTask(from_here, task);
160}
161
162// Test fixture.
163class MessagePumpGLibTest : public testing::Test {
164 public:
165 MessagePumpGLibTest() : loop_(NULL), injector_(NULL) { }
166
[email protected]c19003d2012-07-31 01:38:18167 // Overridden from testing::Test:
168 virtual void SetUp() OVERRIDE {
[email protected]b44d5cc2009-06-15 10:30:44169 loop_ = new MessageLoop(MessageLoop::TYPE_UI);
170 injector_ = new EventInjector();
171 }
[email protected]c19003d2012-07-31 01:38:18172 virtual void TearDown() OVERRIDE {
[email protected]b44d5cc2009-06-15 10:30:44173 delete injector_;
174 injector_ = NULL;
175 delete loop_;
176 loop_ = NULL;
177 }
178
179 MessageLoop* loop() const { return loop_; }
180 EventInjector* injector() const { return injector_; }
181
182 private:
183 MessageLoop* loop_;
184 EventInjector* injector_;
185 DISALLOW_COPY_AND_ASSIGN(MessagePumpGLibTest);
186};
187
188} // namespace
189
[email protected]b44d5cc2009-06-15 10:30:44190TEST_F(MessagePumpGLibTest, TestQuit) {
191 // Checks that Quit works and that the basic infrastructure is working.
192
193 // Quit from a task
[email protected]7ff48ca2013-02-06 16:56:19194 RunLoop().RunUntilIdle();
[email protected]b44d5cc2009-06-15 10:30:44195 EXPECT_EQ(0, injector()->processed_events());
196
197 injector()->Reset();
198 // Quit from an event
[email protected]a085953f2013-02-04 23:40:00199 injector()->AddEvent(0, MessageLoop::QuitWhenIdleClosure());
[email protected]b44d5cc2009-06-15 10:30:44200 loop()->Run();
201 EXPECT_EQ(1, injector()->processed_events());
202}
203
204TEST_F(MessagePumpGLibTest, TestEventTaskInterleave) {
205 // Checks that tasks posted by events are executed before the next event if
206 // the posted task queue is empty.
207 // MessageLoop doesn't make strong guarantees that it is the case, but the
208 // current implementation ensures it and the tests below rely on it.
209 // If changes cause this test to fail, it is reasonable to change it, but
210 // TestWorkWhileWaitingForEvents and TestEventsWhileWaitingForWork have to be
211 // changed accordingly, otherwise they can become flaky.
[email protected]59e69e742013-06-18 20:27:52212 injector()->AddEventAsTask(0, Bind(&DoNothing));
213 Closure check_task =
214 Bind(&ExpectProcessedEvents, Unretained(injector()), 2);
215 Closure posted_task =
216 Bind(&PostMessageLoopTask, FROM_HERE, check_task);
[email protected]763839e2011-12-09 23:06:02217 injector()->AddEventAsTask(0, posted_task);
[email protected]59e69e742013-06-18 20:27:52218 injector()->AddEventAsTask(0, Bind(&DoNothing));
[email protected]a085953f2013-02-04 23:40:00219 injector()->AddEvent(0, MessageLoop::QuitWhenIdleClosure());
[email protected]b44d5cc2009-06-15 10:30:44220 loop()->Run();
221 EXPECT_EQ(4, injector()->processed_events());
222
223 injector()->Reset();
[email protected]59e69e742013-06-18 20:27:52224 injector()->AddEventAsTask(0, Bind(&DoNothing));
[email protected]8f5a7e492012-01-01 02:14:47225 check_task =
[email protected]59e69e742013-06-18 20:27:52226 Bind(&ExpectProcessedEvents, Unretained(injector()), 2);
227 posted_task = Bind(&PostMessageLoopTask, FROM_HERE, check_task);
[email protected]763839e2011-12-09 23:06:02228 injector()->AddEventAsTask(0, posted_task);
[email protected]59e69e742013-06-18 20:27:52229 injector()->AddEventAsTask(10, Bind(&DoNothing));
[email protected]a085953f2013-02-04 23:40:00230 injector()->AddEvent(0, MessageLoop::QuitWhenIdleClosure());
[email protected]b44d5cc2009-06-15 10:30:44231 loop()->Run();
232 EXPECT_EQ(4, injector()->processed_events());
233}
234
235TEST_F(MessagePumpGLibTest, TestWorkWhileWaitingForEvents) {
236 int task_count = 0;
237 // Tests that we process tasks while waiting for new events.
238 // The event queue is empty at first.
239 for (int i = 0; i < 10; ++i) {
[email protected]59e69e742013-06-18 20:27:52240 loop()->PostTask(FROM_HERE, Bind(&IncrementInt, &task_count));
[email protected]b44d5cc2009-06-15 10:30:44241 }
242 // After all the previous tasks have executed, enqueue an event that will
243 // quit.
244 loop()->PostTask(
[email protected]8f5a7e492012-01-01 02:14:47245 FROM_HERE,
[email protected]59e69e742013-06-18 20:27:52246 Bind(&EventInjector::AddEvent, Unretained(injector()), 0,
[email protected]a085953f2013-02-04 23:40:00247 MessageLoop::QuitWhenIdleClosure()));
[email protected]b44d5cc2009-06-15 10:30:44248 loop()->Run();
249 ASSERT_EQ(10, task_count);
250 EXPECT_EQ(1, injector()->processed_events());
251
252 // Tests that we process delayed tasks while waiting for new events.
253 injector()->Reset();
254 task_count = 0;
255 for (int i = 0; i < 10; ++i) {
256 loop()->PostDelayedTask(
[email protected]5761ab9c2012-02-04 16:44:53257 FROM_HERE,
[email protected]59e69e742013-06-18 20:27:52258 Bind(&IncrementInt, &task_count),
259 TimeDelta::FromMilliseconds(10*i));
[email protected]b44d5cc2009-06-15 10:30:44260 }
261 // After all the previous tasks have executed, enqueue an event that will
262 // quit.
263 // This relies on the fact that delayed tasks are executed in delay order.
264 // That is verified in message_loop_unittest.cc.
265 loop()->PostDelayedTask(
[email protected]8f5a7e492012-01-01 02:14:47266 FROM_HERE,
[email protected]59e69e742013-06-18 20:27:52267 Bind(&EventInjector::AddEvent, Unretained(injector()), 10,
[email protected]a085953f2013-02-04 23:40:00268 MessageLoop::QuitWhenIdleClosure()),
[email protected]59e69e742013-06-18 20:27:52269 TimeDelta::FromMilliseconds(150));
[email protected]b44d5cc2009-06-15 10:30:44270 loop()->Run();
271 ASSERT_EQ(10, task_count);
272 EXPECT_EQ(1, injector()->processed_events());
273}
274
275TEST_F(MessagePumpGLibTest, TestEventsWhileWaitingForWork) {
276 // Tests that we process events while waiting for work.
277 // The event queue is empty at first.
278 for (int i = 0; i < 10; ++i) {
[email protected]763839e2011-12-09 23:06:02279 injector()->AddDummyEvent(0);
[email protected]b44d5cc2009-06-15 10:30:44280 }
281 // After all the events have been processed, post a task that will check that
282 // the events have been processed (note: the task executes after the event
283 // that posted it has been handled, so we expect 11 at that point).
[email protected]59e69e742013-06-18 20:27:52284 Closure check_task =
285 Bind(&ExpectProcessedEvents, Unretained(injector()), 11);
286 Closure posted_task =
287 Bind(&PostMessageLoopTask, FROM_HERE, check_task);
[email protected]763839e2011-12-09 23:06:02288 injector()->AddEventAsTask(10, posted_task);
[email protected]b44d5cc2009-06-15 10:30:44289
290 // And then quit (relies on the condition tested by TestEventTaskInterleave).
[email protected]a085953f2013-02-04 23:40:00291 injector()->AddEvent(10, MessageLoop::QuitWhenIdleClosure());
[email protected]b44d5cc2009-06-15 10:30:44292 loop()->Run();
293
294 EXPECT_EQ(12, injector()->processed_events());
295}
296
297namespace {
298
299// This class is a helper for the concurrent events / posted tasks test below.
300// It will quit the main loop once enough tasks and events have been processed,
301// while making sure there is always work to do and events in the queue.
[email protected]59e69e742013-06-18 20:27:52302class ConcurrentHelper : public RefCounted<ConcurrentHelper> {
[email protected]b44d5cc2009-06-15 10:30:44303 public:
[email protected]2fdc86a2010-01-26 23:08:02304 explicit ConcurrentHelper(EventInjector* injector)
[email protected]b44d5cc2009-06-15 10:30:44305 : injector_(injector),
306 event_count_(kStartingEventCount),
307 task_count_(kStartingTaskCount) {
308 }
309
310 void FromTask() {
311 if (task_count_ > 0) {
312 --task_count_;
313 }
314 if (task_count_ == 0 && event_count_ == 0) {
[email protected]91cae2592013-01-10 14:56:17315 MessageLoop::current()->QuitWhenIdle();
[email protected]b44d5cc2009-06-15 10:30:44316 } else {
317 MessageLoop::current()->PostTask(
[email protected]59e69e742013-06-18 20:27:52318 FROM_HERE, Bind(&ConcurrentHelper::FromTask, this));
[email protected]b44d5cc2009-06-15 10:30:44319 }
320 }
321
322 void FromEvent() {
323 if (event_count_ > 0) {
324 --event_count_;
325 }
326 if (task_count_ == 0 && event_count_ == 0) {
[email protected]91cae2592013-01-10 14:56:17327 MessageLoop::current()->QuitWhenIdle();
[email protected]b44d5cc2009-06-15 10:30:44328 } else {
[email protected]763839e2011-12-09 23:06:02329 injector_->AddEventAsTask(
[email protected]59e69e742013-06-18 20:27:52330 0, Bind(&ConcurrentHelper::FromEvent, this));
[email protected]b44d5cc2009-06-15 10:30:44331 }
332 }
333
334 int event_count() const { return event_count_; }
335 int task_count() const { return task_count_; }
336
337 private:
[email protected]59e69e742013-06-18 20:27:52338 friend class RefCounted<ConcurrentHelper>;
[email protected]877d55d2009-11-05 21:53:08339
340 ~ConcurrentHelper() {}
341
[email protected]b44d5cc2009-06-15 10:30:44342 static const int kStartingEventCount = 20;
343 static const int kStartingTaskCount = 20;
344
345 EventInjector* injector_;
346 int event_count_;
347 int task_count_;
348};
349
350} // namespace
351
352TEST_F(MessagePumpGLibTest, TestConcurrentEventPostedTask) {
353 // Tests that posted tasks don't starve events, nor the opposite.
354 // We use the helper class above. We keep both event and posted task queues
355 // full, the helper verifies that both tasks and events get processed.
356 // If that is not the case, either event_count_ or task_count_ will not get
[email protected]91cae2592013-01-10 14:56:17357 // to 0, and MessageLoop::QuitWhenIdle() will never be called.
[email protected]b44d5cc2009-06-15 10:30:44358 scoped_refptr<ConcurrentHelper> helper = new ConcurrentHelper(injector());
359
360 // Add 2 events to the queue to make sure it is always full (when we remove
361 // the event before processing it).
[email protected]763839e2011-12-09 23:06:02362 injector()->AddEventAsTask(
[email protected]59e69e742013-06-18 20:27:52363 0, Bind(&ConcurrentHelper::FromEvent, helper.get()));
[email protected]763839e2011-12-09 23:06:02364 injector()->AddEventAsTask(
[email protected]59e69e742013-06-18 20:27:52365 0, Bind(&ConcurrentHelper::FromEvent, helper.get()));
[email protected]b44d5cc2009-06-15 10:30:44366
367 // Similarly post 2 tasks.
368 loop()->PostTask(
[email protected]59e69e742013-06-18 20:27:52369 FROM_HERE, Bind(&ConcurrentHelper::FromTask, helper.get()));
[email protected]b44d5cc2009-06-15 10:30:44370 loop()->PostTask(
[email protected]59e69e742013-06-18 20:27:52371 FROM_HERE, Bind(&ConcurrentHelper::FromTask, helper.get()));
[email protected]b44d5cc2009-06-15 10:30:44372
373 loop()->Run();
374 EXPECT_EQ(0, helper->event_count());
375 EXPECT_EQ(0, helper->task_count());
376}
377
378namespace {
379
380void AddEventsAndDrainGLib(EventInjector* injector) {
381 // Add a couple of dummy events
[email protected]763839e2011-12-09 23:06:02382 injector->AddDummyEvent(0);
383 injector->AddDummyEvent(0);
[email protected]b44d5cc2009-06-15 10:30:44384 // Then add an event that will quit the main loop.
[email protected]a085953f2013-02-04 23:40:00385 injector->AddEvent(0, MessageLoop::QuitWhenIdleClosure());
[email protected]b44d5cc2009-06-15 10:30:44386
387 // Post a couple of dummy tasks
[email protected]59e69e742013-06-18 20:27:52388 MessageLoop::current()->PostTask(FROM_HERE, Bind(&DoNothing));
389 MessageLoop::current()->PostTask(FROM_HERE, Bind(&DoNothing));
[email protected]b44d5cc2009-06-15 10:30:44390
391 // Drain the events
392 while (g_main_context_pending(NULL)) {
393 g_main_context_iteration(NULL, FALSE);
394 }
395}
396
397} // namespace
398
399TEST_F(MessagePumpGLibTest, TestDrainingGLib) {
400 // Tests that draining events using GLib works.
401 loop()->PostTask(
[email protected]8f5a7e492012-01-01 02:14:47402 FROM_HERE,
[email protected]59e69e742013-06-18 20:27:52403 Bind(&AddEventsAndDrainGLib, Unretained(injector())));
[email protected]b44d5cc2009-06-15 10:30:44404 loop()->Run();
405
406 EXPECT_EQ(3, injector()->processed_events());
407}
408
409
410namespace {
411
[email protected]a13283cc2012-04-05 00:21:22412#if defined(TOOLKIT_GTK)
[email protected]b44d5cc2009-06-15 10:30:44413void AddEventsAndDrainGtk(EventInjector* injector) {
414 // Add a couple of dummy events
[email protected]763839e2011-12-09 23:06:02415 injector->AddDummyEvent(0);
416 injector->AddDummyEvent(0);
[email protected]b44d5cc2009-06-15 10:30:44417 // Then add an event that will quit the main loop.
[email protected]a085953f2013-02-04 23:40:00418 injector->AddEvent(0, MessageLoop::QuitWhenIdleClosure());
[email protected]b44d5cc2009-06-15 10:30:44419
420 // Post a couple of dummy tasks
[email protected]59e69e742013-06-18 20:27:52421 MessageLoop::current()->PostTask(FROM_HERE, Bind(&DoNothing));
422 MessageLoop::current()->PostTask(FROM_HERE, Bind(&DoNothing));
[email protected]b44d5cc2009-06-15 10:30:44423
424 // Drain the events
425 while (gtk_events_pending()) {
426 gtk_main_iteration();
427 }
428}
[email protected]258dca42011-09-21 00:17:19429#endif
[email protected]b44d5cc2009-06-15 10:30:44430
431} // namespace
432
[email protected]a13283cc2012-04-05 00:21:22433#if defined(TOOLKIT_GTK)
[email protected]b44d5cc2009-06-15 10:30:44434TEST_F(MessagePumpGLibTest, TestDrainingGtk) {
435 // Tests that draining events using Gtk works.
436 loop()->PostTask(
[email protected]8f5a7e492012-01-01 02:14:47437 FROM_HERE,
[email protected]59e69e742013-06-18 20:27:52438 Bind(&AddEventsAndDrainGtk, Unretained(injector())));
[email protected]b44d5cc2009-06-15 10:30:44439 loop()->Run();
440
441 EXPECT_EQ(3, injector()->processed_events());
442}
[email protected]258dca42011-09-21 00:17:19443#endif
[email protected]b44d5cc2009-06-15 10:30:44444
445namespace {
446
447// Helper class that lets us run the GLib message loop.
[email protected]59e69e742013-06-18 20:27:52448class GLibLoopRunner : public RefCounted<GLibLoopRunner> {
[email protected]b44d5cc2009-06-15 10:30:44449 public:
450 GLibLoopRunner() : quit_(false) { }
451
452 void RunGLib() {
453 while (!quit_) {
454 g_main_context_iteration(NULL, TRUE);
455 }
456 }
457
[email protected]258dca42011-09-21 00:17:19458 void RunLoop() {
[email protected]a13283cc2012-04-05 00:21:22459#if defined(TOOLKIT_GTK)
[email protected]b44d5cc2009-06-15 10:30:44460 while (!quit_) {
461 gtk_main_iteration();
462 }
[email protected]258dca42011-09-21 00:17:19463#else
464 while (!quit_) {
465 g_main_context_iteration(NULL, TRUE);
466 }
467#endif
[email protected]b44d5cc2009-06-15 10:30:44468 }
469
470 void Quit() {
471 quit_ = true;
472 }
473
474 void Reset() {
475 quit_ = false;
476 }
477
478 private:
[email protected]59e69e742013-06-18 20:27:52479 friend class RefCounted<GLibLoopRunner>;
[email protected]877d55d2009-11-05 21:53:08480
481 ~GLibLoopRunner() {}
482
[email protected]b44d5cc2009-06-15 10:30:44483 bool quit_;
484};
485
486void TestGLibLoopInternal(EventInjector* injector) {
487 // Allow tasks to be processed from 'native' event loops.
488 MessageLoop::current()->SetNestableTasksAllowed(true);
489 scoped_refptr<GLibLoopRunner> runner = new GLibLoopRunner();
490
491 int task_count = 0;
492 // Add a couple of dummy events
[email protected]763839e2011-12-09 23:06:02493 injector->AddDummyEvent(0);
494 injector->AddDummyEvent(0);
[email protected]b44d5cc2009-06-15 10:30:44495 // Post a couple of dummy tasks
496 MessageLoop::current()->PostTask(
[email protected]59e69e742013-06-18 20:27:52497 FROM_HERE, Bind(&IncrementInt, &task_count));
[email protected]b44d5cc2009-06-15 10:30:44498 MessageLoop::current()->PostTask(
[email protected]59e69e742013-06-18 20:27:52499 FROM_HERE, Bind(&IncrementInt, &task_count));
[email protected]b44d5cc2009-06-15 10:30:44500 // Delayed events
[email protected]763839e2011-12-09 23:06:02501 injector->AddDummyEvent(10);
502 injector->AddDummyEvent(10);
[email protected]b44d5cc2009-06-15 10:30:44503 // Delayed work
504 MessageLoop::current()->PostDelayedTask(
[email protected]5761ab9c2012-02-04 16:44:53505 FROM_HERE,
[email protected]59e69e742013-06-18 20:27:52506 Bind(&IncrementInt, &task_count),
507 TimeDelta::FromMilliseconds(30));
[email protected]b44d5cc2009-06-15 10:30:44508 MessageLoop::current()->PostDelayedTask(
[email protected]5761ab9c2012-02-04 16:44:53509 FROM_HERE,
[email protected]59e69e742013-06-18 20:27:52510 Bind(&GLibLoopRunner::Quit, runner.get()),
511 TimeDelta::FromMilliseconds(40));
[email protected]b44d5cc2009-06-15 10:30:44512
513 // Run a nested, straight GLib message loop.
514 runner->RunGLib();
515
516 ASSERT_EQ(3, task_count);
517 EXPECT_EQ(4, injector->processed_events());
[email protected]91cae2592013-01-10 14:56:17518 MessageLoop::current()->QuitWhenIdle();
[email protected]b44d5cc2009-06-15 10:30:44519}
520
521void TestGtkLoopInternal(EventInjector* injector) {
522 // Allow tasks to be processed from 'native' event loops.
523 MessageLoop::current()->SetNestableTasksAllowed(true);
524 scoped_refptr<GLibLoopRunner> runner = new GLibLoopRunner();
525
526 int task_count = 0;
527 // Add a couple of dummy events
[email protected]763839e2011-12-09 23:06:02528 injector->AddDummyEvent(0);
529 injector->AddDummyEvent(0);
[email protected]b44d5cc2009-06-15 10:30:44530 // Post a couple of dummy tasks
531 MessageLoop::current()->PostTask(
[email protected]59e69e742013-06-18 20:27:52532 FROM_HERE, Bind(&IncrementInt, &task_count));
[email protected]b44d5cc2009-06-15 10:30:44533 MessageLoop::current()->PostTask(
[email protected]59e69e742013-06-18 20:27:52534 FROM_HERE, Bind(&IncrementInt, &task_count));
[email protected]b44d5cc2009-06-15 10:30:44535 // Delayed events
[email protected]763839e2011-12-09 23:06:02536 injector->AddDummyEvent(10);
537 injector->AddDummyEvent(10);
[email protected]b44d5cc2009-06-15 10:30:44538 // Delayed work
539 MessageLoop::current()->PostDelayedTask(
[email protected]5761ab9c2012-02-04 16:44:53540 FROM_HERE,
[email protected]59e69e742013-06-18 20:27:52541 Bind(&IncrementInt, &task_count),
542 TimeDelta::FromMilliseconds(30));
[email protected]b44d5cc2009-06-15 10:30:44543 MessageLoop::current()->PostDelayedTask(
[email protected]5761ab9c2012-02-04 16:44:53544 FROM_HERE,
[email protected]59e69e742013-06-18 20:27:52545 Bind(&GLibLoopRunner::Quit, runner.get()),
546 TimeDelta::FromMilliseconds(40));
[email protected]b44d5cc2009-06-15 10:30:44547
548 // Run a nested, straight Gtk message loop.
[email protected]258dca42011-09-21 00:17:19549 runner->RunLoop();
[email protected]b44d5cc2009-06-15 10:30:44550
551 ASSERT_EQ(3, task_count);
552 EXPECT_EQ(4, injector->processed_events());
[email protected]91cae2592013-01-10 14:56:17553 MessageLoop::current()->QuitWhenIdle();
[email protected]b44d5cc2009-06-15 10:30:44554}
555
556} // namespace
557
558TEST_F(MessagePumpGLibTest, TestGLibLoop) {
[email protected]8f5a7e492012-01-01 02:14:47559 // Tests that events and posted tasks are correctly executed if the message
[email protected]b44d5cc2009-06-15 10:30:44560 // loop is not run by MessageLoop::Run() but by a straight GLib loop.
561 // Note that in this case we don't make strong guarantees about niceness
562 // between events and posted tasks.
[email protected]8f5a7e492012-01-01 02:14:47563 loop()->PostTask(
564 FROM_HERE,
[email protected]59e69e742013-06-18 20:27:52565 Bind(&TestGLibLoopInternal, Unretained(injector())));
[email protected]b44d5cc2009-06-15 10:30:44566 loop()->Run();
567}
568
569TEST_F(MessagePumpGLibTest, TestGtkLoop) {
[email protected]8f5a7e492012-01-01 02:14:47570 // Tests that events and posted tasks are correctly executed if the message
[email protected]b44d5cc2009-06-15 10:30:44571 // loop is not run by MessageLoop::Run() but by a straight Gtk loop.
572 // Note that in this case we don't make strong guarantees about niceness
573 // between events and posted tasks.
[email protected]8f5a7e492012-01-01 02:14:47574 loop()->PostTask(
575 FROM_HERE,
[email protected]59e69e742013-06-18 20:27:52576 Bind(&TestGtkLoopInternal, Unretained(injector())));
[email protected]b44d5cc2009-06-15 10:30:44577 loop()->Run();
578}
[email protected]7ff48ca2013-02-06 16:56:19579
580} // namespace base