// // Copyright 2011 Kazuki Oikawa // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // using System; using System.Collections.Generic; using System.Linq; using NUnit.Framework; namespace MsgPack.Test { [TestFixture] public class BoxingPackerTests { [Test] public void NullTest () { BoxingPacker packer = new BoxingPacker (); Assert.IsNull (packer.Unpack (packer.Pack (null))); } [Test] public void PrimitiveTypeTest () { BoxingPacker packer = new BoxingPacker (); RoundtripTest (packer, 12345); RoundtripTest (packer, 1234567890123456789UL); RoundtripTest (packer, Math.PI); RoundtripTest (packer, true); RoundtripTest (packer, false); } [Test] public void ArrayTest () { BoxingPacker packer = new BoxingPacker (); RoundtripTest (packer, new object[0]); RoundtripTest (packer, new object[]{ int.MinValue, int.MaxValue, 1234567890123456789UL, ulong.MaxValue, float.MinValue, float.MaxValue, float.Epsilon, float.NaN, float.PositiveInfinity, float.NegativeInfinity, double.MinValue, double.MaxValue, double.Epsilon, double.NaN, double.PositiveInfinity, double.NegativeInfinity, null, true, false, new object[] { new object[] {1, 2, 3}, new object[] {Math.PI, true} } }); } [Test] public void MapTest () { BoxingPacker packer = new BoxingPacker (); Dictionary dic = new Dictionary (); Dictionary dic2 = new Dictionary (); RoundtripTest> (packer, dic); dic2.Add (123, 456); dic2.Add (234, 567); dic2.Add (345, 678); dic.Add (0, 0.123); dic.Add (Math.PI, true); dic.Add (false, new object[] {1, 2, 3}); dic.Add (1, new Dictionary (dic2)); RoundtripTest> (packer, dic); dic[1] = ((Dictionary)dic[1]).ToArray (); Assert.AreEqual (dic, packer.Unpack (packer.Pack (dic.ToArray ()))); } void RoundtripTest (BoxingPacker packer, T obj) { T obj2 = (T)packer.Unpack (packer.Pack (obj)); Assert.AreEqual (obj, obj2); } } }