public void ShouldVisitPrimitivesWhenSimpleObject(object value)
        {
            const string key      = "Test";
            var          property = new JProperty(key, new JValue(value));
            var          jObject  = new JObject {
                property
            };

            var visitor = new JsonPrimitiveVisitor();

            var expectedPrimitive = new KeyValuePair <string, string>(key, value.ToString());
            ICollection <KeyValuePair <string, string> > expectedPrimitives = new[] { expectedPrimitive };

            Assert.That(visitor.VisitJObject(jObject).ToList(), Is.EqualTo(expectedPrimitives).AsCollection);
        }
Exemplo n.º 2
0
        internal static IDictionary <string, string> Flatten(this JObject jObject)
        {
            var jsonPrimitiveVisitor          = new JsonPrimitiveVisitor();
            IDictionary <string, string> data = new SortedDictionary <string, string>(StringComparer.OrdinalIgnoreCase);

            foreach (KeyValuePair <string, string> primitive in jsonPrimitiveVisitor.VisitJObject(jObject))
            {
                if (data.ContainsKey(primitive.Key))
                {
                    throw new FormatException($"Key {primitive.Key} is duplicated in json");
                }

                data.Add(primitive);
            }

            return(data);
        }
        public void ShouldVisitPrimitivesWhenObjectContainsChildObject()
        {
            const string parentKey = "Parent";
            const string childKey  = "Child";
            const string value     = "primitive";
            var          jObject   = new JObject(
                new JProperty(
                    parentKey,
                    new JObject(new JProperty(childKey, new JValue(value)))));

            var visitor = new JsonPrimitiveVisitor();

            var expectedPrimitive = new KeyValuePair <string, string>(parentKey, value);
            ICollection <KeyValuePair <string, string> > expectedPrimitives = new[]
            {
                new KeyValuePair <string, string>($"{parentKey}:{childKey}", value)
            };

            Assert.That(visitor.VisitJObject(jObject).ToList(), Is.EqualTo(expectedPrimitives).AsCollection);
        }
        public void ShouldVisitPrimitivesForObjectsInAnArray()
        {
            const string key             = "Array";
            const string nestedObjectKey = "ObjectInArray";
            const int    value           = 1;
            var          jObject         = new JObject(
                new JProperty(
                    key,
                    new JArray(
                        new JObject(
                            new JProperty(nestedObjectKey, value)))));

            var visitor = new JsonPrimitiveVisitor();

            ICollection <KeyValuePair <string, string> > expectedPrimitives = new[]
            {
                new KeyValuePair <string, string>($"{key}:0:{nestedObjectKey}", value.ToString()),
            };

            Assert.That(visitor.VisitJObject(jObject).ToList(), Is.EqualTo(expectedPrimitives).AsCollection);
        }
        public void ShouldVisitPrimitivesWhenObjectContainsArray()
        {
            const string key         = "Test";
            const string firstValue  = "First";
            const string secondValue = "Second";
            var          jObject     = new JObject(
                new JProperty(
                    key,
                    new JArray(
                        new JValue(firstValue),
                        new JValue(secondValue))));

            var visitor = new JsonPrimitiveVisitor();

            ICollection <KeyValuePair <string, string> > expectedPrimitives = new[]
            {
                new KeyValuePair <string, string>($"{key}:0", firstValue),
                new KeyValuePair <string, string>($"{key}:1", secondValue)
            };

            Assert.That(visitor.VisitJObject(jObject).ToList(), Is.EqualTo(expectedPrimitives).AsCollection);
        }
Exemplo n.º 6
0
 public JsonPrimitiveVisitorTests()
 {
     _visitor = new JsonPrimitiveVisitor();
 }