-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathabstract_thread_tests.cpp
102 lines (76 loc) · 2.17 KB
/
abstract_thread_tests.cpp
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
//
// Created by Herbert Koelman on 2019-07-28.
//
#include <pthread.h>
#include "pthread/pthread.hpp"
#include "gtest/gtest.h"
#include <cstdio>
#include <iostream>
#include <string>
#include <memory>
#include <ctime>
#include <chrono>
class test_thread : public pthread::abstract_thread {
public:
void run() noexcept {
try {
long counter = 0;
std::cout << std::flush << "Test thread is running..." << std::flush;
pthread::this_thread::sleep_for(2 * 100);
for (auto count = 1000; count > 0; count--) {
counter += count;
}
std::cout << "Done" << std::endl << std::flush;
} catch (std::exception &err) {
std::cerr << "something went wrong while running test_thread. " << err.what() << std::endl << std::flush;
}
}
};
TEST(abstract_thread, constructor) {
test_thread t;
t.start();
t.join();
}
TEST(abstract_thread, joinable) {
test_thread t;
t.start();
if (t.joinable()) t.join();
}
TEST(abstract_thread, not_joinable) {
test_thread t;
t.start();
pthread::this_thread::sleep_for(3 * 1000);
EXPECT_TRUE(t.joinable());
t.join(); // once joined, the thread is no more a thread and can not be joined again.
EXPECT_FALSE(t.joinable());
}
TEST(abstract_thread, self_join) {
class test_join_thread : public pthread::abstract_thread {
public:
void run() noexcept {
EXPECT_THROW(join(), pthread::thread_exception); // this should not work, self joining
}
};
test_join_thread T1;
T1.start();
pthread::this_thread::sleep_for(500);
EXPECT_NO_THROW(T1.join());
}
TEST(abstract_thread_group, start_auto_join) {
pthread::thread_group threads{true};
EXPECT_TRUE(threads.destructor_joins_first());
for (auto x = 10; x > 0; x--) {
threads.add(new test_thread{});
}
EXPECT_EQ(threads.size(), 10);
threads.start();
}
TEST(abstract_thread_group, start_join) {
pthread::thread_group threads;
for (auto x = 10; x > 0; x--) {
threads.add(new test_thread{});
}
EXPECT_EQ(threads.size(), 10);
threads.start();
threads.join();
}