aboutsummaryrefslogtreecommitdiffstats
path: root/brillo/message_loops/fake_message_loop_test.cc
blob: b4b839cea7993b53a7dcc78b64d93aaf75ea09b6 (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
// Copyright 2015 The Chromium OS 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 <brillo/message_loops/fake_message_loop.h>

#include <memory>
#include <vector>

#include <base/bind.h>
#include <base/bind_helpers.h>
#include <base/location.h>
#include <base/test/simple_test_clock.h>
#include <gtest/gtest.h>

#include <brillo/message_loops/message_loop.h>

using base::Bind;
using base::Time;
using base::TimeDelta;
using std::vector;

namespace brillo {

using TaskId = MessageLoop::TaskId;

class FakeMessageLoopTest : public ::testing::Test {
 protected:
  void SetUp() override {
    loop_.reset(new FakeMessageLoop(nullptr));
    EXPECT_TRUE(loop_.get());
  }
  void TearDown() override {
    EXPECT_FALSE(loop_->PendingTasks());
  }

  base::SimpleTestClock clock_;
  std::unique_ptr<FakeMessageLoop> loop_;
};

TEST_F(FakeMessageLoopTest, CancelTaskInvalidValuesTest) {
  EXPECT_FALSE(loop_->CancelTask(MessageLoop::kTaskIdNull));
  EXPECT_FALSE(loop_->CancelTask(1234));
}

TEST_F(FakeMessageLoopTest, PostDelayedTaskRunsInOrder) {
  vector<int> order;
  auto callback = [](std::vector<int>* order, int value) {
    order->push_back(value);
  };
  loop_->PostDelayedTask(Bind(callback, base::Unretained(&order), 1),
                         TimeDelta::FromSeconds(1));
  loop_->PostDelayedTask(Bind(callback, base::Unretained(&order), 4),
                         TimeDelta::FromSeconds(4));
  loop_->PostDelayedTask(Bind(callback, base::Unretained(&order), 3),
                         TimeDelta::FromSeconds(3));
  loop_->PostDelayedTask(Bind(callback, base::Unretained(&order), 2),
                         TimeDelta::FromSeconds(2));
  // Run until all the tasks are run.
  loop_->Run();
  EXPECT_EQ((vector<int>{1, 2, 3, 4}), order);
}

TEST_F(FakeMessageLoopTest, PostDelayedTaskAdvancesTheTime) {
  Time start = Time::FromInternalValue(1000000);
  clock_.SetNow(start);
  loop_.reset(new FakeMessageLoop(&clock_));
  loop_->PostDelayedTask(base::DoNothing(), TimeDelta::FromSeconds(1));
  loop_->PostDelayedTask(base::DoNothing(), TimeDelta::FromSeconds(2));
  EXPECT_FALSE(loop_->RunOnce(false));
  // If the callback didn't run, the time shouldn't change.
  EXPECT_EQ(start, clock_.Now());

  // If we run only one callback, the time should be set to the time that
  // callack ran.
  EXPECT_TRUE(loop_->RunOnce(true));
  EXPECT_EQ(start + TimeDelta::FromSeconds(1), clock_.Now());

  // If the clock is advanced manually, we should be able to run the
  // callback without blocking, since the firing time is in the past.
  clock_.SetNow(start + TimeDelta::FromSeconds(3));
  EXPECT_TRUE(loop_->RunOnce(false));
  // The time should not change even if the callback is due in the past.
  EXPECT_EQ(start + TimeDelta::FromSeconds(3), clock_.Now());
}

TEST_F(FakeMessageLoopTest, WatchFileDescriptorWaits) {
  int fd = 1234;
  // We will simulate this situation. At the beginning, we will watch for a
  // file descriptor that won't trigger for 10s. Then we will pretend it is
  // ready after 10s and expect its callback to run just once.
  int called = 0;
  TaskId task_id = loop_->WatchFileDescriptor(
      FROM_HERE, fd, MessageLoop::kWatchRead, false,
      Bind([](int* called) { (*called)++; }, base::Unretained(&called)));
  EXPECT_NE(MessageLoop::kTaskIdNull, task_id);

  EXPECT_NE(MessageLoop::kTaskIdNull,
            loop_->PostDelayedTask(Bind(&FakeMessageLoop::BreakLoop,
                                        base::Unretained(loop_.get())),
                                   TimeDelta::FromSeconds(10)));
  EXPECT_NE(MessageLoop::kTaskIdNull,
            loop_->PostDelayedTask(Bind(&FakeMessageLoop::BreakLoop,
                                        base::Unretained(loop_.get())),
                                   TimeDelta::FromSeconds(20)));
  loop_->Run();
  EXPECT_EQ(0, called);

  loop_->SetFileDescriptorReadiness(fd, MessageLoop::kWatchRead, true);
  loop_->Run();
  EXPECT_EQ(1, called);
  EXPECT_FALSE(loop_->CancelTask(task_id));
}

TEST_F(FakeMessageLoopTest, PendingTasksTest) {
  loop_->PostDelayedTask(base::DoNothing(), TimeDelta::FromSeconds(1));
  EXPECT_TRUE(loop_->PendingTasks());
  loop_->Run();
}

}  // namespace brillo