-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathutils_ut.cpp
46 lines (35 loc) · 1.2 KB
/
utils_ut.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include "utils.h"
#include <library/cpp/testing/unittest/registar.h>
#include <util/generic/size_literals.h>
#include <util/string/join.h>
#include <google/protobuf/repeated_ptr_field.h>
namespace NCloud::NFileStore::NStorage {
////////////////////////////////////////////////////////////////////////////////
Y_UNIT_TEST_SUITE(TUtilsTest)
{
Y_UNIT_TEST(ShouldRemoveByIndices)
{
google::protobuf::RepeatedPtrField<TString> strings;
strings.Add("aaa");
strings.Add("bbb");
strings.Add("ccc");
strings.Add("ddd");
strings.Add("eee");
google::protobuf::RepeatedPtrField<TString> strings2;
strings2.Add("100");
strings2.Add("200");
strings2.Add("300");
strings2.Add("400");
strings2.Add("500");
TVector<ui32> indices{1, 4, 2};
RemoveByIndices(strings, indices);
RemoveByIndices(strings2, indices);
UNIT_ASSERT_VALUES_EQUAL(
"aaa,ddd",
JoinRange(",", strings.begin(), strings.end()));
UNIT_ASSERT_VALUES_EQUAL(
"100,400",
JoinRange(",", strings2.begin(), strings2.end()));
}
}
} // namespace NCloud::NFileStore::NStorage