Example #1
0
        public void ExtractAll_SectionInSection()
        {
            var data = @"SomeUInt8 =3
[Section1]
SomeInt32Arr =1 2 3\\It is int[]
[Section1.Sec2]
SomeString =#'Hello'
[Section1.Sec2.Sec3]
[Section4]
SomeVal1 =1
SomeVal2 =2
";

            var actual   = KVPExtractor.ExtractAll(new StreamReader(new MemoryStream(data.GetBytes(Encoding.UTF8))));
            var expected = new[]
            {
                new ConfigKVP(new Section(null), "SomeUInt8", new ConfigValue("3", false), null),
                new ConfigKVP(new Section("Section1"), "SomeInt32Arr", new ConfigValue("1 2 3", false), "It is int[]"),
                new ConfigKVP(new Section("Section1.Sec2"), "SomeString", new ConfigValue("Hello", true), null),
                new ConfigKVP(new Section("Section4"), "SomeVal1", new ConfigValue("1", false), null),
                new ConfigKVP(new Section("Section4"), "SomeVal2", new ConfigValue("2", false), null),
            };

            Assert.AreEqual(expected, actual);
        }
Example #2
0
        public void ExtractAll_IncorrectSections()
        {
            var data = @"SomeVal1 =1
[S ection]
SomeVal2 =2
[0Section]
SomeVal3 =3
[Sect-ion]
SomeVal4 =4
[Section]
SomeVal5 =5
";

            var actual   = KVPExtractor.ExtractAll(new StreamReader(new MemoryStream(data.GetBytes(Encoding.UTF8))));
            var expected = new[]
            {
                new ConfigKVP(new Section(null), "SomeVal1", new ConfigValue("1", false), null),
                new ConfigKVP(new Section(null), "SomeVal2", new ConfigValue("2", false), null),
                new ConfigKVP(new Section("0Section"), "SomeVal3", new ConfigValue("3", false), null),
                new ConfigKVP(new Section("0Section"), "SomeVal4", new ConfigValue("4", false), null),
                new ConfigKVP(new Section("Section"), "SomeVal5", new ConfigValue("5", false), null),
            };

            Assert.AreEqual(expected, actual);
        }
Example #3
0
        public void ExtractAll_OneLineKVPsOnly()
        {
            var data = @"KEY1 =Value
fff=2";

            var actual   = KVPExtractor.ExtractAll(new StreamReader(new MemoryStream(data.GetBytes(Encoding.UTF8))));
            var expected = new[]
            {
                new ConfigKVP("KEY1", new ConfigValue("Value", false), null),
                new ConfigKVP("fff", new ConfigValue("2", false), null),
            };

            Assert.AreEqual(expected, actual);
        }
Example #4
0
        public void ExtractAll_MixedKVPs()
        {
            var data = @"KEY1 = Value
KEY2= # 'Hello ''friend''!'
KEY3= eeHel''''lo";

            var actual   = KVPExtractor.ExtractAll(new StreamReader(new MemoryStream(data.GetBytes(Encoding.UTF8))));
            var expected = new[]
            {
                new ConfigKVP("KEY1", new ConfigValue(" Value", false), null),
                new ConfigKVP("KEY2", new ConfigValue("Hello 'friend'!", true), null),
                new ConfigKVP("KEY3", new ConfigValue(" eeHel''''lo", false), null),
            };

            Assert.AreEqual(expected, actual);
        }
Example #5
0
        public void ExtractAll_CommentaryInValue()
        {
            var data = @"KEY1 =# 'Value \\bad comment' \\good comment1
KEY2= # '\\bad commentHello ''friend''!' \\ good comment2
KEY3=(value begin)\\bad comment(value end) \\ good comment3";

            var actual   = KVPExtractor.ExtractAll(new StreamReader(new MemoryStream(data.GetBytes(Encoding.UTF8))));
            var expected = new[]
            {
                new ConfigKVP("KEY1", new ConfigValue(@"Value \\bad comment", true), "good comment1"),
                new ConfigKVP("KEY2", new ConfigValue(@"\\bad commentHello 'friend'!", true), " good comment2"),
                new ConfigKVP("KEY3", new ConfigValue("(value begin)", false), @"bad comment(value end) \\ good comment3"),
            };

            Assert.AreEqual(expected, actual);
        }
Example #6
0
        public void ExtractAll_MixedKVPsAndCommentary1()
        {
            var data = @"SomeUInt8 =3
SomeInt32Arr =1 2 3\\It is int[]
SomeString =#'Hello'
";

            var actual   = KVPExtractor.ExtractAll(new StreamReader(new MemoryStream(data.GetBytes(Encoding.UTF8))));
            var expected = new[]
            {
                new ConfigKVP("SomeUInt8", new ConfigValue("3", false), null),
                new ConfigKVP("SomeInt32Arr", new ConfigValue("1 2 3", false), "It is int[]"),
                new ConfigKVP("SomeString", new ConfigValue("Hello", true), null),
            };

            Assert.AreEqual(expected, actual);
        }
Example #7
0
        public void ExtractAll_MultilineKVPsOnly()
        {
            var data = @"KEY1 = #'Value ''line1''
line2
l''i''ne3'
KEY2= # 'Hello ''friend''!'
KEY3=#'''Hel''''lo '''''";

            var actual   = KVPExtractor.ExtractAll(new StreamReader(new MemoryStream(data.GetBytes(Encoding.UTF8))));
            var expected = new[]
            {
                new ConfigKVP("KEY1", new ConfigValue("Value 'line1'" + Global.NL + "line2" + Global.NL + "l'i'ne3", true), null),
                new ConfigKVP("KEY2", new ConfigValue("Hello 'friend'!", true), null),
                new ConfigKVP("KEY3", new ConfigValue("'Hel''lo ''", true), null),
            };

            Assert.AreEqual(expected, actual);
        }