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