| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404 |
- //
- // JavaScriptSerializer.cs
- //
- // Author:
- // Konstantin Triger <[email protected]>
- //
- // (C) 2007 Mainsoft, Inc. http://www.mainsoft.com
- //
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Collections.Generic;
- using System.Text;
- using NUnit.Framework;
- using System.Web.Script.Serialization;
- using System.Reflection;
- using System.Collections;
- using System.Drawing;
- using ComponentModel = System.ComponentModel;
- using System.Globalization;
- using System.Threading;
- namespace Tests.System.Web.Script.Serialization
- {
- [TestFixture]
- public class JavaScriptSerializerTest
- {
- class bug
- {
- //public DateTime dt;
- //public DateTime dt1;
- public DateTime dt2;
- public bool bb;
- //Hashtable hash;
- public void Init() {
- //dt = DateTime.MaxValue;
- //dt1 = DateTime.MinValue;
- dt2 = new DateTime ((DateTime.Now.Ticks / 10000) * 10000);
- bb = true;
- //hash = new Hashtable ();
- //hash.Add ("mykey", 1);
- }
- public override bool Equals (object obj) {
- if (!(obj is bug))
- return false;
- JavaScriptSerializerTest.FieldsEqual (this, obj);
- return true;
- }
- }
- class X
- {
- int x = 5;
- //int y;
- ulong _bb;
- Y[] _yy;
- Y [] _yyy = new Y [] { new Y (), new Y () };
- public int z;
- public char ch;
- public char ch_null;
- public string str;
- public byte b;
- public sbyte sb;
- public short sh;
- public ushort ush;
- public int i;
- public uint ui;
- public long l;
- public ulong ul;
-
- public float f;
- public float f1;
- public float f2;
- public float f3;
- public float f4;
- public double d;
- public double d1;
- public double d2;
- public double d3;
- public double d4;
- public decimal de;
- public decimal de1;
- public decimal de2;
- public decimal de3;
- public decimal de4;
-
- public Guid g;
-
- public Nullable<bool> nb;
- public DBNull dbn;
- IEnumerable<int> enum_int;
- IEnumerable enum_int1;
- public Uri uri;
- public Dictionary<string, Y> hash;
- public void Init () {
- //y = 6;
- _bb = ulong.MaxValue - 5;
- _yy = new Y [] { new Y (), new Y () };
- z = 8;
- ch = (char) 0xFF56;
- ch_null = '\0';
- str = "\uFF56\uFF57\uF58FF59g";
- b = 253;
- sb = -48;
- sh = short.MinValue + 28;
- ush = ushort.MaxValue - 24;
- i = -234235453;
- ui = uint.MaxValue - 234234;
- l = long.MinValue + 28;
- ul = ulong.MaxValue - 3;
- f = float.NaN;
- f1 = float.NegativeInfinity;
- f2 = float.PositiveInfinity;
- f3 = float.MinValue;
- f4 = float.MaxValue;
- d = double.NaN;
- d1 = double.NegativeInfinity;
- d2 = double.PositiveInfinity;
- d3 = double.MinValue;
- d4 = double.MaxValue;
- de = decimal.MinusOne;
- de1 = decimal.Zero;
- de2 = decimal.One;
- de3 = decimal.MinValue;
- de4 = decimal.MaxValue;
- g = new Guid (234, 2, 354, new byte [] { 1, 2, 3, 4, 5, 6, 7, 8 });
-
- nb = null;
- dbn = null;
- enum_int = new List<int> (MyEnum);
- enum_int1 = new ArrayList ();
- foreach (object obj in MyEnum1)
- ((ArrayList) enum_int1).Add (obj);
- uri = new Uri ("http://kostat@mainsoft/adfasdf/asdfasdf.aspx/asda/ads?a=b&c=d", UriKind.RelativeOrAbsolute);
- hash = new Dictionary<string, Y> ();
- Y y = new Y ();
- hash ["mykey"] = y;
- }
- public IEnumerable<int> MyEnum {
- get {
- yield return 1;
- yield return 10;
- yield return 345;
- }
- set {
- enum_int = value;
- }
- }
- public IEnumerable MyEnum1 {
- get {
- yield return 1;
- yield return 10;
- yield return 345;
- }
- set {
- enum_int1 = value;
- }
- }
- public int AA {
- get { return x; }
- }
- public Y[] AA1 {
- get { return _yyy; }
- }
- public ulong BB {
- get { return _bb; }
- set { _bb = value; }
- }
- public Y[] YY {
- get { return _yy; }
- set { _yy = value; }
- }
- public override bool Equals (object obj) {
- if (!(obj is X))
- return false;
- JavaScriptSerializerTest.FieldsEqual (this, obj);
- return true;
- }
- }
- class Y
- {
- long _bb = 10;
- public long BB {
- get { return _bb; }
- set { _bb = value; }
- }
- public override bool Equals (object obj) {
- if (!(obj is Y))
- return false;
- JavaScriptSerializerTest.FieldsEqual(this, obj);
- return true;
- }
- }
- [Test]
- public void TestDefaults () {
- JavaScriptSerializer ser = new JavaScriptSerializer ();
- Assert.AreEqual (2097152, ser.MaxJsonLength);
- Assert.AreEqual (100, ser.RecursionLimit);
- //List<JavaScriptConverter> l = new List<JavaScriptConverter> ();
- //l.Add (new MyJavaScriptConverter ());
- //ser.RegisterConverters (l);
- //string x = ser.Serialize (new X [] { new X (), new X () });
- //string s = ser.Serialize (new X());
- //"{\"BB\":10,\"__type\":\"Tests.System.Web.Script.Serialization.JavaScriptSerializerTest+Y, Tests, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"}"
- //X x = ser.Deserialize<X> (s);
- //object ddd = typeof (Y).GetMember ("BB");
- //object x1 = ser.Deserialize<X []> (null);
- //object x2 = ser.Deserialize<X []> ("");
- //object d = ser.Deserialize<X[]> (x);
- }
- [Test]
- public void TestDeserialize () {
- JavaScriptSerializer ser = new JavaScriptSerializer ();
- Assert.IsNull (ser.Deserialize<X> (""));
- X s = new X ();
- s.Init ();
- string x = ser.Serialize (s);
- X n = ser.Deserialize<X> (x);
- Assert.AreEqual (s, n);
- //string json = "\\uFF56";
- //string result = ser.Deserialize<string> (json);
- //Assert.AreEqual ("\uFF56", result);
- //object oo = ser.DeserializeObject ("{value:'Purple\\r \\n monkey\\'s:\\tdishwasher'}");
- }
- [Test]
- [Category("NotWorking")]
- public void TestDeserializeBugs () {
- JavaScriptSerializer ser = new JavaScriptSerializer ();
- bug s = new bug ();
- s.Init ();
- string x = ser.Serialize (s);
- bug n = ser.Deserialize<bug> (x);
- Assert.AreEqual (s, n);
- // Should check correctness with .Net GA:
- //js = ser.Serialize (Color.Red);
- //Color ccc = ser.Deserialize<Color> (js);
- //string xml = @"<root><node attr=""xxx""/></root>";
- //XmlDocument doc = new XmlDocument ();
- //doc.LoadXml (xml);
- //string js = ser.Serialize (doc);
- //DataTable table = new DataTable();
- //table.Columns.Add ("col1", typeof (int));
- //table.Columns.Add ("col2", typeof (float));
- //table.Rows.Add (1, 1f);
- //table.Rows.Add (234234, 2.4f);
- //string js = ser.Serialize (table);
- }
- static void FieldsEqual (object expected, object actual) {
- Assert.AreEqual (expected.GetType (), actual.GetType ());
- FieldInfo [] infos = expected.GetType ().GetFields (BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Static);
- foreach (FieldInfo info in infos) {
- object value1 = info.GetValue (expected);
- object value2 = info.GetValue (actual);
- if (value1 is IEnumerable) {
- IEnumerator yenum = ((IEnumerable) value2).GetEnumerator ();
- int index = -1;
- foreach (object x in (IEnumerable) value1) {
- if (!yenum.MoveNext ())
- Assert.Fail (info.Name + " index:" + index);
- index++;
- if (x is DictionaryEntry) {
- DictionaryEntry entry = (DictionaryEntry)x;
- IDictionary dict = (IDictionary) value2;
- Assert.AreEqual (entry.Value, dict [entry.Key], info.Name + ", key:" + entry.Key);
- }
- else
- Assert.AreEqual (x, yenum.Current, info.Name + ", index:" + index);
- }
- Assert.IsFalse (yenum.MoveNext (), info.Name);
- continue;
- }
- Assert.AreEqual (value1, value2, info.Name);
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentNullException))]
- public void TestDeserialize1 () {
- JavaScriptSerializer ser = new JavaScriptSerializer ();
- ser.Deserialize<string> (null);
- }
- [Test]
- [ExpectedException (typeof (ArgumentNullException))]
- public void TestDeserializeNullConverter () {
- JavaScriptSerializer ser = new JavaScriptSerializer ();
- ser.RegisterConverters (null);
- }
- [Test]
- public void TestDeserializeConverter () {
- JavaScriptSerializer ser = new JavaScriptSerializer ();
- List<JavaScriptConverter> list = new List<JavaScriptConverter> ();
- list.Add (new MyJavaScriptConverter ());
- ser.RegisterConverters (list);
- string result = ser.Serialize (new X [] { new X (), new X () });
- Assert.AreEqual ("{\"0\":1,\"1\":2}", result);
- }
- [Test]
- public void TestSerialize1 () {
- JavaScriptSerializer ser = new JavaScriptSerializer ();
- Assert.AreEqual("null", ser.Serialize(null));
- string js = ser.Serialize (1234);
- Assert.AreEqual ("1234", js);
- Assert.AreEqual (1234, ser.Deserialize<int> (js));
- js = ser.Serialize (1.1);
- Assert.AreEqual ("1.1", js);
- Assert.AreEqual (1.1f, ser.Deserialize<float> (js));
- char [] chars = "faskjhfasd0981234".ToCharArray ();
- js = ser.Serialize (chars);
- char[] actual = ser.Deserialize<char[]> (js);
- Assert.AreEqual (chars.Length, actual.Length);
- for (int i = 0; i < chars.Length; i++)
- Assert.AreEqual (chars[i], actual[i]);
- }
- [Test]
- [ExpectedException (typeof (ArgumentNullException))]
- public void TestSerialize2 () {
- JavaScriptSerializer ser = new JavaScriptSerializer ();
- ser.Serialize ("aaa", null);
- }
- class MyJavaScriptConverter : JavaScriptConverter
- {
- public override object Deserialize (IDictionary<string, object> dictionary, Type type, JavaScriptSerializer serializer) {
- throw new Exception ("The method or operation is not implemented.");
- }
- public override IDictionary<string, object> Serialize (object obj, JavaScriptSerializer serializer) {
- Array a = (Array) obj;
- Dictionary<string, object> d = new Dictionary<string, object> ();
- d.Add ("0", 1);
- d.Add ("1", 2);
- return d;
- //throw new Exception ("The method or operation is not implemented.");
- }
- public override IEnumerable<Type> SupportedTypes {
- get {
- yield return typeof (X[]);
- }
- }
- }
- }
- }
|