Multi-culture implementation ValueSerializers, Parse and ToString for types from...
[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.Windows;
28 using System.Windows.Media;
29 using NUnit.Framework;
30
31 namespace MonoTests.System.Windows {
32
33         [TestFixture]
34         public class RectConverterTest
35         {
36                 [Test]
37                 public void CanConvertFrom ()
38                 {
39                         RectConverter r = new RectConverter ();
40
41                         Assert.IsTrue (r.CanConvertFrom (typeof (string)));
42                         Assert.IsFalse (r.CanConvertFrom (typeof (Rect)));
43                         Assert.IsFalse (r.CanConvertFrom (typeof (Size)));
44                 }
45
46                 [Test]
47                 public void CanConvertTo ()
48                 {
49                         RectConverter r = new RectConverter ();
50
51                         Assert.IsTrue (r.CanConvertTo (typeof (string)));
52                         Assert.IsFalse (r.CanConvertTo (typeof (Rect)));
53                         Assert.IsFalse (r.CanConvertTo (typeof (Size)));
54                 }
55
56                 [Test]
57                 public void ConvertFrom ()
58                 {
59                         RectConverter r = new RectConverter ();
60
61                         object or = r.ConvertFrom ("1, 2, 3, 4");
62                         
63                         Assert.AreEqual (typeof (Rect), or.GetType());
64                         Assert.AreEqual (new Rect (1, 2, 3, 4), or);
65
66                         or = r.ConvertFrom ("Empty");
67                         Assert.AreEqual (typeof (Rect), or.GetType());
68                         Assert.IsTrue (((Rect)or).IsEmpty);
69                 }
70
71                 [Test]
72                 [ExpectedException (typeof (NotSupportedException))]
73                 public void ConvertFrom_size ()
74                 {
75                         RectConverter r = new RectConverter ();
76
77                         r.ConvertFrom (new Size (10, 20));
78                 }
79
80                 [Test]
81                 [ExpectedException (typeof (ArgumentException))]
82                 public void ConvertFrom_negative ()
83                 {
84                         RectConverter r = new RectConverter ();
85                         r.ConvertFrom ("1, 2, -4, -5");
86                 }
87
88                 [Test]
89                 public void ConvertTo ()
90                 {
91                         RectConverter r = new RectConverter ();
92
93                         Rect rect = new Rect (0, 0, 1, 2);
94
95                         object o = r.ConvertTo (rect, typeof (string));
96                         
97                         Assert.AreEqual (typeof (string), o.GetType());
98                         Assert.AreEqual ("0,0,1,2", (string)o);
99                 }
100         }
101
102 }