David Reiss | ea2cba8 | 2009-03-30 21:35:00 +0000 | [diff] [blame] | 1 | /* |
| 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 Slee | 9f0c651 | 2007-02-28 23:58:26 +0000 | [diff] [blame] | 19 | |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 20 | #include <iostream> |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 21 | #include <vector> |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 22 | #include <string> |
| 23 | |
| 24 | #include "ThreadFactoryTests.h" |
| 25 | #include "TimerManagerTests.h" |
Marc Slemko | d466b21 | 2006-07-20 00:04:18 +0000 | [diff] [blame] | 26 | #include "ThreadManagerTests.h" |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 27 | |
James E. King, III | 7d211b8 | 2017-09-06 10:12:02 -0700 | [diff] [blame^] | 28 | // The test weight, where 10 is 10 times more threads than baseline |
| 29 | // and the baseline is optimized for running in valgrind |
| 30 | static size_t WEIGHT = 10; |
| 31 | |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 32 | int main(int argc, char** argv) { |
| 33 | |
| 34 | std::string arg; |
| 35 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 36 | std::vector<std::string> args(argc - 1 > 1 ? argc - 1 : 1); |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 37 | |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 38 | args[0] = "all"; |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 39 | |
Mark Slee | f5f2be4 | 2006-09-05 21:05:31 +0000 | [diff] [blame] | 40 | for (int ix = 1; ix < argc; ix++) { |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 41 | args[ix - 1] = std::string(argv[ix]); |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 42 | } |
| 43 | |
James E. King, III | 7d211b8 | 2017-09-06 10:12:02 -0700 | [diff] [blame^] | 44 | if (getenv("VALGRIND") != 0) { |
| 45 | // lower the scale of every test |
| 46 | WEIGHT = 1; |
| 47 | } |
| 48 | |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 49 | bool runAll = args[0].compare("all") == 0; |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 50 | |
Mark Slee | f5f2be4 | 2006-09-05 21:05:31 +0000 | [diff] [blame] | 51 | if (runAll || args[0].compare("thread-factory") == 0) { |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 52 | |
| 53 | ThreadFactoryTests threadFactoryTests; |
Marc Slemko | 3a3b53b | 2007-05-22 23:59:54 +0000 | [diff] [blame] | 54 | |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 55 | std::cout << "ThreadFactory tests..." << std::endl; |
Marc Slemko | 3a3b53b | 2007-05-22 23:59:54 +0000 | [diff] [blame] | 56 | |
James E. King, III | 7d211b8 | 2017-09-06 10:12:02 -0700 | [diff] [blame^] | 57 | int reapLoops = 2 * WEIGHT; |
| 58 | int reapCount = 100 * WEIGHT; |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 59 | size_t floodLoops = 3; |
James E. King, III | 7d211b8 | 2017-09-06 10:12:02 -0700 | [diff] [blame^] | 60 | size_t floodCount = 500 * WEIGHT; |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 61 | |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 62 | std::cout << "\t\tThreadFactory reap N threads test: N = " << reapLoops << "x" << reapCount << std::endl; |
Marc Slemko | 03dedd9 | 2006-07-20 00:58:47 +0000 | [diff] [blame] | 63 | |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 64 | if (!threadFactoryTests.reapNThreads(reapLoops, reapCount)) { |
| 65 | std::cerr << "\t\ttThreadFactory reap N threads FAILED" << std::endl; |
| 66 | return 1; |
| 67 | } |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 68 | |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 69 | std::cout << "\t\tThreadFactory flood N threads test: N = " << floodLoops << "x" << floodCount << std::endl; |
Marc Slemko | a647903 | 2007-06-05 22:20:14 +0000 | [diff] [blame] | 70 | |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 71 | if (!threadFactoryTests.floodNTest(floodLoops, floodCount)) { |
| 72 | std::cerr << "\t\ttThreadFactory flood N threads FAILED" << std::endl; |
| 73 | return 1; |
| 74 | } |
Marc Slemko | a647903 | 2007-06-05 22:20:14 +0000 | [diff] [blame] | 75 | |
Marc Slemko | fe5ba12e | 2006-07-20 21:16:27 +0000 | [diff] [blame] | 76 | std::cout << "\t\tThreadFactory synchronous start test" << std::endl; |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 77 | |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 78 | if (!threadFactoryTests.synchStartTest()) { |
| 79 | std::cerr << "\t\ttThreadFactory synchronous start FAILED" << std::endl; |
| 80 | return 1; |
| 81 | } |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 82 | |
| 83 | std::cout << "\t\tThreadFactory monitor timeout test" << std::endl; |
| 84 | |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 85 | if (!threadFactoryTests.monitorTimeoutTest()) { |
| 86 | std::cerr << "\t\ttThreadFactory monitor timeout FAILED" << std::endl; |
| 87 | return 1; |
| 88 | } |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Mark Slee | f5f2be4 | 2006-09-05 21:05:31 +0000 | [diff] [blame] | 91 | if (runAll || args[0].compare("util") == 0) { |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 92 | |
| 93 | std::cout << "Util tests..." << std::endl; |
| 94 | |
| 95 | std::cout << "\t\tUtil minimum time" << std::endl; |
| 96 | |
Mark Slee | 9b82d27 | 2007-05-23 05:16:07 +0000 | [diff] [blame] | 97 | int64_t time00 = Util::currentTime(); |
| 98 | int64_t time01 = Util::currentTime(); |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 99 | |
| 100 | std::cout << "\t\t\tMinimum time: " << time01 - time00 << "ms" << std::endl; |
| 101 | |
| 102 | time00 = Util::currentTime(); |
| 103 | time01 = time00; |
| 104 | size_t count = 0; |
Marc Slemko | 3a3b53b | 2007-05-22 23:59:54 +0000 | [diff] [blame] | 105 | |
Mark Slee | f5f2be4 | 2006-09-05 21:05:31 +0000 | [diff] [blame] | 106 | while (time01 < time00 + 10) { |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 107 | count++; |
| 108 | time01 = Util::currentTime(); |
| 109 | } |
| 110 | |
| 111 | std::cout << "\t\t\tscall per ms: " << count / (time01 - time00) << std::endl; |
| 112 | } |
| 113 | |
Mark Slee | f5f2be4 | 2006-09-05 21:05:31 +0000 | [diff] [blame] | 114 | if (runAll || args[0].compare("timer-manager") == 0) { |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 115 | |
| 116 | std::cout << "TimerManager tests..." << std::endl; |
| 117 | |
| 118 | std::cout << "\t\tTimerManager test00" << std::endl; |
| 119 | |
| 120 | TimerManagerTests timerManagerTests; |
| 121 | |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 122 | if (!timerManagerTests.test00()) { |
| 123 | std::cerr << "\t\tTimerManager tests FAILED" << std::endl; |
| 124 | return 1; |
| 125 | } |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 126 | } |
Marc Slemko | d466b21 | 2006-07-20 00:04:18 +0000 | [diff] [blame] | 127 | |
Mark Slee | f5f2be4 | 2006-09-05 21:05:31 +0000 | [diff] [blame] | 128 | if (runAll || args[0].compare("thread-manager") == 0) { |
Marc Slemko | d466b21 | 2006-07-20 00:04:18 +0000 | [diff] [blame] | 129 | |
| 130 | std::cout << "ThreadManager tests..." << std::endl; |
| 131 | |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 132 | { |
James E. King, III | 7d211b8 | 2017-09-06 10:12:02 -0700 | [diff] [blame^] | 133 | size_t workerCount = 10 * WEIGHT; |
| 134 | size_t taskCount = 500 * WEIGHT; |
Mark Slee | 9b82d27 | 2007-05-23 05:16:07 +0000 | [diff] [blame] | 135 | int64_t delay = 10LL; |
Marc Slemko | d466b21 | 2006-07-20 00:04:18 +0000 | [diff] [blame] | 136 | |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 137 | ThreadManagerTests threadManagerTests; |
| 138 | |
| 139 | std::cout << "\t\tThreadManager api test:" << std::endl; |
| 140 | |
| 141 | if (!threadManagerTests.apiTest()) { |
| 142 | std::cerr << "\t\tThreadManager apiTest FAILED" << std::endl; |
| 143 | return 1; |
| 144 | } |
| 145 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 146 | std::cout << "\t\tThreadManager load test: worker count: " << workerCount |
| 147 | << " task count: " << taskCount << " delay: " << delay << std::endl; |
Marc Slemko | d466b21 | 2006-07-20 00:04:18 +0000 | [diff] [blame] | 148 | |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 149 | if (!threadManagerTests.loadTest(taskCount, delay, workerCount)) { |
| 150 | std::cerr << "\t\tThreadManager loadTest FAILED" << std::endl; |
| 151 | return 1; |
| 152 | } |
Marc Slemko | 3a3b53b | 2007-05-22 23:59:54 +0000 | [diff] [blame] | 153 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 154 | std::cout << "\t\tThreadManager block test: worker count: " << workerCount |
| 155 | << " delay: " << delay << std::endl; |
Marc Slemko | 3a3b53b | 2007-05-22 23:59:54 +0000 | [diff] [blame] | 156 | |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 157 | if (!threadManagerTests.blockTest(delay, workerCount)) { |
| 158 | std::cerr << "\t\tThreadManager blockTest FAILED" << std::endl; |
| 159 | return 1; |
| 160 | } |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 161 | } |
| 162 | } |
| 163 | |
Mark Slee | f5f2be4 | 2006-09-05 21:05:31 +0000 | [diff] [blame] | 164 | if (runAll || args[0].compare("thread-manager-benchmark") == 0) { |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 165 | |
| 166 | std::cout << "ThreadManager benchmark tests..." << std::endl; |
| 167 | |
| 168 | { |
| 169 | |
| 170 | size_t minWorkerCount = 2; |
| 171 | |
James E. King, III | 7d211b8 | 2017-09-06 10:12:02 -0700 | [diff] [blame^] | 172 | size_t maxWorkerCount = 8; |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 173 | |
James E. King, III | 7d211b8 | 2017-09-06 10:12:02 -0700 | [diff] [blame^] | 174 | size_t tasksPerWorker = 100 * WEIGHT; |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 175 | |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 176 | int64_t delay = 5LL; |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 177 | |
James E. King, III | 7d211b8 | 2017-09-06 10:12:02 -0700 | [diff] [blame^] | 178 | for (size_t workerCount = minWorkerCount; workerCount <= maxWorkerCount; workerCount *= 4) { |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 179 | |
David Reiss | 96d2388 | 2007-07-26 21:10:32 +0000 | [diff] [blame] | 180 | size_t taskCount = workerCount * tasksPerWorker; |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 181 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 182 | std::cout << "\t\tThreadManager load test: worker count: " << workerCount |
| 183 | << " task count: " << taskCount << " delay: " << delay << std::endl; |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 184 | |
David Reiss | 96d2388 | 2007-07-26 21:10:32 +0000 | [diff] [blame] | 185 | ThreadManagerTests threadManagerTests; |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 186 | |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 187 | if (!threadManagerTests.loadTest(taskCount, delay, workerCount)) |
| 188 | { |
| 189 | std::cerr << "\t\tThreadManager loadTest FAILED" << std::endl; |
| 190 | return 1; |
| 191 | } |
Marc Slemko | c778297 | 2006-07-25 02:26:35 +0000 | [diff] [blame] | 192 | } |
| 193 | } |
Marc Slemko | d466b21 | 2006-07-20 00:04:18 +0000 | [diff] [blame] | 194 | } |
James E. King, III | df89913 | 2016-11-12 15:16:30 -0500 | [diff] [blame] | 195 | |
| 196 | std::cout << "ALL TESTS PASSED" << std::endl; |
| 197 | return 0; |
Marc Slemko | 8a40a76 | 2006-07-19 17:46:50 +0000 | [diff] [blame] | 198 | } |