summaryrefslogtreecommitdiff
path: root/test/util/run_loop.cpp
blob: f00f7248b550b3ba25f578ea14cf7050a9a89b40 (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
#include <mbgl/util/run_loop.hpp>
#include <mbgl/util/timer.hpp>

#include "../fixtures/util.hpp"

using namespace mbgl::util;

TEST(RunLoop, Stop) {
    RunLoop loop(RunLoop::Type::New);

    Timer timer;
    timer.start(mbgl::Duration::zero(), mbgl::Duration::zero(), [&] {
        loop.stop();
    });

    loop.run();
}

TEST(RunLoop, MultipleStop) {
    RunLoop loop(RunLoop::Type::New);

    Timer timer;
    timer.start(mbgl::Duration::zero(), mbgl::Duration::zero(), [&] {
        loop.stop();
        loop.stop();
        loop.stop();
        loop.stop();
    });

    loop.run();
}

TEST(RunLoop, UnrefShouldStop) {
    RunLoop loop(RunLoop::Type::New);

    Timer timer;
    timer.start(mbgl::Duration::zero(), mbgl::Duration::zero(), [&] {
        loop.unref();
    });

    loop.run();
}

TEST(RunLoop, RefUnref) {
    RunLoop loop(RunLoop::Type::New);

    Timer timer;
    auto zero = mbgl::Duration::zero();

    auto cb3 = [&] {
        loop.stop();
    };

    auto cb2 = [&] {
        loop.unref();
        loop.unref();

        loop.ref();

        timer.start(zero, zero, cb3);
    };

    auto cb1 = [&] {
        loop.ref();
        loop.ref();

        loop.unref();

        timer.start(zero, zero, cb2);
    };

    timer.start(zero, zero, cb1);

    loop.run();
}