示例#1
0
 public void CompactifyEncode()
 {
     foreach (var test in Compactify)
     {
         var asGet = Json4Get.Encode(test.Original);
         Assert.AreEqual(test.Normal, asGet, $"trouble with:{test.Original}");
     }
 }
示例#2
0
 public void SingleValuesEncodeLighter()
 {
     foreach (var test in SimpleValues.Where(s => s.NoQuote != null))
     {
         var json  = JsonConvert.SerializeObject(test.Original);
         var asGet = Json4Get.Encode(json, true);
         Assert.AreEqual(test.NoQuote, asGet, $"trouble with:{test.Original.Val}");
     }
 }
示例#3
0
 public void SingleValuesEncode()
 {
     foreach (var test in SimpleValues)
     {
         var json  = JsonConvert.SerializeObject(test.Original);
         var asGet = Json4Get.Encode(json);
         Assert.AreEqual(test.Normal, asGet, $"trouble with:{test.Original.Val}");
     }
 }
示例#4
0
 public void SingleValuesRecode()
 {
     foreach (var test in SimpleValues)
     {
         var json    = JsonConvert.SerializeObject(test.Original);
         var asGet   = Json4Get.Encode(json);
         var decoded = Json4Get.Decode(asGet);
         Assert.AreEqual(json, decoded, $"should be like the original `{test.Original.Val}`");
     }
 }
示例#5
0
        public void BadInput_Encode_BadOpenCloseCount()
        {
            var badVariations = new[] { "{", "}", "{ { }", "\"value\":\"forgot-to-close" };

            foreach (var test in badVariations)
            {
                try
                {
                    // this line should throw an error
                    Json4Get.Encode(test);

                    // if it didn't throw yet, it's not ok - so throw special
                    Assert.Fail("not-ok-should-throw-before");
                }
                catch (Exception exception)
                {
                    if (exception.Message == "not-ok-should-throw-before")
                    {
                        throw;
                    }
                }
            }
        }
示例#6
0
        public void EncodeRecodeObject()
        {
            var test = new
            {
                Key       = "something",
                Value     = "something else",
                SomeArray = new[] { "a string", "another string" },
                IntArr    = new[] { 7, 8, 8 },
                Is        = true,
                Isnt      = false,
                Null      = null as string
            };
            var expectedJson4Get = "('Key'!'something'*'Value'!'something_else'*"
                                   + "'SomeArray'!L'a_string'*'another_string'J*"
                                   + "'IntArr'!L7*8*8J*"
                                   + "'Is'!t*'Isnt'!f*'Null'!n)";
            var json   = JsonConvert.SerializeObject(test);
            var result = Json4Get.Encode(json);

            Assert.AreEqual(expectedJson4Get, result);
            var back = Json4Get.Decode(result);

            Assert.AreEqual(json, back, "convert back should work");
        }
示例#7
0
 public void BadInput_Decode_LeadingSpacesBadValue() => Json4Get.Decode("  bad-json");
示例#8
0
 public void BadInput_Decode_LeadingSpaces() => Assert.AreEqual("{}", Json4Get.Decode("  ()"));
示例#9
0
 public void BadInput_Decode_EmptyOrWhiteSpace()
 {
     Assert.AreEqual(string.Empty, Json4Get.Decode(string.Empty));
     Assert.AreEqual(" ", Json4Get.Decode(" "));
     Assert.AreEqual("\n \t ", Json4Get.Decode("\n \t "));
 }
示例#10
0
 public void BadInput_Decode_Null()
 => Assert.IsNull(Json4Get.Encode(null));