aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/monlib/encode
diff options
context:
space:
mode:
authoryazevnul <yazevnul@yandex-team.ru>2022-02-10 16:46:48 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:48 +0300
commit9abfb1a53b7f7b791444d1378e645d8fad9b06ed (patch)
tree49e222ea1c5804306084bb3ae065bb702625360f /library/cpp/monlib/encode
parent8cbc307de0221f84c80c42dcbe07d40727537e2c (diff)
downloadydb-9abfb1a53b7f7b791444d1378e645d8fad9b06ed.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/monlib/encode')
-rw-r--r--library/cpp/monlib/encode/buffered/string_pool_ut.cpp8
-rw-r--r--library/cpp/monlib/encode/format_ut.cpp10
-rw-r--r--library/cpp/monlib/encode/json/json_ut.cpp6
-rw-r--r--library/cpp/monlib/encode/spack/spack_v1_ut.cpp12
-rw-r--r--library/cpp/monlib/encode/text/text_encoder_ut.cpp10
5 files changed, 23 insertions, 23 deletions
diff --git a/library/cpp/monlib/encode/buffered/string_pool_ut.cpp b/library/cpp/monlib/encode/buffered/string_pool_ut.cpp
index 1b360f5cdc..9fc3421d0b 100644
--- a/library/cpp/monlib/encode/buffered/string_pool_ut.cpp
+++ b/library/cpp/monlib/encode/buffered/string_pool_ut.cpp
@@ -4,8 +4,8 @@
using namespace NMonitoring;
-Y_UNIT_TEST_SUITE(TStringPoolTest) {
- Y_UNIT_TEST(PutIfAbsent) {
+Y_UNIT_TEST_SUITE(TStringPoolTest) {
+ Y_UNIT_TEST(PutIfAbsent) {
TStringPoolBuilder strPool;
strPool.SetSorted(true);
@@ -25,7 +25,7 @@ Y_UNIT_TEST_SUITE(TStringPoolTest) {
UNIT_ASSERT_VALUES_EQUAL(strPool.Count(), 2);
}
- Y_UNIT_TEST(SortByFrequency) {
+ Y_UNIT_TEST(SortByFrequency) {
TStringPoolBuilder strPool;
strPool.SetSorted(true);
@@ -47,7 +47,7 @@ Y_UNIT_TEST_SUITE(TStringPoolTest) {
UNIT_ASSERT_VALUES_EQUAL(strPool.Count(), 2);
}
- Y_UNIT_TEST(ForEach) {
+ Y_UNIT_TEST(ForEach) {
TStringPoolBuilder strPool;
strPool.SetSorted(true);
diff --git a/library/cpp/monlib/encode/format_ut.cpp b/library/cpp/monlib/encode/format_ut.cpp
index 516d89cd3f..22a0e30c03 100644
--- a/library/cpp/monlib/encode/format_ut.cpp
+++ b/library/cpp/monlib/encode/format_ut.cpp
@@ -9,7 +9,7 @@
using namespace NMonitoring;
-Y_UNIT_TEST_SUITE(TFormatTest) {
+Y_UNIT_TEST_SUITE(TFormatTest) {
Y_UNIT_TEST(ContentTypeHeader) {
UNIT_ASSERT_EQUAL(FormatFromContentType(""), EFormat::UNKNOWN);
UNIT_ASSERT_EQUAL(FormatFromContentType("application/json;some=stuff"), EFormat::JSON);
@@ -18,7 +18,7 @@ Y_UNIT_TEST_SUITE(TFormatTest) {
UNIT_ASSERT_EQUAL(FormatFromContentType(";application/xml"), EFormat::UNKNOWN);
}
- Y_UNIT_TEST(AcceptHeader) {
+ Y_UNIT_TEST(AcceptHeader) {
UNIT_ASSERT_EQUAL(FormatFromAcceptHeader(""), EFormat::UNKNOWN);
UNIT_ASSERT_EQUAL(FormatFromAcceptHeader("*/*"), EFormat::UNKNOWN);
@@ -63,7 +63,7 @@ Y_UNIT_TEST_SUITE(TFormatTest) {
EFormat::PROMETHEUS);
}
- Y_UNIT_TEST(FormatToStrFromStr) {
+ Y_UNIT_TEST(FormatToStrFromStr) {
const std::array<EFormat, 6> formats = {{
EFormat::UNKNOWN,
EFormat::SPACK,
@@ -80,7 +80,7 @@ Y_UNIT_TEST_SUITE(TFormatTest) {
}
}
- Y_UNIT_TEST(AcceptEncodingHeader) {
+ Y_UNIT_TEST(AcceptEncodingHeader) {
UNIT_ASSERT_EQUAL(
CompressionFromAcceptEncodingHeader(""),
ECompression::UNKNOWN);
@@ -118,7 +118,7 @@ Y_UNIT_TEST_SUITE(TFormatTest) {
ECompression::LZ4);
}
- Y_UNIT_TEST(CompressionToStrFromStr) {
+ Y_UNIT_TEST(CompressionToStrFromStr) {
const std::array<ECompression, 5> algs = {{
ECompression::UNKNOWN,
ECompression::IDENTITY,
diff --git a/library/cpp/monlib/encode/json/json_ut.cpp b/library/cpp/monlib/encode/json/json_ut.cpp
index e76e6691f9..09e7909289 100644
--- a/library/cpp/monlib/encode/json/json_ut.cpp
+++ b/library/cpp/monlib/encode/json/json_ut.cpp
@@ -132,10 +132,10 @@ namespace {
} // namespace
-Y_UNIT_TEST_SUITE(TJsonTest) {
+Y_UNIT_TEST_SUITE(TJsonTest) {
const TInstant now = TInstant::ParseIso8601Deprecated("2017-11-05T01:02:03Z");
- Y_UNIT_TEST(Encode) {
+ Y_UNIT_TEST(Encode) {
auto check = [](bool cloud, bool buffered, TStringBuf expectedResourceKey) {
TString json;
TStringOutput out(json);
@@ -353,7 +353,7 @@ Y_UNIT_TEST_SUITE(TJsonTest) {
AssertPointEqual(s.GetPoints(0), TInstant::Zero(), ui64(1));
}
}
- Y_UNIT_TEST(Decode1) {
+ Y_UNIT_TEST(Decode1) {
NProto::TMultiSamplesList samples;
{
IMetricEncoderPtr e = EncoderProtobuf(&samples);
diff --git a/library/cpp/monlib/encode/spack/spack_v1_ut.cpp b/library/cpp/monlib/encode/spack/spack_v1_ut.cpp
index ca3843f7e4..fe778eb7e0 100644
--- a/library/cpp/monlib/encode/spack/spack_v1_ut.cpp
+++ b/library/cpp/monlib/encode/spack/spack_v1_ut.cpp
@@ -48,7 +48,7 @@ void AssertPointEqual(const NProto::TPoint& p, TInstant time, i64 value) {
UNIT_ASSERT_VALUES_EQUAL(p.GetInt64(), value);
}
-Y_UNIT_TEST_SUITE(TSpackTest) {
+Y_UNIT_TEST_SUITE(TSpackTest) {
ui8 expectedHeader_v1_0[] = {
0x53, 0x50, // magic "SP" (fixed ui16)
// minor, major
@@ -261,7 +261,7 @@ Y_UNIT_TEST_SUITE(TSpackTest) {
return MakeIntrusive<TSummaryDoubleSnapshot>(10.1, -0.45, 0.478, 0.3, 30u);
}
- Y_UNIT_TEST(Encode) {
+ Y_UNIT_TEST(Encode) {
TBuffer buffer;
TBufferOutput out(buffer);
auto e = EncoderSpackV1(
@@ -669,19 +669,19 @@ Y_UNIT_TEST_SUITE(TSpackTest) {
}
}
- Y_UNIT_TEST(CompressionIdentity) {
+ Y_UNIT_TEST(CompressionIdentity) {
TestCompression(ECompression::IDENTITY);
}
- Y_UNIT_TEST(CompressionZlib) {
+ Y_UNIT_TEST(CompressionZlib) {
TestCompression(ECompression::ZLIB);
}
- Y_UNIT_TEST(CompressionZstd) {
+ Y_UNIT_TEST(CompressionZstd) {
TestCompression(ECompression::ZSTD);
}
- Y_UNIT_TEST(CompressionLz4) {
+ Y_UNIT_TEST(CompressionLz4) {
TestCompression(ECompression::LZ4);
}
diff --git a/library/cpp/monlib/encode/text/text_encoder_ut.cpp b/library/cpp/monlib/encode/text/text_encoder_ut.cpp
index 3ae749dd51..554b6f5fa9 100644
--- a/library/cpp/monlib/encode/text/text_encoder_ut.cpp
+++ b/library/cpp/monlib/encode/text/text_encoder_ut.cpp
@@ -6,7 +6,7 @@
using namespace NMonitoring;
-Y_UNIT_TEST_SUITE(TTextText) {
+Y_UNIT_TEST_SUITE(TTextText) {
template <typename TFunc>
TString EncodeToString(bool humanReadableTs, TFunc fn) {
TStringStream ss;
@@ -15,7 +15,7 @@ Y_UNIT_TEST_SUITE(TTextText) {
return ss.Str();
}
- Y_UNIT_TEST(Empty) {
+ Y_UNIT_TEST(Empty) {
auto result = EncodeToString(true, [](IMetricEncoder* e) {
e->OnStreamBegin();
e->OnStreamEnd();
@@ -23,7 +23,7 @@ Y_UNIT_TEST_SUITE(TTextText) {
UNIT_ASSERT_STRINGS_EQUAL(result, "");
}
- Y_UNIT_TEST(CommonPart) {
+ Y_UNIT_TEST(CommonPart) {
auto result = EncodeToString(true, [](IMetricEncoder* e) {
e->OnStreamBegin();
e->OnCommonTime(TInstant::ParseIso8601Deprecated("2017-01-02T03:04:05.006Z"));
@@ -41,7 +41,7 @@ Y_UNIT_TEST_SUITE(TTextText) {
"common labels: {project='solomon', cluster='man', service='stockpile'}\n");
}
- Y_UNIT_TEST(Gauges) {
+ Y_UNIT_TEST(Gauges) {
auto result = EncodeToString(true, [](IMetricEncoder* e) {
e->OnStreamBegin();
{ // no values
@@ -157,7 +157,7 @@ Y_UNIT_TEST_SUITE(TTextText) {
" IGAUGE bytesRx{host='solomon-sas-01', dc='sas'} [(2017-12-02T12:00:00Z, 2), (2017-12-02T12:00:05Z, 4), (2017-12-02T12:00:10Z, 8)]\n");
}
- Y_UNIT_TEST(Counters) {
+ Y_UNIT_TEST(Counters) {
auto doEncode = [](IMetricEncoder* e) {
e->OnStreamBegin();
{ // no values