| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532 |
- //
- // Tests for System.Drawing.RectangleConverter.cs
- //
- // Author:
- // Ravindra ([email protected])
- //
- //
- // Copyright (C) 2004 Novell, Inc (http://www.novell.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;
- using System.ComponentModel;
- using System.ComponentModel.Design.Serialization;
- using System.Drawing;
- using System.Globalization;
- using System.Threading;
- using NUnit.Framework;
- namespace MonoTests.System.Drawing
- {
- [TestFixture]
- public class RectangleConverterTest
- {
- Rectangle rect;
- Rectangle rectneg;
- RectangleConverter rconv;
- String rectStrInvariant;
- String rectnegStrInvariant;
- [SetUp]
- public void SetUp ()
- {
- rect = new Rectangle (10, 10, 20, 30);
- rectStrInvariant = rect.X + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " +
- rect.Y + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " +
- rect.Width + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " +
- rect.Height;
- rectneg = new Rectangle (-10, -10, 20, 30);
- rectnegStrInvariant = rectneg.X + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " "
- + rectneg.Y + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " +
- rectneg.Width + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " + rectneg.Height;
- rconv = (RectangleConverter) TypeDescriptor.GetConverter (rect);
- }
- [Test]
- public void TestCanConvertFrom ()
- {
- Assert.IsTrue (rconv.CanConvertFrom (typeof (String)), "CCF#1");
- Assert.IsTrue (rconv.CanConvertFrom (null, typeof (String)), "CCF#2");
- Assert.IsFalse (rconv.CanConvertFrom (null, typeof (Rectangle)), "CCF#3");
- Assert.IsFalse (rconv.CanConvertFrom (null, typeof (RectangleF)), "CCF#4");
- Assert.IsFalse (rconv.CanConvertFrom (null, typeof (Point)), "CCF#5");
- Assert.IsFalse (rconv.CanConvertFrom (null, typeof (PointF)), "CCF#6");
- Assert.IsFalse (rconv.CanConvertFrom (null, typeof (Size)), "CCF#7");
- Assert.IsFalse (rconv.CanConvertFrom (null, typeof (SizeF)), "CCF#8");
- Assert.IsFalse (rconv.CanConvertFrom (null, typeof (Object)), "CCF#9");
- Assert.IsFalse (rconv.CanConvertFrom (null, typeof (int)), "CCF#10");
- Assert.IsTrue (rconv.CanConvertFrom (null, typeof (InstanceDescriptor)), "CCF#11");
- }
- [Test]
- public void TestCanConvertTo ()
- {
- Assert.IsTrue (rconv.CanConvertTo (typeof (String)), "CCT#1");
- Assert.IsTrue (rconv.CanConvertTo (null, typeof (String)), "CCT#2");
- Assert.IsFalse (rconv.CanConvertTo (null, typeof (Rectangle)), "CCT#3");
- Assert.IsFalse (rconv.CanConvertTo (null, typeof (RectangleF)), "CCT#4");
- Assert.IsFalse (rconv.CanConvertTo (null, typeof (Point)), "CCT#5");
- Assert.IsFalse (rconv.CanConvertTo (null, typeof (PointF)), "CCT#6");
- Assert.IsFalse (rconv.CanConvertTo (null, typeof (Size)), "CCT#7");
- Assert.IsFalse (rconv.CanConvertTo (null, typeof (SizeF)), "CCT#8");
- Assert.IsFalse (rconv.CanConvertTo (null, typeof (Object)), "CCT#9");
- Assert.IsFalse (rconv.CanConvertTo (null, typeof (int)), "CCT#10");
- }
- [Test]
- public void TestConvertFrom ()
- {
- Assert.AreEqual (rect, (Rectangle) rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
- "10, 10, 20, 30"), "CF#1");
- Assert.AreEqual (rectneg, (Rectangle) rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
- "-10, -10, 20, 30"), "CF#2");
- try {
- rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
- "10, 10");
- Assert.Fail ("CF#3: must throw ArgumentException");
- } catch (Exception e) {
- Assert.IsTrue (e is ArgumentException, "CF#3");
- }
- try {
- rconv.ConvertFrom ("10");
- Assert.Fail ("CF#3a: must throw ArgumentException");
- } catch (Exception e) {
- Assert.IsTrue (e is ArgumentException, "CF#3a");
- }
- try {
- rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
- "1, 1, 1, 1, 1");
- Assert.Fail ("CF#4: must throw ArgumentException");
- } catch (Exception e) {
- Assert.IsTrue (e is ArgumentException, "CF#4");
- }
- try {
- rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
- "*1, 1, 1, 1");
- Assert.Fail ("CF#5: must throw Exception");
- } catch (Exception ex) {
- Assert.AreEqual (typeof (Exception), ex.GetType (), "CF#5-2");
- Assert.IsNotNull (ex.InnerException, "CF#5-3");
- Assert.AreEqual (typeof (FormatException), ex.InnerException.GetType (), "CF#5-4");
- }
- try {
- rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
- new Rectangle (10, 10, 100, 100));
- Assert.Fail ("CF#6: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CF#6");
- }
- try {
- rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
- new RectangleF (10, 10, 100, 100));
- Assert.Fail ("CF#7: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CF#7");
- }
- try {
- rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
- new Point (10, 10));
- Assert.Fail ("CF#8: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CF#8");
- }
- try {
- rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
- new PointF (10, 10));
- Assert.Fail ("CF#9: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CF#9");
- }
- try {
- rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
- new Size (10, 10));
- Assert.Fail ("CF#10: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CF#10");
- }
- try {
- rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
- new SizeF (10, 10));
- Assert.Fail ("CF#11: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CF#11");
- }
- try {
- rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
- new Object ());
- Assert.Fail ("CF#12: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CF#12");
- }
- try {
- rconv.ConvertFrom (null, CultureInfo.InvariantCulture, 1001);
- Assert.Fail ("CF#13: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CF#13");
- }
- }
- [Test]
- public void TestConvertTo ()
- {
- Assert.AreEqual (rectStrInvariant, (String) rconv.ConvertTo (null,
- CultureInfo.InvariantCulture, rect, typeof (String)), "CT#1");
- Assert.AreEqual (rectnegStrInvariant, (String) rconv.ConvertTo (null,
- CultureInfo.InvariantCulture, rectneg, typeof (String)), "CT#2");
- try {
- rconv.ConvertTo (null, CultureInfo.InvariantCulture,
- rect, typeof (Rectangle));
- Assert.Fail ("CT#3: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CT#3");
- }
- try {
- rconv.ConvertTo (null, CultureInfo.InvariantCulture,
- rect, typeof (RectangleF));
- Assert.Fail ("CT#4: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CT#4");
- }
- try {
- rconv.ConvertTo (null, CultureInfo.InvariantCulture,
- rect, typeof (Size));
- Assert.Fail ("CT#5: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CT#5");
- }
- try {
- rconv.ConvertTo (null, CultureInfo.InvariantCulture,
- rect, typeof (SizeF));
- Assert.Fail ("CT#6: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CT#6");
- }
- try {
- rconv.ConvertTo (null, CultureInfo.InvariantCulture,
- rect, typeof (Point));
- Assert.Fail ("CT#7: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CT#7");
- }
- try {
- rconv.ConvertTo (null, CultureInfo.InvariantCulture,
- rect, typeof (PointF));
- Assert.Fail ("CT#8: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CT#8");
- }
- try {
- rconv.ConvertTo (null, CultureInfo.InvariantCulture,
- rect, typeof (Object));
- Assert.Fail ("CT#9: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CT#9");
- }
- try {
- rconv.ConvertTo (null, CultureInfo.InvariantCulture,
- rect, typeof (int));
- Assert.Fail ("CT#10: must throw NotSupportedException");
- } catch (Exception e) {
- Assert.IsTrue (e is NotSupportedException, "CT#10");
- }
- }
- [Test]
- public void TestGetCreateInstanceSupported ()
- {
- Assert.IsTrue (rconv.GetCreateInstanceSupported (), "GCIS#1");
- Assert.IsTrue (rconv.GetCreateInstanceSupported (null), "GCIS#2");
- }
- [Test]
- public void TestCreateInstance ()
- {
- Rectangle rectInstance;
- Hashtable ht = new Hashtable ();
- ht.Add ("X", 10); ht.Add ("Y", 10);
- ht.Add ("Width", 20); ht.Add ("Height", 30);
- rectInstance = (Rectangle) rconv.CreateInstance (ht);
- Assert.AreEqual (rect, rectInstance, "CI#1");
- ht.Clear ();
- ht.Add ("X", -10); ht.Add ("Y", -10);
- ht.Add ("Width", 20); ht.Add ("Height", 30);
- rectInstance = (Rectangle) rconv.CreateInstance (null, ht);
- Assert.AreEqual (rectneg, rectInstance, "CI#2");
- // Property names are case-sensitive. It should throw
- // NullRefExc if any of the property names does not match
- ht.Clear ();
- ht.Add ("x", -10); ht.Add ("Y", -10);
- ht.Add ("Width", 20); ht.Add ("Height", 30);
- try {
- rectInstance = (Rectangle) rconv.CreateInstance (null, ht);
- Assert.Fail ("CI#3: must throw NullReferenceException");
- } catch (Exception e) {
- Assert.IsTrue (e is NullReferenceException, "CI#3");
- }
- }
- [Test]
- public void TestGetPropertiesSupported ()
- {
- Assert.IsTrue (rconv.GetPropertiesSupported (), "GPS#1");
- Assert.IsTrue (rconv.GetPropertiesSupported (null), "GPS#2");
- }
- [Test]
- [Ignore ("This test fails because of bug #58435")]
- public void TestGetProperties ()
- {
- Attribute [] attrs;
- PropertyDescriptorCollection propsColl;
- propsColl = rconv.GetProperties (rect);
- Assert.AreEqual (4, propsColl.Count, "GP1#1");
- Assert.AreEqual (rect.X, propsColl["X"].GetValue (rect), "GP1#2");
- Assert.AreEqual (rect.Y, propsColl["Y"].GetValue (rect), "GP1#3");
- Assert.AreEqual (rect.Width, propsColl["Width"].GetValue (rect), "GP1#4");
- Assert.AreEqual (rect.Height, propsColl["Height"].GetValue (rect), "GP1#5");
- propsColl = rconv.GetProperties (null, rectneg);
- Assert.AreEqual (4, propsColl.Count, "GP2#1");
- Assert.AreEqual (rectneg.X, propsColl["X"].GetValue (rectneg), "GP2#2");
- Assert.AreEqual (rectneg.Y, propsColl["Y"].GetValue (rectneg), "GP2#3");
- Assert.AreEqual (rectneg.Width, propsColl["Width"].GetValue (rectneg), "GP2#4");
- Assert.AreEqual (rectneg.Height, propsColl["Height"].GetValue (rectneg), "GP2#5");
- propsColl = rconv.GetProperties (null, rect, null);
- Assert.AreEqual (11, propsColl.Count, "GP3#1");
- Assert.AreEqual (rect.X, propsColl["X"].GetValue (rect), "GP3#2");
- Assert.AreEqual (rect.Y, propsColl["Y"].GetValue (rect), "GP3#3");
- Assert.AreEqual (rect.Width, propsColl["Width"].GetValue (rect), "GP3#4");
- Assert.AreEqual (rect.Height, propsColl["Height"].GetValue (rect), "GP3#5");
- Assert.AreEqual (rect.Top, propsColl["Top"].GetValue (rect), "GP3#6");
- Assert.AreEqual (rect.Bottom, propsColl["Bottom"].GetValue (rect), "GP3#7");
- Assert.AreEqual (rect.Left, propsColl["Left"].GetValue (rect), "GP3#8");
- Assert.AreEqual (rect.Right, propsColl["Right"].GetValue (rect), "GP3#9");
- Assert.AreEqual (rect.Location, propsColl["Location"].GetValue (rect), "GP3#10");
- Assert.AreEqual (rect.Size, propsColl["Size"].GetValue (rect), "GP3#11");
- Assert.AreEqual (rect.IsEmpty, propsColl["IsEmpty"].GetValue (rect), "GP3#12");
- Type type = typeof (Rectangle);
- attrs = Attribute.GetCustomAttributes (type, true);
- propsColl = rconv.GetProperties (null, rect, attrs);
- Assert.AreEqual (0, propsColl.Count, "GP3#13");
- }
- [Test]
- public void ConvertFromInvariantString_string ()
- {
- Assert.AreEqual (rect, rconv.ConvertFromInvariantString (rectStrInvariant),
- "CFISS#1");
- Assert.AreEqual (rectneg, rconv.ConvertFromInvariantString (rectnegStrInvariant),
- "CFISS#2");
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void ConvertFromInvariantString_string_exc_1 ()
- {
- rconv.ConvertFromInvariantString ("1, 2, 3");
- }
- [Test]
- public void ConvertFromInvariantString_string_exc_2 ()
- {
- try {
- rconv.ConvertFromInvariantString ("hello");
- Assert.Fail ("#1");
- } catch (Exception ex) {
- Assert.AreEqual (typeof (Exception), ex.GetType (), "#2");
- Assert.IsNotNull (ex.InnerException, "#3");
- Assert.AreEqual (typeof (FormatException), ex.InnerException.GetType (), "#3");
- }
- }
- [Test]
- public void ConvertFromString_string ()
- {
- // save current culture
- CultureInfo currentCulture = Thread.CurrentThread.CurrentCulture;
- try {
- PerformConvertFromStringTest (new CultureInfo ("en-US"));
- PerformConvertFromStringTest (new CultureInfo ("nl-BE"));
- PerformConvertFromStringTest (new MyCultureInfo ());
- } finally {
- // restore original culture
- Thread.CurrentThread.CurrentCulture = currentCulture;
- }
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void ConvertFromString_string_exc_1 ()
- {
- CultureInfo culture = CultureInfo.CurrentCulture;
- rconv.ConvertFromString (string.Format(culture,
- "1{0} 2{0} 3{0} 4{0} 5", culture.TextInfo.ListSeparator));
- }
- [Test]
- public void ConvertFromString_string_exc_2 ()
- {
- try {
- rconv.ConvertFromString ("hello");
- Assert.Fail ("#1");
- } catch (Exception ex) {
- Assert.AreEqual (typeof (Exception), ex.GetType (), "#2");
- Assert.IsNotNull (ex.InnerException, "#3");
- Assert.AreEqual (typeof (FormatException), ex.InnerException.GetType (), "#3");
- }
- }
- [Test]
- public void ConvertToInvariantString_string ()
- {
- Assert.AreEqual (rectStrInvariant, rconv.ConvertToInvariantString (rect),
- "CFISS#1");
- Assert.AreEqual (rectnegStrInvariant, rconv.ConvertToInvariantString (rectneg),
- "CFISS#2");
- }
- [Test]
- public void ConvertToString_string () {
- // save current culture
- CultureInfo currentCulture = Thread.CurrentThread.CurrentCulture;
- try {
- PerformConvertToStringTest (new CultureInfo ("en-US"));
- PerformConvertToStringTest (new CultureInfo ("nl-BE"));
- PerformConvertToStringTest (new MyCultureInfo ());
- } finally {
- // restore original culture
- Thread.CurrentThread.CurrentCulture = currentCulture;
- }
- }
- [Test]
- public void GetStandardValuesSupported ()
- {
- Assert.IsFalse (rconv.GetStandardValuesSupported ());
- }
- [Test]
- public void GetStandardValues ()
- {
- Assert.IsNull (rconv.GetStandardValues ());
- }
- [Test]
- public void GetStandardValuesExclusive ()
- {
- Assert.IsFalse (rconv.GetStandardValuesExclusive ());
- }
- private void PerformConvertFromStringTest (CultureInfo culture)
- {
- // set current culture
- Thread.CurrentThread.CurrentCulture = culture;
- // perform tests
- Assert.AreEqual (rect, rconv.ConvertFromString (CreateRectangleString (rect)),
- "CFSS#1-" + culture.Name);
- Assert.AreEqual (rectneg, rconv.ConvertFromString (CreateRectangleString (rectneg)),
- "CFSS#2-" + culture.Name);
- }
- private void PerformConvertToStringTest (CultureInfo culture)
- {
- // set current culture
- Thread.CurrentThread.CurrentCulture = culture;
- // perform tests
- Assert.AreEqual (CreateRectangleString (rect), rconv.ConvertToString (rect),
- "CFISS#1-" + culture.Name);
- Assert.AreEqual (CreateRectangleString (rectneg), rconv.ConvertToString (rectneg),
- "CFISS#2-" + culture.Name);
- }
- private static string CreateRectangleString (Rectangle rectangle)
- {
- return CreateRectangleString (CultureInfo.CurrentCulture, rectangle);
- }
- private static string CreateRectangleString (CultureInfo culture, Rectangle rectangle)
- {
- return string.Format ("{0}{1} {2}{1} {3}{1} {4}", rectangle.X.ToString (culture),
- culture.TextInfo.ListSeparator, rectangle.Y.ToString (culture),
- rectangle.Width.ToString (culture), rectangle.Height.ToString (culture));
- }
- [Serializable]
- private sealed class MyCultureInfo : CultureInfo
- {
- internal MyCultureInfo ()
- : base ("en-US")
- {
- }
- public override object GetFormat (Type formatType)
- {
- if (formatType == typeof (NumberFormatInfo)) {
- NumberFormatInfo nfi = (NumberFormatInfo) ((NumberFormatInfo) base.GetFormat (formatType)).Clone ();
- nfi.NegativeSign = "myNegativeSign";
- return NumberFormatInfo.ReadOnly (nfi);
- } else {
- return base.GetFormat (formatType);
- }
- }
- }
- }
- }
|