New test.
[mono.git] / mcs / class / System.Drawing / Test / System.Drawing / RegionDataTest.cs
1 //
2 // System.Drawing.RegionData unit tests
3 //
4 // Authors:
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //
7 // Copyright (C) 2006 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System;
30 using System.Drawing;
31 using System.Drawing.Drawing2D;
32 using System.Runtime.InteropServices;
33 using System.Security.Permissions;
34 using NUnit.Framework;
35
36 namespace MonoTests.System.Drawing {
37
38         [TestFixture]
39         [SecurityPermission (SecurityAction.Deny, UnmanagedCode = true)]
40         public class RegionDataTest {
41
42                 private Bitmap bitmap;
43                 private Graphics graphic;
44                 private GraphicsPath sp1;
45                 private GraphicsPath sp2;
46
47                 [TestFixtureSetUp]
48                 public void FixtureSetUp ()
49                 {
50                         bitmap = new Bitmap (10, 10);
51                         graphic = Graphics.FromImage (bitmap);
52
53                         sp1 = new GraphicsPath ();
54                         sp1.AddPolygon (new Point[4] { new Point (0, 0), new Point (3, 0), new Point (3, 3), new Point (0, 3) });
55
56                         sp2 = new GraphicsPath ();
57                         sp2.AddPolygon (new Point[4] { new Point (2, 2), new Point (5, 2), new Point (5, 5), new Point (2, 5) });
58                 }
59
60                 [Test]
61                 [ExpectedException (typeof (NullReferenceException))]
62                 public void RegionData_Null ()
63                 {
64                         RegionData data = new Region ().GetRegionData ();
65                         data.Data = null;
66                         Assert.IsNull (data.Data, "Data");
67                         Region region = new Region (data);
68                 }
69
70                 [Test]
71                 public void RegionData_EmptyData ()
72                 {
73                         RegionData data = new Region ().GetRegionData ();
74                         data.Data = new byte[0];
75                         Assert.AreEqual (0, data.Data.Length, "Data");
76                         try {
77                                 new Region (data);
78                         }
79                         catch (ExternalException) {
80                                 // MS
81                         }
82                         catch (ArgumentException) {
83                                 // Mono
84                         }
85                 }
86
87                 [Test]
88                 public void EmptyRegion ()
89                 {
90                         // note: an empty region is (for libgdiplus) a rectangular based region
91                         Region empty = new Region ();
92                         RegionData data = empty.GetRegionData ();
93                         Assert.IsNotNull (data.Data, "Data");
94                         Region region = new Region (data);
95                 }
96
97                 [Test]
98                 public void PathRegion ()
99                 {
100                         GraphicsPath path = new GraphicsPath ();
101                         path.AddCurve (new Point[2] { new Point (1, 1), new Point (2, 2) });
102                         Region r = new Region (path);
103                         RegionData data = r.GetRegionData ();
104                         Assert.IsNotNull (data.Data, "Data");
105                         Region region = new Region (data);
106                         Assert.IsTrue (r.GetBounds (graphic).Equals (region.GetBounds (graphic)), "Bounds");
107                 }
108
109                 [Test]
110                 public void CombinedPathRegion ()
111                 {
112                         // note: seems identical to PathRegion but it test another code path inside libgdiplus
113                         Region r = new Region (sp1);
114                         r.Xor (sp2);
115                         RegionData data = r.GetRegionData ();
116                         Assert.IsNotNull (data.Data, "Data");
117                         Region region = new Region (data);
118                         Assert.IsTrue (r.GetBounds (graphic).Equals (region.GetBounds (graphic)), "Bounds");
119                 }
120
121                 [Test]
122                 public void MultiCombinedPathRegion ()
123                 {
124                         // note: seems identical to PathRegion but it test another code path inside libgdiplus
125                         Region r1 = new Region (sp1);
126                         r1.Xor (sp2);
127                         Region r2 = new Region (sp2);
128                         r2.Complement (sp1);
129
130                         Region r = r1.Clone ();
131                         r.Union (r2);
132                         RegionData data = r.GetRegionData ();
133                         Assert.IsNotNull (data.Data, "Data");
134                         Region region = new Region (data);
135                         Assert.IsTrue (r.GetBounds (graphic).Equals (region.GetBounds (graphic)), "Bounds");
136                 }
137         }
138 }