Welcome to mirror list, hosted at ThFree Co, Russian Federation.

worker_thread_tests.cpp « base_tests « base - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2c825f3197601cf7d62881c2ebb183579b7cf99 (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
#include "testing/testing.hpp"

#include "base/worker_thread.hpp"

#include <condition_variable>
#include <mutex>

using namespace base;
using namespace std;

namespace
{
UNIT_TEST(WorkerThread_Smoke)
{
  {
    WorkerThread thread;
  }

  {
    WorkerThread thread;
    thread.Shutdown(WorkerThread::Exit::SkipPending);
  }

  {
    WorkerThread thread;
    thread.Shutdown(WorkerThread::Exit::ExecPending);
  }
}

UNIT_TEST(WorkerThread_SimpleSync)
{
  int value = 0;

  mutex mu;
  condition_variable cv;
  bool done = false;

  WorkerThread thread;
  thread.Push([&value]() { ++value; });
  thread.Push([&value]() { value *= 2; });
  thread.Push([&value]() { value = value * value * value; });
  thread.Push([&]() {
    lock_guard<mutex> lk(mu);
    done = true;
    cv.notify_one();
  });

  {
    unique_lock<mutex> lk(mu);
    cv.wait(lk, [&done]() { return done; });
  }

  TEST_EQUAL(value, 8, ());
}

UNIT_TEST(WorkerThread_SimpleFlush)
{
  int value = 0;
  {
    WorkerThread thread;
    thread.Push([&value]() { ++value; });
    thread.Push([&value]() {
      for (int i = 0; i < 10; ++i)
        value *= 2;
    });
    thread.Shutdown(WorkerThread::Exit::ExecPending);
  }
  TEST_EQUAL(value, 1024, ());
}
}  // namespace