// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:nil -*-
// vim: ts=8 sw=2 smarttab
+#include <boost/iterator/counting_iterator.hpp>
+#include <numeric>
+
#include "test/crimson/gtest_seastar.h"
#include "crimson/common/errorator.h"
#include "crimson/common/log.h"
+#include "seastar/core/sleep.hh"
struct errorator_test_t : public seastar_test_suite_t {
using ertr = crimson::errorator<crimson::ct_error::invarg>;
}
});
}
+ static constexpr int SIZE = 42;
+ ertr::future<> test_parallel_for_each() {
+ auto sum = std::make_unique<int>(0);
+ return ertr::parallel_for_each(
+ boost::make_counting_iterator(0),
+ boost::make_counting_iterator(SIZE),
+ [sum=sum.get()](int i) {
+ *sum += i;
+ }).safe_then([sum=std::move(sum)] {
+ int expected = std::accumulate(boost::make_counting_iterator(0),
+ boost::make_counting_iterator(SIZE),
+ 0);
+ ASSERT_EQ(*sum, expected);
+ });
+ }
struct noncopyable_t {
constexpr noncopyable_t() = default;
~noncopyable_t() = default;
});
}
+TEST_F(errorator_test_t, parallel_for_each)
+{
+ run_async([this] {
+ test_parallel_for_each().unsafe_get0();
+ });
+}
+
TEST_F(errorator_test_t, non_copy_then)
{
run_async([this] {