Make System.Drawing unit tests use Assert.Throws instead of [ExpectedException] ...
[mono.git] / mcs / class / System.Drawing / Test / System.Drawing / TestRectangleConverter.cs
1 //
2 // Tests for System.Drawing.RectangleConverter.cs 
3 //
4 // Author:
5 //      Ravindra (rkumar@novell.com)
6 //
7
8 //
9 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Collections;
33 using System.ComponentModel;
34 using System.ComponentModel.Design.Serialization;
35 using System.Drawing;
36 using System.Globalization;
37 using System.Security.Permissions;
38 using System.Threading;
39
40 using NUnit.Framework;
41
42 namespace MonoTests.System.Drawing
43 {
44         [TestFixture]
45         [SecurityPermission (SecurityAction.Deny, UnmanagedCode = true)]
46         public class RectangleConverterTest
47         {
48                 Rectangle rect;
49                 Rectangle rectneg;
50                 RectangleConverter rconv;
51                 String rectStrInvariant;
52                 String rectnegStrInvariant;
53
54                 [SetUp]
55                 public void SetUp ()
56                 {
57                         rect = new Rectangle (10, 10, 20, 30);
58                         rectStrInvariant = rect.X + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " +
59                         rect.Y + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " +
60                         rect.Width + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " + 
61                         rect.Height;
62
63                         rectneg = new Rectangle (-10, -10, 20, 30);
64                         rectnegStrInvariant = rectneg.X + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " 
65                         + rectneg.Y + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " + 
66                         rectneg.Width + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " + rectneg.Height;
67
68                         rconv = (RectangleConverter) TypeDescriptor.GetConverter (rect);
69                 }
70
71                 [Test]
72                 public void TestCanConvertFrom ()
73                 {
74                         Assert.IsTrue (rconv.CanConvertFrom (typeof (String)), "CCF#1");
75                         Assert.IsTrue (rconv.CanConvertFrom (null, typeof (String)), "CCF#2");
76                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (Rectangle)), "CCF#3");
77                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (RectangleF)), "CCF#4");
78                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (Point)), "CCF#5");
79                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (PointF)), "CCF#6");
80                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (Size)), "CCF#7");
81                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (SizeF)), "CCF#8");
82                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (Object)), "CCF#9");
83                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (int)), "CCF#10");
84                         Assert.IsTrue (rconv.CanConvertFrom (null, typeof (InstanceDescriptor)), "CCF#11");
85                 }
86
87                 [Test]
88                 public void TestCanConvertTo ()
89                 {
90                         Assert.IsTrue (rconv.CanConvertTo (typeof (String)), "CCT#1");
91                         Assert.IsTrue (rconv.CanConvertTo (null, typeof (String)), "CCT#2");
92                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (Rectangle)), "CCT#3");
93                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (RectangleF)), "CCT#4");
94                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (Point)), "CCT#5");
95                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (PointF)), "CCT#6");
96                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (Size)), "CCT#7");
97                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (SizeF)), "CCT#8");
98                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (Object)), "CCT#9");
99                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (int)), "CCT#10");
100                 }
101
102                 [Test]
103                 public void TestConvertFrom ()
104                 {
105                         Assert.AreEqual (rect, (Rectangle) rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
106                                                                 "10, 10, 20, 30"), "CF#1");
107                         Assert.AreEqual (rectneg, (Rectangle) rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
108                                                                 "-10, -10, 20, 30"), "CF#2");
109
110                         try {
111                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture, 
112                                                    "10, 10");
113                                 Assert.Fail ("CF#3: must throw ArgumentException");
114                         } catch (Exception e) {
115                                 Assert.IsTrue (e is ArgumentException, "CF#3");
116                         }
117
118                         try {
119                                 rconv.ConvertFrom ("10");
120                                 Assert.Fail ("CF#3a: must throw ArgumentException");
121                         } catch (Exception e) {
122                                 Assert.IsTrue (e is ArgumentException, "CF#3a");
123                         }
124
125                         try {
126                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
127                                                    "1, 1, 1, 1, 1");
128                                 Assert.Fail ("CF#4: must throw ArgumentException");
129                         } catch (Exception e) {
130                                 Assert.IsTrue (e is ArgumentException, "CF#4");
131                         }
132
133                         try {
134                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
135                                                    "*1, 1, 1, 1");
136                                 Assert.Fail ("CF#5: must throw Exception");
137                         } catch (Exception ex) {
138                                 Assert.AreEqual (typeof (Exception), ex.GetType (), "CF#5-2");
139                                 Assert.IsNotNull (ex.InnerException, "CF#5-3");
140                                 Assert.AreEqual (typeof (FormatException), ex.InnerException.GetType (), "CF#5-4");
141                         }
142
143                         try {
144                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
145                                                    new Rectangle (10, 10, 100, 100));
146                                 Assert.Fail ("CF#6: must throw NotSupportedException");
147                         } catch (Exception e) {
148                                 Assert.IsTrue (e is NotSupportedException, "CF#6");
149                         }
150
151                         try {
152                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
153                                                    new RectangleF (10, 10, 100, 100));
154                                 Assert.Fail ("CF#7: must throw NotSupportedException");
155                         } catch (Exception e) {
156                                 Assert.IsTrue (e is NotSupportedException, "CF#7");
157                         }
158
159                         try {
160                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
161                                                    new Point (10, 10));
162                                 Assert.Fail ("CF#8: must throw NotSupportedException");
163                         } catch (Exception e) {
164                                 Assert.IsTrue (e is NotSupportedException, "CF#8");
165                         }
166
167                         try {
168                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
169                                                    new PointF (10, 10));
170                                 Assert.Fail ("CF#9: must throw NotSupportedException");
171                         } catch (Exception e) {
172                                 Assert.IsTrue (e is NotSupportedException, "CF#9");
173                         }
174
175                         try {
176                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
177                                                    new Size (10, 10));
178                                 Assert.Fail ("CF#10: must throw NotSupportedException");
179                         } catch (Exception e) {
180                                 Assert.IsTrue (e is NotSupportedException, "CF#10");
181                         }
182
183                         try {
184                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
185                                                    new SizeF (10, 10));
186                                 Assert.Fail ("CF#11: must throw NotSupportedException");
187                         } catch (Exception e) {
188                                 Assert.IsTrue (e is NotSupportedException, "CF#11");
189                         }
190
191                         try {
192                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
193                                                    new Object ());
194                                 Assert.Fail ("CF#12: must throw NotSupportedException");
195                         } catch (Exception e) {
196                                 Assert.IsTrue (e is NotSupportedException, "CF#12");
197                         }
198
199                         try {
200                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture, 1001);
201                                 Assert.Fail ("CF#13: must throw NotSupportedException");
202                         } catch (Exception e) {
203                                 Assert.IsTrue (e is NotSupportedException, "CF#13");
204                         }
205                 }
206
207                 [Test]
208                 public void TestConvertTo ()
209                 {
210                         Assert.AreEqual (rectStrInvariant, (String) rconv.ConvertTo (null,
211                                 CultureInfo.InvariantCulture, rect, typeof (String)), "CT#1");
212                         Assert.AreEqual (rectnegStrInvariant, (String) rconv.ConvertTo (null,
213                                 CultureInfo.InvariantCulture, rectneg, typeof (String)), "CT#2");
214
215                         try {
216                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture, 
217                                                  rect, typeof (Rectangle));
218                                 Assert.Fail ("CT#3: must throw NotSupportedException");
219                         } catch (Exception e) {
220                                 Assert.IsTrue (e is NotSupportedException, "CT#3");
221                         }
222
223                         try {
224                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
225                                                  rect, typeof (RectangleF));
226                                 Assert.Fail ("CT#4: must throw NotSupportedException");
227                         } catch (Exception e) {
228                                 Assert.IsTrue (e is NotSupportedException, "CT#4");
229                         }
230
231                         try {
232                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
233                                                  rect, typeof (Size));
234                                 Assert.Fail ("CT#5: must throw NotSupportedException");
235                         } catch (Exception e) {
236                                 Assert.IsTrue (e is NotSupportedException, "CT#5");
237                         }
238
239                         try {
240                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
241                                                  rect, typeof (SizeF));
242                                 Assert.Fail ("CT#6: must throw NotSupportedException");
243                         } catch (Exception e) {
244                                 Assert.IsTrue (e is NotSupportedException, "CT#6");
245                         }
246
247                         try {
248                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
249                                                  rect, typeof (Point));
250                                 Assert.Fail ("CT#7: must throw NotSupportedException");
251                         } catch (Exception e) {
252                                 Assert.IsTrue (e is NotSupportedException, "CT#7");
253                         }
254
255                         try {
256                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
257                                                  rect, typeof (PointF));
258                                 Assert.Fail ("CT#8: must throw NotSupportedException");
259                         } catch (Exception e) {
260                                 Assert.IsTrue (e is NotSupportedException, "CT#8");
261                         }
262
263                         try {
264                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
265                                                  rect, typeof (Object));
266                                 Assert.Fail ("CT#9: must throw NotSupportedException");
267                         } catch (Exception e) {
268                                 Assert.IsTrue (e is NotSupportedException, "CT#9");
269                         }
270
271                         try {
272                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
273                                                  rect, typeof (int));
274                                 Assert.Fail ("CT#10: must throw NotSupportedException");
275                         } catch (Exception e) {
276                                 Assert.IsTrue (e is NotSupportedException, "CT#10");
277                         }
278                 }
279
280                 [Test]
281                 public void TestGetCreateInstanceSupported ()
282                 {
283                         Assert.IsTrue (rconv.GetCreateInstanceSupported (), "GCIS#1");
284                         Assert.IsTrue (rconv.GetCreateInstanceSupported (null), "GCIS#2");
285                 }
286
287                 [Test]
288                 public void TestCreateInstance ()
289                 {
290                         Rectangle rectInstance;
291
292                         Hashtable ht = new Hashtable ();
293                         ht.Add ("X", 10); ht.Add ("Y", 10);
294                         ht.Add ("Width", 20); ht.Add ("Height", 30);
295
296                         rectInstance = (Rectangle) rconv.CreateInstance (ht);
297                         Assert.AreEqual (rect, rectInstance, "CI#1");
298
299                         ht.Clear ();
300                         ht.Add ("X", -10); ht.Add ("Y", -10);
301                         ht.Add ("Width", 20); ht.Add ("Height", 30);
302
303                         rectInstance = (Rectangle) rconv.CreateInstance (null, ht);
304                         Assert.AreEqual (rectneg, rectInstance, "CI#2");
305                 }
306
307                 [Test]
308                 public void TestCreateInstance_CaseSensitive ()
309                 {
310                         Hashtable ht = new Hashtable ();
311                         ht.Add ("x", -10);
312                         ht.Add ("Y", -10);
313                         ht.Add ("Width", 20);
314                         ht.Add ("Height", 30);
315                         Assert.Throws<ArgumentException> (() => rconv.CreateInstance (null, ht));
316                 }
317
318                 [Test]
319                 public void TestGetPropertiesSupported ()
320                 {
321                         Assert.IsTrue (rconv.GetPropertiesSupported (), "GPS#1");
322                         Assert.IsTrue (rconv.GetPropertiesSupported (null), "GPS#2");
323                 }
324
325                 [Test]
326                 public void TestGetProperties ()
327                 {
328                         Attribute [] attrs;
329                         PropertyDescriptorCollection propsColl;
330
331                         propsColl = rconv.GetProperties (rect);
332                         Assert.AreEqual (4, propsColl.Count, "GP1#1");
333                         Assert.AreEqual (rect.X, propsColl["X"].GetValue (rect), "GP1#2");
334                         Assert.AreEqual (rect.Y, propsColl["Y"].GetValue (rect), "GP1#3");
335                         Assert.AreEqual (rect.Width, propsColl["Width"].GetValue (rect), "GP1#4");
336                         Assert.AreEqual (rect.Height, propsColl["Height"].GetValue (rect), "GP1#5");
337
338                         propsColl = rconv.GetProperties (null, rectneg);
339                         Assert.AreEqual (4, propsColl.Count, "GP2#1");
340                         Assert.AreEqual (rectneg.X, propsColl["X"].GetValue (rectneg), "GP2#2");
341                         Assert.AreEqual (rectneg.Y, propsColl["Y"].GetValue (rectneg), "GP2#3");
342                         Assert.AreEqual (rectneg.Width, propsColl["Width"].GetValue (rectneg), "GP2#4");
343                         Assert.AreEqual (rectneg.Height, propsColl["Height"].GetValue (rectneg), "GP2#5");
344
345                         propsColl = rconv.GetProperties (null, rect, null);
346                         Assert.AreEqual (11, propsColl.Count, "GP3#1");
347                         Assert.AreEqual (rect.X, propsColl["X"].GetValue (rect), "GP3#2");
348                         Assert.AreEqual (rect.Y, propsColl["Y"].GetValue (rect), "GP3#3");
349                         Assert.AreEqual (rect.Width, propsColl["Width"].GetValue (rect), "GP3#4");
350                         Assert.AreEqual (rect.Height, propsColl["Height"].GetValue (rect), "GP3#5");
351
352                         Assert.AreEqual (rect.Top, propsColl["Top"].GetValue (rect), "GP3#6");
353                         Assert.AreEqual (rect.Bottom, propsColl["Bottom"].GetValue (rect), "GP3#7");
354                         Assert.AreEqual (rect.Left, propsColl["Left"].GetValue (rect), "GP3#8");
355                         Assert.AreEqual (rect.Right, propsColl["Right"].GetValue (rect), "GP3#9");
356                         Assert.AreEqual (rect.Location, propsColl["Location"].GetValue (rect), "GP3#10");
357                         Assert.AreEqual (rect.Size, propsColl["Size"].GetValue (rect), "GP3#11");
358                         Assert.AreEqual (rect.IsEmpty, propsColl["IsEmpty"].GetValue (rect), "GP3#12");
359
360                         Type type = typeof (Rectangle);
361                         attrs = Attribute.GetCustomAttributes (type, true);
362                         propsColl = rconv.GetProperties (null, rect, attrs);
363                         Assert.AreEqual (0, propsColl.Count, "GP3#13");
364                 }
365
366                 [Test]
367                 public void ConvertFromInvariantString_string ()
368                 {
369                         Assert.AreEqual (rect, rconv.ConvertFromInvariantString (rectStrInvariant),
370                                 "CFISS#1");
371                         Assert.AreEqual (rectneg, rconv.ConvertFromInvariantString (rectnegStrInvariant),
372                                 "CFISS#2");
373                 }
374
375                 [Test]
376                 public void ConvertFromInvariantString_string_exc_1 ()
377                 {
378                         Assert.Throws<ArgumentException> (() => rconv.ConvertFromInvariantString ("1, 2, 3"));
379                 }
380
381                 [Test]
382                 public void ConvertFromInvariantString_string_exc_2 ()
383                 {
384                         try {
385                                 rconv.ConvertFromInvariantString ("hello");
386                                 Assert.Fail ("#1");
387                         } catch (Exception ex) {
388                                 Assert.AreEqual (typeof (Exception), ex.GetType (), "#2");
389                                 Assert.IsNotNull (ex.InnerException, "#3");
390                                 Assert.AreEqual (typeof (FormatException), ex.InnerException.GetType (), "#3");
391                         }
392                 }
393
394                 [Test]
395                 public void ConvertFromString_string ()
396                 {
397                         // save current culture
398                         CultureInfo currentCulture = Thread.CurrentThread.CurrentCulture;
399
400                         try {
401                                 PerformConvertFromStringTest (new CultureInfo ("en-US"));
402                                 PerformConvertFromStringTest (new CultureInfo ("nl-BE"));
403                                 PerformConvertFromStringTest (new MyCultureInfo ());
404                         } finally {
405                                 // restore original culture
406                                 Thread.CurrentThread.CurrentCulture = currentCulture;
407                         }
408                 }
409
410                 [Test]
411                 public void ConvertFromString_string_exc_1 ()
412                 {
413                         CultureInfo culture = CultureInfo.CurrentCulture;
414                         Assert.Throws<ArgumentException> (() => rconv.ConvertFromString (string.Format(culture,
415                                 "1{0} 2{0} 3{0} 4{0} 5", culture.TextInfo.ListSeparator)));
416                 }
417
418                 [Test]
419                 public void ConvertFromString_string_exc_2 ()
420                 {
421                         try {
422                                 rconv.ConvertFromString ("hello");
423                                 Assert.Fail ("#1");
424                         } catch (Exception ex) {
425                                 Assert.AreEqual (typeof (Exception), ex.GetType (), "#2");
426                                 Assert.IsNotNull (ex.InnerException, "#3");
427                                 Assert.AreEqual (typeof (FormatException), ex.InnerException.GetType (), "#3");
428                         }
429                 }
430
431                 [Test]
432                 public void ConvertToInvariantString_string ()
433                 {
434                         Assert.AreEqual (rectStrInvariant, rconv.ConvertToInvariantString (rect),
435                                 "CFISS#1");
436                         Assert.AreEqual (rectnegStrInvariant, rconv.ConvertToInvariantString (rectneg),
437                                 "CFISS#2");
438                 }
439
440                 [Test]
441                 public void ConvertToString_string () {
442                         // save current culture
443                         CultureInfo currentCulture = Thread.CurrentThread.CurrentCulture;
444
445                         try {
446                                 PerformConvertToStringTest (new CultureInfo ("en-US"));
447                                 PerformConvertToStringTest (new CultureInfo ("nl-BE"));
448                                 PerformConvertToStringTest (new MyCultureInfo ());
449                         } finally {
450                                 // restore original culture
451                                 Thread.CurrentThread.CurrentCulture = currentCulture;
452                         }
453                 }
454
455                 [Test]
456                 public void GetStandardValuesSupported ()
457                 {
458                         Assert.IsFalse (rconv.GetStandardValuesSupported ());
459                 }
460
461                 [Test]
462                 public void GetStandardValues ()
463                 {
464                         Assert.IsNull (rconv.GetStandardValues ());
465                 }
466
467                 [Test]
468                 public void GetStandardValuesExclusive ()
469                 {
470                         Assert.IsFalse (rconv.GetStandardValuesExclusive ());
471                 }
472
473                 private void PerformConvertFromStringTest (CultureInfo culture)
474                 {
475                         // set current culture
476                         Thread.CurrentThread.CurrentCulture = culture;
477
478                         // perform tests
479                         Assert.AreEqual (rect, rconv.ConvertFromString (CreateRectangleString (rect)),
480                                 "CFSS#1-" + culture.Name);
481                         Assert.AreEqual (rectneg, rconv.ConvertFromString (CreateRectangleString (rectneg)),
482                                 "CFSS#2-" + culture.Name);
483                 }
484
485                 private void PerformConvertToStringTest (CultureInfo culture)
486                 {
487                         // set current culture
488                         Thread.CurrentThread.CurrentCulture = culture;
489
490                         // perform tests
491                         Assert.AreEqual (CreateRectangleString (rect), rconv.ConvertToString (rect),
492                                 "CFISS#1-" + culture.Name);
493                         Assert.AreEqual (CreateRectangleString (rectneg), rconv.ConvertToString (rectneg),
494                                 "CFISS#2-" + culture.Name);
495                 }
496
497                 private static string CreateRectangleString (Rectangle rectangle)
498                 {
499                         return CreateRectangleString (CultureInfo.CurrentCulture, rectangle);
500                 }
501
502                 private static string CreateRectangleString (CultureInfo culture, Rectangle rectangle)
503                 {
504                         return string.Format ("{0}{1} {2}{1} {3}{1} {4}", rectangle.X.ToString (culture),
505                                 culture.TextInfo.ListSeparator, rectangle.Y.ToString (culture),
506                                 rectangle.Width.ToString (culture), rectangle.Height.ToString (culture));
507                 }
508
509                 [Serializable]
510                 private sealed class MyCultureInfo : CultureInfo
511                 {
512                         internal MyCultureInfo ()
513                                 : base ("en-US")
514                         {
515                         }
516
517                         public override object GetFormat (Type formatType)
518                         {
519                                 if (formatType == typeof (NumberFormatInfo)) {
520                                         NumberFormatInfo nfi = (NumberFormatInfo) ((NumberFormatInfo) base.GetFormat (formatType)).Clone ();
521
522                                         nfi.NegativeSign = "myNegativeSign";
523                                         return NumberFormatInfo.ReadOnly (nfi);
524                                 } else {
525                                         return base.GetFormat (formatType);
526                                 }
527                         }
528                 }
529         }
530 }