blob: 8c734c2d5af88aaf35e5c58819a92f55e88f5dd2 [file] [log] [blame]
David Reissea2cba82009-03-30 21:35:00 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
Mark Slee9f0c6512007-02-28 23:58:26 +000019
Marc Slemko8a40a762006-07-19 17:46:50 +000020#include <iostream>
Marc Slemkoc7782972006-07-25 02:26:35 +000021#include <vector>
Marc Slemko8a40a762006-07-19 17:46:50 +000022#include <string>
23
24#include "ThreadFactoryTests.h"
25#include "TimerManagerTests.h"
Marc Slemkod466b212006-07-20 00:04:18 +000026#include "ThreadManagerTests.h"
Marc Slemko8a40a762006-07-19 17:46:50 +000027
James E. King, III7d211b82017-09-06 10:12:02 -070028// The test weight, where 10 is 10 times more threads than baseline
29// and the baseline is optimized for running in valgrind
James E. King III3ae30422018-03-12 07:33:22 -040030static int WEIGHT = 10;
James E. King, III7d211b82017-09-06 10:12:02 -070031
Marc Slemko8a40a762006-07-19 17:46:50 +000032int main(int argc, char** argv) {
33
Konrad Grochowski16a23a62014-11-13 15:33:38 +010034 std::vector<std::string> args(argc - 1 > 1 ? argc - 1 : 1);
Marc Slemko8a40a762006-07-19 17:46:50 +000035
Marc Slemkoc7782972006-07-25 02:26:35 +000036 args[0] = "all";
Marc Slemko8a40a762006-07-19 17:46:50 +000037
Mark Sleef5f2be42006-09-05 21:05:31 +000038 for (int ix = 1; ix < argc; ix++) {
Marc Slemkoc7782972006-07-25 02:26:35 +000039 args[ix - 1] = std::string(argv[ix]);
Marc Slemko8a40a762006-07-19 17:46:50 +000040 }
41
Sebastian Zenker042580f2019-01-29 15:48:12 +010042 if (getenv("VALGRIND") != nullptr) {
James E. King, III7d211b82017-09-06 10:12:02 -070043 // lower the scale of every test
44 WEIGHT = 1;
45 }
Francois Ferrand69603702017-09-11 12:09:40 +020046
Marc Slemkoc7782972006-07-25 02:26:35 +000047 bool runAll = args[0].compare("all") == 0;
Marc Slemko8a40a762006-07-19 17:46:50 +000048
Mark Sleef5f2be42006-09-05 21:05:31 +000049 if (runAll || args[0].compare("thread-factory") == 0) {
Marc Slemko8a40a762006-07-19 17:46:50 +000050
51 ThreadFactoryTests threadFactoryTests;
Marc Slemko3a3b53b2007-05-22 23:59:54 +000052
Marc Slemko8a40a762006-07-19 17:46:50 +000053 std::cout << "ThreadFactory tests..." << std::endl;
Marc Slemko3a3b53b2007-05-22 23:59:54 +000054
James E. King, III7d211b82017-09-06 10:12:02 -070055 int reapLoops = 2 * WEIGHT;
56 int reapCount = 100 * WEIGHT;
James E. King, IIIdf899132016-11-12 15:16:30 -050057 size_t floodLoops = 3;
James E. King, III7d211b82017-09-06 10:12:02 -070058 size_t floodCount = 500 * WEIGHT;
Marc Slemko8a40a762006-07-19 17:46:50 +000059
James E. King, IIIdf899132016-11-12 15:16:30 -050060 std::cout << "\t\tThreadFactory reap N threads test: N = " << reapLoops << "x" << reapCount << std::endl;
Marc Slemko03dedd92006-07-20 00:58:47 +000061
James E. King, IIIdf899132016-11-12 15:16:30 -050062 if (!threadFactoryTests.reapNThreads(reapLoops, reapCount)) {
63 std::cerr << "\t\ttThreadFactory reap N threads FAILED" << std::endl;
64 return 1;
65 }
Marc Slemko8a40a762006-07-19 17:46:50 +000066
James E. King, IIIdf899132016-11-12 15:16:30 -050067 std::cout << "\t\tThreadFactory flood N threads test: N = " << floodLoops << "x" << floodCount << std::endl;
Marc Slemkoa6479032007-06-05 22:20:14 +000068
James E. King, IIIdf899132016-11-12 15:16:30 -050069 if (!threadFactoryTests.floodNTest(floodLoops, floodCount)) {
70 std::cerr << "\t\ttThreadFactory flood N threads FAILED" << std::endl;
71 return 1;
72 }
Marc Slemkoa6479032007-06-05 22:20:14 +000073
Marc Slemkofe5ba12e2006-07-20 21:16:27 +000074 std::cout << "\t\tThreadFactory synchronous start test" << std::endl;
Marc Slemko8a40a762006-07-19 17:46:50 +000075
James E. King, IIIdf899132016-11-12 15:16:30 -050076 if (!threadFactoryTests.synchStartTest()) {
77 std::cerr << "\t\ttThreadFactory synchronous start FAILED" << std::endl;
78 return 1;
79 }
Marc Slemkoc7782972006-07-25 02:26:35 +000080
81 std::cout << "\t\tThreadFactory monitor timeout test" << std::endl;
82
James E. King, IIIdf899132016-11-12 15:16:30 -050083 if (!threadFactoryTests.monitorTimeoutTest()) {
84 std::cerr << "\t\ttThreadFactory monitor timeout FAILED" << std::endl;
85 return 1;
86 }
Marc Slemko8a40a762006-07-19 17:46:50 +000087 }
88
Mark Sleef5f2be42006-09-05 21:05:31 +000089 if (runAll || args[0].compare("util") == 0) {
Marc Slemkoc7782972006-07-25 02:26:35 +000090
91 std::cout << "Util tests..." << std::endl;
92
93 std::cout << "\t\tUtil minimum time" << std::endl;
94
cyybfdbd032019-01-12 14:38:28 +080095 int64_t time00 = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now().time_since_epoch()).count();
96 int64_t time01 = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now().time_since_epoch()).count();
Marc Slemkoc7782972006-07-25 02:26:35 +000097
98 std::cout << "\t\t\tMinimum time: " << time01 - time00 << "ms" << std::endl;
99
cyybfdbd032019-01-12 14:38:28 +0800100 time00 = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now().time_since_epoch()).count();
Marc Slemkoc7782972006-07-25 02:26:35 +0000101 time01 = time00;
102 size_t count = 0;
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000103
Mark Sleef5f2be42006-09-05 21:05:31 +0000104 while (time01 < time00 + 10) {
Marc Slemkoc7782972006-07-25 02:26:35 +0000105 count++;
cyybfdbd032019-01-12 14:38:28 +0800106 time01 = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now().time_since_epoch()).count();
Marc Slemkoc7782972006-07-25 02:26:35 +0000107 }
108
109 std::cout << "\t\t\tscall per ms: " << count / (time01 - time00) << std::endl;
110 }
111
Mark Sleef5f2be42006-09-05 21:05:31 +0000112 if (runAll || args[0].compare("timer-manager") == 0) {
Marc Slemko8a40a762006-07-19 17:46:50 +0000113
114 std::cout << "TimerManager tests..." << std::endl;
115
116 std::cout << "\t\tTimerManager test00" << std::endl;
117
118 TimerManagerTests timerManagerTests;
119
James E. King, IIIdf899132016-11-12 15:16:30 -0500120 if (!timerManagerTests.test00()) {
121 std::cerr << "\t\tTimerManager tests FAILED" << std::endl;
122 return 1;
123 }
Francois Ferrandcc2d5582017-08-25 09:01:26 +0200124
125 std::cout << "\t\tTimerManager test01" << std::endl;
126
127 if (!timerManagerTests.test01()) {
128 std::cerr << "\t\tTimerManager tests FAILED" << std::endl;
129 return 1;
130 }
131
132 std::cout << "\t\tTimerManager test02" << std::endl;
133
134 if (!timerManagerTests.test02()) {
135 std::cerr << "\t\tTimerManager tests FAILED" << std::endl;
136 return 1;
137 }
Francois Ferrand69603702017-09-11 12:09:40 +0200138
139 std::cout << "\t\tTimerManager test03" << std::endl;
140
141 if (!timerManagerTests.test03()) {
142 std::cerr << "\t\tTimerManager tests FAILED" << std::endl;
143 return 1;
144 }
145
146 std::cout << "\t\tTimerManager test04" << std::endl;
147
148 if (!timerManagerTests.test04()) {
149 std::cerr << "\t\tTimerManager tests FAILED" << std::endl;
150 return 1;
151 }
Marc Slemko8a40a762006-07-19 17:46:50 +0000152 }
Marc Slemkod466b212006-07-20 00:04:18 +0000153
Mark Sleef5f2be42006-09-05 21:05:31 +0000154 if (runAll || args[0].compare("thread-manager") == 0) {
Marc Slemkod466b212006-07-20 00:04:18 +0000155
156 std::cout << "ThreadManager tests..." << std::endl;
157
Marc Slemkoc7782972006-07-25 02:26:35 +0000158 {
James E. King, III7d211b82017-09-06 10:12:02 -0700159 size_t workerCount = 10 * WEIGHT;
160 size_t taskCount = 500 * WEIGHT;
Mark Slee9b82d272007-05-23 05:16:07 +0000161 int64_t delay = 10LL;
Marc Slemkod466b212006-07-20 00:04:18 +0000162
James E. King, IIIdf899132016-11-12 15:16:30 -0500163 ThreadManagerTests threadManagerTests;
164
165 std::cout << "\t\tThreadManager api test:" << std::endl;
166
167 if (!threadManagerTests.apiTest()) {
168 std::cerr << "\t\tThreadManager apiTest FAILED" << std::endl;
169 return 1;
170 }
171
Konrad Grochowski16a23a62014-11-13 15:33:38 +0100172 std::cout << "\t\tThreadManager load test: worker count: " << workerCount
173 << " task count: " << taskCount << " delay: " << delay << std::endl;
Marc Slemkod466b212006-07-20 00:04:18 +0000174
James E. King, IIIdf899132016-11-12 15:16:30 -0500175 if (!threadManagerTests.loadTest(taskCount, delay, workerCount)) {
176 std::cerr << "\t\tThreadManager loadTest FAILED" << std::endl;
177 return 1;
178 }
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000179
Konrad Grochowski16a23a62014-11-13 15:33:38 +0100180 std::cout << "\t\tThreadManager block test: worker count: " << workerCount
181 << " delay: " << delay << std::endl;
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000182
James E. King, IIIdf899132016-11-12 15:16:30 -0500183 if (!threadManagerTests.blockTest(delay, workerCount)) {
184 std::cerr << "\t\tThreadManager blockTest FAILED" << std::endl;
185 return 1;
186 }
Marc Slemkoc7782972006-07-25 02:26:35 +0000187 }
188 }
189
Mark Sleef5f2be42006-09-05 21:05:31 +0000190 if (runAll || args[0].compare("thread-manager-benchmark") == 0) {
Marc Slemkoc7782972006-07-25 02:26:35 +0000191
192 std::cout << "ThreadManager benchmark tests..." << std::endl;
193
194 {
195
196 size_t minWorkerCount = 2;
197
James E. King, III7d211b82017-09-06 10:12:02 -0700198 size_t maxWorkerCount = 8;
Marc Slemkoc7782972006-07-25 02:26:35 +0000199
James E. King, III7d211b82017-09-06 10:12:02 -0700200 size_t tasksPerWorker = 100 * WEIGHT;
Marc Slemkoc7782972006-07-25 02:26:35 +0000201
James E. King, IIIdf899132016-11-12 15:16:30 -0500202 int64_t delay = 5LL;
Marc Slemkoc7782972006-07-25 02:26:35 +0000203
James E. King, III7d211b82017-09-06 10:12:02 -0700204 for (size_t workerCount = minWorkerCount; workerCount <= maxWorkerCount; workerCount *= 4) {
Marc Slemkoc7782972006-07-25 02:26:35 +0000205
David Reiss96d23882007-07-26 21:10:32 +0000206 size_t taskCount = workerCount * tasksPerWorker;
Marc Slemkoc7782972006-07-25 02:26:35 +0000207
Konrad Grochowski16a23a62014-11-13 15:33:38 +0100208 std::cout << "\t\tThreadManager load test: worker count: " << workerCount
209 << " task count: " << taskCount << " delay: " << delay << std::endl;
Marc Slemkoc7782972006-07-25 02:26:35 +0000210
David Reiss96d23882007-07-26 21:10:32 +0000211 ThreadManagerTests threadManagerTests;
Marc Slemkoc7782972006-07-25 02:26:35 +0000212
James E. King, IIIdf899132016-11-12 15:16:30 -0500213 if (!threadManagerTests.loadTest(taskCount, delay, workerCount))
214 {
215 std::cerr << "\t\tThreadManager loadTest FAILED" << std::endl;
216 return 1;
217 }
Marc Slemkoc7782972006-07-25 02:26:35 +0000218 }
219 }
Marc Slemkod466b212006-07-20 00:04:18 +0000220 }
James E. King, IIIdf899132016-11-12 15:16:30 -0500221
222 std::cout << "ALL TESTS PASSED" << std::endl;
223 return 0;
Marc Slemko8a40a762006-07-19 17:46:50 +0000224}