0e1161c9dca8921b133010f28d07e3c4eb483a79
[mono.git] / mcs / class / WindowsBase / Test / System.Windows / RectConverterTest.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 // 
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 // 
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 //
20 // Copyright (c) 2007 Novell, Inc. (http://www.novell.com)
21 //
22 // Authors:
23 //      Chris Toshok (toshok@ximian.com)
24 //
25
26 using System;
27 using System.Globalization;
28 using System.Windows;
29 using System.Windows.Media;
30 using NUnit.Framework;
31
32 namespace MonoTests.System.Windows {
33
34         [TestFixture]
35         public class RectConverterTest
36         {
37                 [Test]
38                 public void CanConvertFrom ()
39                 {
40                         RectConverter r = new RectConverter ();
41
42                         Assert.IsTrue (r.CanConvertFrom (typeof (string)));
43                         Assert.IsFalse (r.CanConvertFrom (typeof (Rect)));
44                         Assert.IsFalse (r.CanConvertFrom (typeof (Size)));
45                 }
46
47                 [Test]
48                 public void CanConvertTo ()
49                 {
50                         RectConverter r = new RectConverter ();
51
52                         Assert.IsTrue (r.CanConvertTo (typeof (string)));
53                         Assert.IsFalse (r.CanConvertTo (typeof (Rect)));
54                         Assert.IsFalse (r.CanConvertTo (typeof (Size)));
55                 }
56
57                 [Test]
58                 public void ConvertFrom ()
59                 {
60                         RectConverter r = new RectConverter ();
61
62                         object or = r.ConvertFrom ("1, 2, 3, 4");
63                         
64                         Assert.AreEqual (typeof (Rect), or.GetType());
65                         Assert.AreEqual (new Rect (1, 2, 3, 4), or);
66
67                         or = r.ConvertFrom ("Empty");
68                         Assert.AreEqual (typeof (Rect), or.GetType());
69                         Assert.IsTrue (((Rect)or).IsEmpty);
70                 }
71
72                 [Test]
73                 [ExpectedException (typeof (NotSupportedException))]
74                 public void ConvertFrom_size ()
75                 {
76                         RectConverter r = new RectConverter ();
77
78                         r.ConvertFrom (new Size (10, 20));
79                 }
80
81                 [Test]
82                 [ExpectedException (typeof (ArgumentException))]
83                 public void ConvertFrom_negative ()
84                 {
85                         RectConverter r = new RectConverter ();
86                         r.ConvertFrom ("1, 2, -4, -5");
87                 }
88
89                 [Test]
90                 public void ConvertTo ()
91                 {
92                         RectConverter r = new RectConverter ();
93
94                         Rect rect = new Rect (0, 0, 1, 2);
95
96                         object o = r.ConvertTo (null, CultureInfo.InvariantCulture, rect, typeof (string));
97                         
98                         Assert.AreEqual (typeof (string), o.GetType());
99                         Assert.AreEqual ("0,0,1,2", (string)o);
100                 }
101         }
102
103 }