diff options
author | Anton Samokhvalov <pg83@yandex.ru> | 2022-02-10 16:45:17 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:17 +0300 |
commit | d3a398281c6fd1d3672036cb2d63f842d2cb28c5 (patch) | |
tree | dd4bd3ca0f36b817e96812825ffaf10d645803f2 /util/generic/guid_ut.cpp | |
parent | 72cb13b4aff9bc9cf22e49251bc8fd143f82538f (diff) | |
download | ydb-d3a398281c6fd1d3672036cb2d63f842d2cb28c5.tar.gz |
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/guid_ut.cpp')
-rw-r--r-- | util/generic/guid_ut.cpp | 150 |
1 files changed, 75 insertions, 75 deletions
diff --git a/util/generic/guid_ut.cpp b/util/generic/guid_ut.cpp index e9911e1012..048354ff39 100644 --- a/util/generic/guid_ut.cpp +++ b/util/generic/guid_ut.cpp @@ -1,94 +1,94 @@ #include <library/cpp/testing/unittest/registar.h> - -#include "guid.h" - + +#include "guid.h" + Y_UNIT_TEST_SUITE(TGuidTest) { - //TODO - make real constructor - static TGUID Construct(ui32 d1, ui32 d2, ui32 d3, ui32 d4) { - TGUID ret; - - ret.dw[0] = d1; - ret.dw[1] = d2; - ret.dw[2] = d3; - ret.dw[3] = d4; - - return ret; - } - - struct TTest { - TGUID G; + //TODO - make real constructor + static TGUID Construct(ui32 d1, ui32 d2, ui32 d3, ui32 d4) { + TGUID ret; + + ret.dw[0] = d1; + ret.dw[1] = d2; + ret.dw[2] = d3; + ret.dw[3] = d4; + + return ret; + } + + struct TTest { + TGUID G; TString S; - }; - + }; + Y_UNIT_TEST(Test1) { - for (size_t i = 0; i < 1000; ++i) { - TGUID g; - - CreateGuid(&g); - - UNIT_ASSERT_EQUAL(g, GetGuid(GetGuidAsString(g))); - } - } - + for (size_t i = 0; i < 1000; ++i) { + TGUID g; + + CreateGuid(&g); + + UNIT_ASSERT_EQUAL(g, GetGuid(GetGuidAsString(g))); + } + } + Y_UNIT_TEST(Test2) { - const TTest tests[] = { - {Construct(1, 1, 1, 1), "1-1-1-1"}, - {Construct(0, 0, 0, 0), "0-0-0-0"}, - {TGUID(), "H-0-0-0"}, - {TGUID(), "0-H-0-0"}, - {TGUID(), "0-0-H-0"}, - {TGUID(), "0-0-0-H"}, - {Construct(0x8cf813d9U, 0xc098da90U, 0x7ef58954U, 0x636d04dU), "8cf813d9-c098da90-7ef58954-636d04d"}, - {Construct(0x8cf813d9U, 0xc098da90U, 0x7ef58954U, 0x636d04dU), "8CF813D9-C098DA90-7EF58954-636D04D"}, - {Construct(0x12345678U, 0x90abcdefU, 0xfedcba09U, 0x87654321U), "12345678-90abcdef-FEDCBA09-87654321"}, - {Construct(0x1, 0x2, 0xabcdef, 0x400), "01-002-00ABCDEF-000400"}, - {TGUID(), "-1-1-1"}, // empty parts - {TGUID(), "--1-1-1"}, - {TGUID(), "1--1-1"}, - {TGUID(), "1-1"}, // unexpected end - {TGUID(), "1-1-"}, + const TTest tests[] = { + {Construct(1, 1, 1, 1), "1-1-1-1"}, + {Construct(0, 0, 0, 0), "0-0-0-0"}, + {TGUID(), "H-0-0-0"}, + {TGUID(), "0-H-0-0"}, + {TGUID(), "0-0-H-0"}, + {TGUID(), "0-0-0-H"}, + {Construct(0x8cf813d9U, 0xc098da90U, 0x7ef58954U, 0x636d04dU), "8cf813d9-c098da90-7ef58954-636d04d"}, + {Construct(0x8cf813d9U, 0xc098da90U, 0x7ef58954U, 0x636d04dU), "8CF813D9-C098DA90-7EF58954-636D04D"}, + {Construct(0x12345678U, 0x90abcdefU, 0xfedcba09U, 0x87654321U), "12345678-90abcdef-FEDCBA09-87654321"}, + {Construct(0x1, 0x2, 0xabcdef, 0x400), "01-002-00ABCDEF-000400"}, + {TGUID(), "-1-1-1"}, // empty parts + {TGUID(), "--1-1-1"}, + {TGUID(), "1--1-1"}, + {TGUID(), "1-1"}, // unexpected end + {TGUID(), "1-1-"}, {TGUID(), "1-1-1"}, - {TGUID(), "1-1-1-"}, - {TGUID(), "1-1-1-1-"}, - {TGUID(), "1-1-1-1-1"}, - {TGUID(), "1+1-1-1"}, // bad char - {TGUID(), "1-1:3-1-1"}, - {Construct(0xffffffffU, 0xffffffffU, 0xffffffffU, 0xffffffffU), "FFFFFFFF-FFFFFFFF-FFFFFFFF-FFFFFFFF"}, // overflow - {TGUID(), "FFFFFFFFA-FFFFFFFF-FFFFFFFF-FFFFFFFF"}, - {TGUID(), "100000000-0-0-0"}, - {Construct(1, 1, 1, 1), "0000001-0000000000000000000000000000000000000001-0001-00000001"}, - {Construct(0, 0, 0, 0), "000000000000-000000000000000000000000000000000000000-000-0"}, - }; - + {TGUID(), "1-1-1-"}, + {TGUID(), "1-1-1-1-"}, + {TGUID(), "1-1-1-1-1"}, + {TGUID(), "1+1-1-1"}, // bad char + {TGUID(), "1-1:3-1-1"}, + {Construct(0xffffffffU, 0xffffffffU, 0xffffffffU, 0xffffffffU), "FFFFFFFF-FFFFFFFF-FFFFFFFF-FFFFFFFF"}, // overflow + {TGUID(), "FFFFFFFFA-FFFFFFFF-FFFFFFFF-FFFFFFFF"}, + {TGUID(), "100000000-0-0-0"}, + {Construct(1, 1, 1, 1), "0000001-0000000000000000000000000000000000000001-0001-00000001"}, + {Construct(0, 0, 0, 0), "000000000000-000000000000000000000000000000000000000-000-0"}, + }; + for (const auto& t : tests) { - UNIT_ASSERT_EQUAL(t.G, GetGuid(t.S)); - } - } - + UNIT_ASSERT_EQUAL(t.G, GetGuid(t.S)); + } + } + Y_UNIT_TEST(Test3) { - //if this test failed, please, fix buffer size in GetGuidAsString() - TGUID max = Construct(Max<ui32>(), Max<ui32>(), Max<ui32>(), Max<ui32>()); - - UNIT_ASSERT_EQUAL(GetGuidAsString(max).length(), 35); - } - + //if this test failed, please, fix buffer size in GetGuidAsString() + TGUID max = Construct(Max<ui32>(), Max<ui32>(), Max<ui32>(), Max<ui32>()); + + UNIT_ASSERT_EQUAL(GetGuidAsString(max).length(), 35); + } + Y_UNIT_TEST(Test4) { - UNIT_ASSERT_VALUES_EQUAL(GetGuidAsString(Construct(1, 2, 3, 4)), "1-2-3-4"); - UNIT_ASSERT_VALUES_EQUAL(GetGuidAsString(Construct(1, 2, 0xFFFFFF, 4)), "1-2-ffffff-4"); - UNIT_ASSERT_VALUES_EQUAL(GetGuidAsString(Construct(0xFAFA, 2, 3, 4)), "fafa-2-3-4"); - UNIT_ASSERT_VALUES_EQUAL(GetGuidAsString(Construct(1, 0xADE, 3, 4)), "1-ade-3-4"); - UNIT_ASSERT_VALUES_EQUAL(GetGuidAsString(Construct(1, 2, 3, 0xDEAD)), "1-2-3-dead"); - } + UNIT_ASSERT_VALUES_EQUAL(GetGuidAsString(Construct(1, 2, 3, 4)), "1-2-3-4"); + UNIT_ASSERT_VALUES_EQUAL(GetGuidAsString(Construct(1, 2, 0xFFFFFF, 4)), "1-2-ffffff-4"); + UNIT_ASSERT_VALUES_EQUAL(GetGuidAsString(Construct(0xFAFA, 2, 3, 4)), "fafa-2-3-4"); + UNIT_ASSERT_VALUES_EQUAL(GetGuidAsString(Construct(1, 0xADE, 3, 4)), "1-ade-3-4"); + UNIT_ASSERT_VALUES_EQUAL(GetGuidAsString(Construct(1, 2, 3, 0xDEAD)), "1-2-3-dead"); + } Y_UNIT_TEST(Test5) { const TTest tests[] = { {TGUID(), "1-1-1-1-1"}, - {TGUID(), "00000001-0001-0001-0001-00000000001-"}, + {TGUID(), "00000001-0001-0001-0001-00000000001-"}, {Construct(0x10000001U, 0x10011001U, 0x10011001U, 0x10000001U), "10000001-1001-1001-1001-100110000001"}, {Construct(0x550e8400U, 0xe29b41d4U, 0xa7164466U, 0x55440000U), "550e8400-e29b-41d4-a716-446655440000"}, {Construct(0xffffffffU, 0xffffffffU, 0xffffffffU, 0xffffffffU), "ffffffff-ffff-ffff-ffff-ffffffffffff"}, {TGUID(), "ffffffff-ffffff-ff-ffff-ffffffffffff"}, - {TGUID(), "ffffffff-ffff-ffff-ff-ffffffffffffff"}}; + {TGUID(), "ffffffff-ffff-ffff-ff-ffffffffffffff"}}; for (const auto& t : tests) { UNIT_ASSERT_EQUAL(t.G, GetUuid(t.S)); @@ -125,4 +125,4 @@ Y_UNIT_TEST_SUITE(TGuidTest) { UNIT_ASSERT(!guid.empty()); UNIT_ASSERT_EQUAL(guid[14], '1'); } -} +} |