[mono-config] use right type for result of strlen
[mono.git] / mcs / class / System.Drawing / Test / System.Drawing / TestPoint.cs
index 9c9bf12741cf13a1420f5d11c3aa4847ddae767b..71bb2abec8baec2a81ab03ac491173456914a45d 100644 (file)
@@ -1,17 +1,42 @@
 // Tests for System.Drawing.Point.cs
 //
 // Author: Mike Kestner (mkestner@speakeasy.net)
-//                Improvements by Jordi Mas i Hernàndez <jmas@softcatala.org>
+//                Improvements by Jordi Mas i Hernandez <jmas@softcatala.org>
 // Copyright (c) 2001 Ximian, Inc.
 
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
 using NUnit.Framework;
 using System;
 using System.Drawing;
+using System.Security.Permissions;
 
 namespace MonoTests.System.Drawing{
 
        [TestFixture]   
-       public class PointTest : Assertion {
+       [SecurityPermission (SecurityAction.Deny, UnmanagedCode = true)]
+       public class PointTest {
                Point pt1_1;
                Point pt1_0;
                Point pt0_1;
@@ -31,73 +56,73 @@ namespace MonoTests.System.Drawing{
                [Test]
                public void EqualsTest () 
                {
-                       AssertEquals (pt1_1, pt1_1);
-                       AssertEquals (pt1_1, new Point (1, 1));
-                       Assert (!pt1_1.Equals (pt1_0));
-                       Assert (!pt1_1.Equals (pt0_1));
-                       Assert (!pt1_0.Equals (pt0_1));
+                       Assert.AreEqual (pt1_1, pt1_1, "#1");
+                       Assert.AreEqual (pt1_1, new Point (1, 1), "#2");
+                       Assert.IsTrue (!pt1_1.Equals (pt1_0), "#3");
+                       Assert.IsTrue (!pt1_1.Equals (pt0_1), "#4");
+                       Assert.IsTrue (!pt1_0.Equals (pt0_1), "#5");
                }
                
                [Test]
                public void EqualityOpTest () 
                {
-                       Assert (pt1_1 == pt1_1);
-                       Assert (pt1_1 == new Point (1, 1));
-                       Assert (!(pt1_1 == pt1_0));
-                       Assert (!(pt1_1 == pt0_1));
-                       Assert (!(pt1_0 == pt0_1));
+                       Assert.IsTrue (pt1_1 == pt1_1, "#1");
+                       Assert.IsTrue (pt1_1 == new Point (1, 1), "#2");
+                       Assert.IsTrue (!(pt1_1 == pt1_0), "#3");
+                       Assert.IsTrue (!(pt1_1 == pt0_1), "#4");
+                       Assert.IsTrue (!(pt1_0 == pt0_1), "#5");
                }
 
                [Test]
                public void InequalityOpTest () 
                {
-                       Assert (!(pt1_1 != pt1_1));
-                       Assert (!(pt1_1 != new Point (1, 1)));
-                       Assert (pt1_1 != pt1_0);
-                       Assert (pt1_1 != pt0_1);
-                       Assert (pt1_0 != pt0_1);
+                       Assert.IsTrue (!(pt1_1 != pt1_1), "#1");
+                       Assert.IsTrue (!(pt1_1 != new Point (1, 1)), "#2");
+                       Assert.IsTrue (pt1_1 != pt1_0, "#3");
+                       Assert.IsTrue (pt1_1 != pt0_1, "#4");
+                       Assert.IsTrue (pt1_0 != pt0_1, "#5");
                }
        
                [Test]
                public void CeilingTest () 
                {
                        PointF ptf = new PointF (0.8f, 0.3f);
-                       AssertEquals (pt1_1, Point.Ceiling (ptf));
+                       Assert.AreEqual (pt1_1, Point.Ceiling (ptf), "#1");
                }
        
                [Test]
                public void RoundTest () 
                {
                        PointF ptf = new PointF (0.8f, 1.3f);
-                       AssertEquals (pt1_1, Point.Round (ptf));
+                       Assert.AreEqual (pt1_1, Point.Round (ptf), "#1");
                }
        
                [Test]
                public void TruncateTest () 
                {
                        PointF ptf = new PointF (0.8f, 1.3f);
-                       AssertEquals (pt0_1, Point.Truncate (ptf));
+                       Assert.AreEqual (pt0_1, Point.Truncate (ptf), "#1");
                }
        
                [Test]
                public void NullTest () 
                {
                        Point pt = new Point (0, 0);
-                       AssertEquals (pt, Point.Empty);
+                       Assert.AreEqual (pt, Point.Empty, "#1");
                }
        
                [Test]
                public void AdditionTest () 
                {
-                       AssertEquals (pt1_1, pt1_0 + new Size (0, 1));
-                       AssertEquals (pt1_1, pt0_1 + new Size (1, 0));
+                       Assert.AreEqual (pt1_1, pt1_0 + new Size (0, 1), "#1");
+                       Assert.AreEqual (pt1_1, pt0_1 + new Size (1, 0), "#2");
                }
        
                [Test]
                public void SubtractionTest () 
                {
-                       AssertEquals (pt1_0, pt1_1 - new Size (0, 1));
-                       AssertEquals (pt0_1, pt1_1 - new Size (1, 0));
+                       Assert.AreEqual (pt1_0, pt1_1 - new Size (0, 1), "#1");
+                       Assert.AreEqual (pt0_1, pt1_1 - new Size (1, 0), "#2");
                }
        
                [Test]
@@ -106,7 +131,7 @@ namespace MonoTests.System.Drawing{
                        Size sz1 = new Size (1, 1);
                        Size sz2 = (Size) pt1_1;
        
-                       AssertEquals (sz1, sz2);
+                       Assert.AreEqual (sz1, sz2, "#1");
                }
        
                [Test]
@@ -115,7 +140,7 @@ namespace MonoTests.System.Drawing{
                        PointF ptf1 = new PointF (1, 1);
                        PointF ptf2 = pt1_1;
        
-                       AssertEquals (ptf1, ptf2);
+                       Assert.AreEqual (ptf1, ptf2, "#1");
                }
        
                [Test]
@@ -126,9 +151,9 @@ namespace MonoTests.System.Drawing{
                        Point pt_i = new Point (i);
                        Point pt_sz = new Point (sz);
        
-                       AssertEquals (pt_i, pt_sz);
-                       AssertEquals (pt_i, pt1_1);
-                       AssertEquals (pt_sz, pt1_1);
+                       Assert.AreEqual (pt_i, pt_sz, "#1");
+                       Assert.AreEqual (pt_i, pt1_1, "#2");
+                       Assert.AreEqual (pt_sz, pt1_1, "#3");
                }
                
                [Test]
@@ -136,10 +161,10 @@ namespace MonoTests.System.Drawing{
                {
                        Point pt = new Point (0, 0);
        
-                       Assert (pt.IsEmpty);
-                       Assert (!pt1_1.IsEmpty);
-                       AssertEquals (1, pt1_0.X);
-                       AssertEquals (1, pt0_1.Y);
+                       Assert.IsTrue (pt.IsEmpty, "#1");
+                       Assert.IsTrue (!pt1_1.IsEmpty, "#2");
+                       Assert.AreEqual (1, pt1_0.X, "#3");
+                       Assert.AreEqual (1, pt0_1.Y, "#4");
                }
                
                [Test]
@@ -147,12 +172,57 @@ namespace MonoTests.System.Drawing{
                {
                        Point pt = new Point (0, 0);
                        pt.Offset (0, 1);
-                       AssertEquals (pt, pt0_1);
+                       Assert.AreEqual (pt, pt0_1, "#1");
                        pt.Offset (1, 0);
-                       AssertEquals (pt, pt1_1);
+                       Assert.AreEqual (pt, pt1_1, "#2");
                        pt.Offset (0, -1);
-                       AssertEquals (pt, pt1_0);
+                       Assert.AreEqual (pt, pt1_0, "#3");
+               }
+               
+               [Test]
+               public void GetHashCodeTest ()
+               {
+                       Assert.AreEqual (0, pt1_1.GetHashCode (), "#1");
+                       Assert.AreEqual (1, pt1_0.GetHashCode (), "#2");
+                       Assert.AreEqual (1, pt0_1.GetHashCode (), "#3");
+                       Point pt = new Point(0xFF, 0xFF00);
+                       Assert.AreEqual (0xFFFF, pt.GetHashCode (), "#4");
+               }
+
+               [Test]
+               public void ToStringTest ()
+               {
+                       Assert.AreEqual ("{X=1,Y=1}", pt1_1.ToString (), "#1");
+                       Assert.AreEqual ("{X=1,Y=0}", pt1_0.ToString (), "#2");
+                       Assert.AreEqual ("{X=0,Y=1}", pt0_1.ToString (), "#3");
+               }
+
+               [Test]
+               public void AddTest ()
+               {
+                       Assert.AreEqual (pt1_1, Point.Add (pt1_0, new Size (0, 1)), "#1");
+                       Assert.AreEqual (pt1_1, Point.Add (pt0_1, new Size (1, 0)), "#2");
                }
+
+               [Test]
+               public void OffsetTestPoint ()
+               {
+                       Point pt = new Point (0, 0);
+                       pt.Offset (new Point (0, 1));
+                       Assert.AreEqual (pt, pt0_1, "#1");
+                       pt.Offset (new Point (1, 0));
+                       Assert.AreEqual (pt, pt1_1, "#2");
+                       pt.Offset (new Point (0, -1));
+                       Assert.AreEqual (pt, pt1_0, "#3");
+               }
+
+               [Test]
+               public void SubtractTest ()
+               {
+                       Assert.AreEqual (pt1_0, Point.Subtract (pt1_1, new Size (0, 1)), "#1");
+                       Assert.AreEqual (pt0_1, Point.Subtract (pt1_1, new Size (1, 0)), "#2");
+               }
+
        }
 }