Giter VIP home page Giter VIP logo

Comments (1)

JanWilczek avatar JanWilczek commented on July 25, 2024

Obviously, the test code was flawed (vector used instead of set). This passes:

#include <gtest/gtest.h>
#include <chrono>
#include <ranges>
#include <algorithm>
#include <thread>
#include <vector>
#include <set>
#include <async++.h>

TEST(Task, ThreadpoolSchedulerOfSize1IsSingleThreadWithWorkQueue) {
  using namespace std::chrono_literals;

  async::threadpool_scheduler scheduler{1};

  std::set<std::thread::id> threadIds;
  std::vector<std::chrono::high_resolution_clock::time_point> startTimes;
  constexpr auto INTERVAL = 2s;

  auto task = [&] {
    startTimes.push_back(std::chrono::high_resolution_clock::now());
    threadIds.insert(std::this_thread::get_id());
    std::this_thread::sleep_for(INTERVAL);
  };

  auto firstTask = async::spawn(scheduler, task)
                       .then(scheduler, task)
                       .then(scheduler, task)
                       .then(scheduler, task);

  // I expect these to be executed after or in-between sub-tasks of the first
  // task
  auto secondTask = async::spawn(scheduler, task);
  auto thirdTask = async::spawn(scheduler, task);

  std::vector<async::task<void>> tasks{};
  tasks.push_back(std::move(firstTask));
  tasks.push_back(std::move(secondTask));
  tasks.push_back(std::move(thirdTask));

  async::when_all(tasks.begin(), tasks.end()).wait();

  // This fails
  EXPECT_EQ(1u, threadIds.size());

  // Each task should have been executed around INTERVAL after the last one.
  std::vector<std::chrono::duration<double>> startTimesDifferences;
  std::ranges::transform(startTimes | std::views::drop(1), startTimes,
                         std::back_inserter(startTimesDifferences),
                         std::minus());
  for (const auto timeDifference : startTimesDifferences) {
    // This succeeds
    EXPECT_NEAR(static_cast<double>(INTERVAL.count()), timeDifference.count(),
                0.02);
  }
}

from asyncplusplus.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.