forked from apache/brpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
callback_helpers_unittest.cc
61 lines (52 loc) · 1.42 KB
/
callback_helpers_unittest.cc
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
// Copyright 2013 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 "butil/callback_helpers.h"
#include "butil/bind.h"
#include "butil/callback.h"
#include <gtest/gtest.h>
namespace {
void Increment(int* value) {
(*value)++;
}
TEST(BindHelpersTest, TestScopedClosureRunnerExitScope) {
int run_count = 0;
{
butil::ScopedClosureRunner runner(butil::Bind(&Increment, &run_count));
EXPECT_EQ(0, run_count);
}
EXPECT_EQ(1, run_count);
}
TEST(BindHelpersTest, TestScopedClosureRunnerRelease) {
int run_count = 0;
butil::Closure c;
{
butil::ScopedClosureRunner runner(butil::Bind(&Increment, &run_count));
c = runner.Release();
EXPECT_EQ(0, run_count);
}
EXPECT_EQ(0, run_count);
c.Run();
EXPECT_EQ(1, run_count);
}
TEST(BindHelpersTest, TestScopedClosureRunnerReset) {
int run_count_1 = 0;
int run_count_2 = 0;
{
butil::ScopedClosureRunner runner;
runner.Reset(butil::Bind(&Increment, &run_count_1));
runner.Reset(butil::Bind(&Increment, &run_count_2));
EXPECT_EQ(1, run_count_1);
EXPECT_EQ(0, run_count_2);
}
EXPECT_EQ(1, run_count_2);
int run_count_3 = 0;
{
butil::ScopedClosureRunner runner(butil::Bind(&Increment, &run_count_3));
EXPECT_EQ(0, run_count_3);
runner.Reset();
EXPECT_EQ(1, run_count_3);
}
EXPECT_EQ(1, run_count_3);
}
} // namespace