Files
tdesktop/Telegram/ThirdParty/range-v3/test/action/split.cpp
allhaileris afb81b8278
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
init
2026-02-16 15:50:16 +03:00

140 lines
4.2 KiB
C++

// Range v3 library
//
// Copyright Eric Niebler 2014-present
//
// Use, modification and distribution is subject to the
// Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <cctype>
#include <string>
#include <vector>
#include <range/v3/action/split.hpp>
#include <range/v3/action/split_when.hpp>
#include <range/v3/algorithm/move.hpp>
#include <range/v3/core.hpp>
#include <range/v3/view/c_str.hpp>
#include <range/v3/view/iota.hpp>
#include "../simple_test.hpp"
#include "../test_utils.hpp"
int main()
{
using namespace ranges;
{
auto v = views::ints(1, 21) | to<std::vector>();
std::vector<std::vector<int>> rgv = actions::split(v, 10);
CHECK(rgv.size() == 2u);
::check_equal(rgv[0], {1,2,3,4,5,6,7,8,9});
::check_equal(rgv[1], {11,12,13,14,15,16,17,18,19,20});
using I = std::vector<int>::iterator;
std::vector<std::vector<int>> rgv2 = actions::split_when(
v, [](I b, I) { return std::make_pair(0 == (*b) % 2, next(b)); });
CHECK(rgv2.size() == 10u);
::check_equal(rgv2[0], {1});
::check_equal(rgv2[1], {3});
::check_equal(rgv2[2], {5});
::check_equal(rgv2[3], {7});
::check_equal(rgv2[4], {9});
::check_equal(rgv2[5], {11});
::check_equal(rgv2[6], {13});
::check_equal(rgv2[7], {15});
::check_equal(rgv2[8], {17});
::check_equal(rgv2[9], {19});
}
{
std::string s{"This is his face"};
std::vector<std::string> rgs = actions::split(s, views::c_str(" "));
CHECK(rgs.size() == 4u);
CHECK(rgs[0] == "This");
CHECK(rgs[1] == "is");
CHECK(rgs[2] == "his");
CHECK(rgs[3] == "face");
}
{
std::string s{"This is his face"};
std::vector<std::string> rgs = std::move(s) | actions::split(views::c_str(" "));
CHECK(rgs.size() == 4u);
CHECK(rgs[0] == "This");
CHECK(rgs[1] == "is");
CHECK(rgs[2] == "his");
CHECK(rgs[3] == "face");
}
{
std::string s{"This is his face"};
char ch[] = {' '};
std::vector<std::string> rgs = actions::split(s, ch);
CHECK(rgs.size() == 4u);
CHECK(rgs[0] == "This");
CHECK(rgs[1] == "is");
CHECK(rgs[2] == "his");
CHECK(rgs[3] == "face");
}
{
std::string s{"This is his face"};
char ch[] = {' '};
std::vector<std::string> rgs = std::move(s) | actions::split(ch);
CHECK(rgs.size() == 4u);
CHECK(rgs[0] == "This");
CHECK(rgs[1] == "is");
CHECK(rgs[2] == "his");
CHECK(rgs[3] == "face");
}
{
auto rgi = views::ints(1,21);
std::vector<std::vector<int>> rgv3 = actions::split(rgi, 10);
CHECK(rgv3.size() == 2u);
::check_equal(rgv3[0], {1,2,3,4,5,6,7,8,9});
::check_equal(rgv3[1], {11,12,13,14,15,16,17,18,19,20});
}
{
auto rgi = views::ints(1,21);
std::vector<std::vector<int>> rgv3 = std::move(rgi) | actions::split(10);
CHECK(rgv3.size() == 2u);
::check_equal(rgv3[0], {1,2,3,4,5,6,7,8,9});
::check_equal(rgv3[1], {11,12,13,14,15,16,17,18,19,20});
}
{
std::string str("now is \t the\ttime");
auto toks = actions::split_when(str, +[](int i) { return std::isspace(i); });
static_assert(std::is_same<decltype(toks), std::vector<std::string>>::value, "");
CHECK(toks.size() == 4u);
if(toks.size() == 4u)
{
CHECK(toks[0] == "now");
CHECK(toks[1] == "is");
CHECK(toks[2] == "the");
CHECK(toks[3] == "time");
}
}
{
std::string str("now is \t the\ttime");
auto toks =
std::move(str) | actions::split_when(+[](int i) { return std::isspace(i); });
static_assert(std::is_same<decltype(toks), std::vector<std::string>>::value, "");
CHECK(toks.size() == 4u);
if(toks.size() == 4u)
{
CHECK(toks[0] == "now");
CHECK(toks[1] == "is");
CHECK(toks[2] == "the");
CHECK(toks[3] == "time");
}
}
return ::test_result();
}