64375844ccd8dfac57e4121a643e488f1ae5f5c0
[mono.git] / mcs / class / WindowsBase / Test / System.Windows / Int32RectConverterTest.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 Int32RectConverterTest
35         {
36                 [Test]
37                 public void CanConvertFrom ()
38                 {
39                         Int32RectConverter r = new Int32RectConverter ();
40
41                         Assert.IsTrue (r.CanConvertFrom (typeof (string)));
42                         Assert.IsFalse (r.CanConvertFrom (typeof (Int32Rect)));
43                         Assert.IsFalse (r.CanConvertFrom (typeof (Size)));
44                 }
45
46                 [Test]
47                 public void CanConvertTo ()
48                 {
49                         Int32RectConverter r = new Int32RectConverter ();
50
51                         Assert.IsTrue (r.CanConvertTo (typeof (string)));
52                         Assert.IsFalse (r.CanConvertTo (typeof (Int32Rect)));
53                         Assert.IsFalse (r.CanConvertTo (typeof (Size)));
54                 }
55
56                 [Test]
57                 public void ConvertFrom ()
58                 {
59                         Int32RectConverter r = new Int32RectConverter ();
60
61                         object or = r.ConvertFrom ("1, 2, 3, 4");
62                         
63                         Assert.AreEqual (typeof (Int32Rect), or.GetType());
64                         Assert.AreEqual (new Int32Rect (1, 2, 3, 4), or);
65
66                         or = r.ConvertFrom ("Empty");
67                         Assert.AreEqual (typeof (Int32Rect), or.GetType());
68                         Assert.IsTrue (((Int32Rect)or).IsEmpty);
69                 }
70
71                 [Test]
72                 [ExpectedException (typeof (NotSupportedException))]
73                 public void ConvertFrom_size ()
74                 {
75                         Int32RectConverter r = new Int32RectConverter ();
76
77                         r.ConvertFrom (new Size (10, 20));
78                 }
79
80                 [Test]
81                 public void ConvertFrom_negative ()
82                 {
83                         Int32RectConverter r = new Int32RectConverter ();
84                         object or = r.ConvertFrom ("1, 2, -4, -5");
85
86                         Assert.AreEqual (typeof (Int32Rect), or.GetType());
87                         Assert.AreEqual (new Int32Rect (1, 2, -4, -5), or);
88                 }
89
90                 [Test]
91                 [Category ("NotWorking")]
92                 public void ConvertTo ()
93                 {
94                         Int32RectConverter r = new Int32RectConverter ();
95
96                         Int32Rect rect = new Int32Rect (0, 0, 1, 2);
97
98                         object o = r.ConvertTo (rect, typeof (string));
99                         
100                         Assert.AreEqual (typeof (string), o.GetType());
101                         Assert.AreEqual ("0,0,1,2", (string)o);
102                 }
103         }
104
105 }