From 23bf1d16dddf213a6aa8e8d5c8621e1242a1f118 Mon Sep 17 00:00:00 2001
From: pozhilov <pozhilov@yandex-team.ru>
Date: Thu, 10 Feb 2022 16:49:27 +0300
Subject: Restoring authorship annotation for <pozhilov@yandex-team.ru>. Commit
 1 of 2.

---
 library/cpp/json/writer/json_value_ut.cpp | 166 +++++++++++++++---------------
 1 file changed, 83 insertions(+), 83 deletions(-)

(limited to 'library/cpp/json/writer/json_value_ut.cpp')

diff --git a/library/cpp/json/writer/json_value_ut.cpp b/library/cpp/json/writer/json_value_ut.cpp
index dc7f6affdf..b87710bf29 100644
--- a/library/cpp/json/writer/json_value_ut.cpp
+++ b/library/cpp/json/writer/json_value_ut.cpp
@@ -507,98 +507,98 @@ Y_UNIT_TEST_SUITE(TJsonValueTest) {
     }
 
     Y_UNIT_TEST(NonexistentFieldAccessTest) {
-        {
-            TJsonValue json;
-            json.InsertValue("some", "key");
-
-            UNIT_ASSERT(!json["some"]["weird"]["access"]["sequence"].Has("value"));
-            UNIT_ASSERT(!json["some"]["weird"]["access"]["sequence"].IsDefined());
-
-            UNIT_ASSERT(json["some"].GetType() == JSON_MAP);
-        }
-    }
-
+        { 
+            TJsonValue json; 
+            json.InsertValue("some", "key"); 
+ 
+            UNIT_ASSERT(!json["some"]["weird"]["access"]["sequence"].Has("value")); 
+            UNIT_ASSERT(!json["some"]["weird"]["access"]["sequence"].IsDefined()); 
+ 
+            UNIT_ASSERT(json["some"].GetType() == JSON_MAP); 
+        } 
+    } 
+ 
     Y_UNIT_TEST(DefaultValuesTest) {
-        {
-            TJsonValue json;
-            json.InsertValue("some", "key");
-            json.InsertValue("existing", 1.2);
-
-            UNIT_ASSERT_VALUES_EQUAL(json["existing"].GetDoubleSafe(), 1.2);
-            UNIT_ASSERT_VALUES_EQUAL(json["existing"].GetDoubleSafe(15), 1.2);
-
-            UNIT_ASSERT_EXCEPTION(json["some"].GetUIntegerSafe(), yexception);
-            UNIT_ASSERT_EXCEPTION(json["some"].GetUIntegerSafe(12), yexception);
-
-            UNIT_ASSERT_EXCEPTION(json["nonexistent"].GetUIntegerSafe(), yexception);
-            UNIT_ASSERT_VALUES_EQUAL(json["nonexistent"].GetUIntegerSafe(12), 12);
-            UNIT_ASSERT_VALUES_EQUAL(json["nonexistent"]["more_nonexistent"].GetUIntegerSafe(12), 12);
-
-            json.InsertValue("map", TJsonValue(JSON_MAP));
-
-            UNIT_ASSERT_VALUES_EQUAL(json["map"]["nonexistent"].GetUIntegerSafe(12), 12);
-        }
-    }
-
+        { 
+            TJsonValue json; 
+            json.InsertValue("some", "key"); 
+            json.InsertValue("existing", 1.2); 
+ 
+            UNIT_ASSERT_VALUES_EQUAL(json["existing"].GetDoubleSafe(), 1.2); 
+            UNIT_ASSERT_VALUES_EQUAL(json["existing"].GetDoubleSafe(15), 1.2); 
+ 
+            UNIT_ASSERT_EXCEPTION(json["some"].GetUIntegerSafe(), yexception); 
+            UNIT_ASSERT_EXCEPTION(json["some"].GetUIntegerSafe(12), yexception); 
+ 
+            UNIT_ASSERT_EXCEPTION(json["nonexistent"].GetUIntegerSafe(), yexception); 
+            UNIT_ASSERT_VALUES_EQUAL(json["nonexistent"].GetUIntegerSafe(12), 12); 
+            UNIT_ASSERT_VALUES_EQUAL(json["nonexistent"]["more_nonexistent"].GetUIntegerSafe(12), 12); 
+ 
+            json.InsertValue("map", TJsonValue(JSON_MAP)); 
+ 
+            UNIT_ASSERT_VALUES_EQUAL(json["map"]["nonexistent"].GetUIntegerSafe(12), 12); 
+        } 
+    } 
+ 
     Y_UNIT_TEST(GetArrayPointerInArrayTest) {
-        TJsonValue outer;
-        {
-            TJsonValue json;
-            json.AppendValue(1);
-            json.AppendValue(2);
-            json.AppendValue(3);
-
-            outer.AppendValue(json);
-        }
+        TJsonValue outer; 
+        { 
+            TJsonValue json; 
+            json.AppendValue(1); 
+            json.AppendValue(2); 
+            json.AppendValue(3); 
+ 
+            outer.AppendValue(json); 
+        } 
         const TJsonValue::TArray* array = nullptr;
-        GetArrayPointer(outer, 0, &array);
-        UNIT_ASSERT_VALUES_EQUAL((*array)[1], 2);
-    }
-
+        GetArrayPointer(outer, 0, &array); 
+        UNIT_ASSERT_VALUES_EQUAL((*array)[1], 2); 
+    } 
+ 
     Y_UNIT_TEST(GetArrayPointerInMapTest) {
-        TJsonValue outer;
-        {
-            TJsonValue json;
-            json.AppendValue(1);
-            json.AppendValue(2);
-            json.AppendValue(3);
-
-            outer.InsertValue("x", json);
-        }
+        TJsonValue outer; 
+        { 
+            TJsonValue json; 
+            json.AppendValue(1); 
+            json.AppendValue(2); 
+            json.AppendValue(3); 
+ 
+            outer.InsertValue("x", json); 
+        } 
         const TJsonValue::TArray* array = nullptr;
-        GetArrayPointer(outer, "x", &array);
-        UNIT_ASSERT_VALUES_EQUAL((*array)[1], 2);
-    }
-
+        GetArrayPointer(outer, "x", &array); 
+        UNIT_ASSERT_VALUES_EQUAL((*array)[1], 2); 
+    } 
+ 
     Y_UNIT_TEST(GetMapPointerInArrayTest) {
-        TJsonValue outer;
-        {
-            TJsonValue json;
-            json.InsertValue("a", 1);
-            json.InsertValue("b", 2);
-            json.InsertValue("c", 3);
-
-            outer.AppendValue(json);
-        }
+        TJsonValue outer; 
+        { 
+            TJsonValue json; 
+            json.InsertValue("a", 1); 
+            json.InsertValue("b", 2); 
+            json.InsertValue("c", 3); 
+ 
+            outer.AppendValue(json); 
+        } 
         const TJsonValue::TMapType* map = nullptr;
-        GetMapPointer(outer, 0, &map);
-        UNIT_ASSERT_VALUES_EQUAL((*map).at("b"), 2);
-    }
-
+        GetMapPointer(outer, 0, &map); 
+        UNIT_ASSERT_VALUES_EQUAL((*map).at("b"), 2); 
+    } 
+ 
     Y_UNIT_TEST(GetMapPointerInMapTest) {
-        TJsonValue outer;
-        {
-            TJsonValue json;
-            json.InsertValue("a", 1);
-            json.InsertValue("b", 2);
-            json.InsertValue("c", 3);
-
-            outer.InsertValue("x", json);
-        }
+        TJsonValue outer; 
+        { 
+            TJsonValue json; 
+            json.InsertValue("a", 1); 
+            json.InsertValue("b", 2); 
+            json.InsertValue("c", 3); 
+ 
+            outer.InsertValue("x", json); 
+        } 
         const TJsonValue::TMapType* map = nullptr;
-        GetMapPointer(outer, "x", &map);
-        UNIT_ASSERT_VALUES_EQUAL((*map).at("b"), 2);
-    }
+        GetMapPointer(outer, "x", &map); 
+        UNIT_ASSERT_VALUES_EQUAL((*map).at("b"), 2); 
+    } 
 
     Y_UNIT_TEST(GetIntegerRobustBignumStringTest) {
         TString value = "1626862681464633683";
-- 
cgit v1.2.3