| /** |
| * |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. |
| * The ASF licenses this file to You under the Apache License, Version 2.0 |
| * (the "License"); you may not use this file except in compliance with |
| * the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #include <utility> |
| #include <future> |
| #include <memory> |
| #include "unit/TestBase.h" |
| #include "unit/Catch.h" |
| #include "utils/BackTrace.h" |
| #include "utils/Monitors.h" |
| #include "utils/ThreadPool.h" |
| #include "range/v3/algorithm/any_of.hpp" |
| |
| using namespace std::literals::chrono_literals; |
| |
| TEST_CASE("BT1", "[TPT1]") { |
| const BackTrace trace = TraceResolver::getResolver().getBackTrace("BT1"); |
| #ifdef HAS_EXECINFO |
| CHECK(!trace.getTraces().empty()); |
| #endif |
| } |
| |
| void inner_function(std::atomic_flag& ready_to_check, std::atomic_flag& checking_done) { |
| ready_to_check.test_and_set(); |
| ready_to_check.notify_all(); |
| checking_done.wait(false); |
| } |
| |
| void outer_function(std::atomic_flag& ready_to_check, std::atomic_flag& checking_done) { |
| inner_function(ready_to_check, checking_done); |
| } |
| |
| |
| TEST_CASE("BT2", "[TPT2]") { |
| std::atomic_flag ready_for_checking; |
| std::atomic_flag done_with_checking; |
| |
| constexpr std::string_view thread_pool_name = "Winnie the pool"; |
| constexpr size_t number_of_worker_threads = 3; |
| utils::ThreadPool pool(number_of_worker_threads, nullptr, thread_pool_name.data()); |
| utils::Worker worker([&]() -> utils::TaskRescheduleInfo { |
| outer_function(ready_for_checking, done_with_checking); |
| return utils::TaskRescheduleInfo::Done(); |
| }, "id"); |
| std::future<utils::TaskRescheduleInfo> future; |
| pool.execute(std::move(worker), future); |
| |
| pool.start(); |
| { |
| ready_for_checking.wait(false); |
| std::vector<BackTrace> traces = pool.getTraces(); |
| CHECK(traces.size() <= number_of_worker_threads); |
| REQUIRE(!traces.empty()); |
| for (const auto &trace : traces) { |
| CHECK(trace.getName().starts_with(thread_pool_name)); |
| } |
| #ifdef HAS_EXECINFO |
| auto first_worker_trace = traces.front(); |
| CHECK(ranges::any_of(first_worker_trace.getTraces(), [](const std::string& trace_line) { return trace_line.find("run_tasks") != trace_line.npos; })); |
| #ifdef DEBUG |
| CHECK(ranges::any_of(first_worker_trace.getTraces(), [](const std::string& trace_line) { return trace_line.find("outer_function") != trace_line.npos; })); |
| CHECK(ranges::any_of(first_worker_trace.getTraces(), [](const std::string& trace_line) { return trace_line.find("inner_function") != trace_line.npos; })); |
| #endif |
| #endif |
| done_with_checking.test_and_set(); |
| done_with_checking.notify_all(); |
| } |
| future.wait(); |
| } |