Remove invalid tests for image palettes in GdiPlusTest (#5671)
[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                 public void RegionData_Null ()
62                 {
63                         RegionData data = new Region ().GetRegionData ();
64                         data.Data = null;
65                         Assert.IsNull (data.Data, "Data");
66                         Assert.Throws<NullReferenceException> (() => new Region (data));
67                 }
68
69                 [Test]
70                 public void RegionData_EmptyData ()
71                 {
72                         RegionData data = new Region ().GetRegionData ();
73                         data.Data = new byte[0];
74                         Assert.AreEqual (0, data.Data.Length, "Data");
75                         try {
76                                 new Region (data);
77                         }
78                         catch (ExternalException) {
79                                 // MS
80                         }
81                         catch (ArgumentException) {
82                                 // Mono
83                         }
84                 }
85
86                 [Test]
87                 public void EmptyRegion ()
88                 {
89                         // note: an empty region is (for libgdiplus) a rectangular based region
90                         Region empty = new Region ();
91                         RegionData data = empty.GetRegionData ();
92                         Assert.IsNotNull (data.Data, "Data");
93                         Region region = new Region (data);
94                 }
95
96                 [Test]
97                 public void PathRegion ()
98                 {
99                         GraphicsPath path = new GraphicsPath ();
100                         path.AddCurve (new Point[2] { new Point (1, 1), new Point (2, 2) });
101                         Region r = new Region (path);
102                         RegionData data = r.GetRegionData ();
103                         Assert.IsNotNull (data.Data, "Data");
104                         Region region = new Region (data);
105                         Assert.IsTrue (r.GetBounds (graphic).Equals (region.GetBounds (graphic)), "Bounds");
106                 }
107
108                 [Test]
109                 public void CombinedPathRegion ()
110                 {
111                         // note: seems identical to PathRegion but it test another code path inside libgdiplus
112                         Region r = new Region (sp1);
113                         r.Xor (sp2);
114                         RegionData data = r.GetRegionData ();
115                         Assert.IsNotNull (data.Data, "Data");
116                         Region region = new Region (data);
117                         Assert.IsTrue (r.GetBounds (graphic).Equals (region.GetBounds (graphic)), "Bounds");
118                 }
119
120                 [Test]
121                 public void MultiCombinedPathRegion ()
122                 {
123                         // note: seems identical to PathRegion but it test another code path inside libgdiplus
124                         Region r1 = new Region (sp1);
125                         r1.Xor (sp2);
126                         Region r2 = new Region (sp2);
127                         r2.Complement (sp1);
128
129                         Region r = r1.Clone ();
130                         r.Union (r2);
131                         RegionData data = r.GetRegionData ();
132                         Assert.IsNotNull (data.Data, "Data");
133                         Region region = new Region (data);
134                         Assert.IsTrue (r.GetBounds (graphic).Equals (region.GetBounds (graphic)), "Bounds");
135                 }
136         }
137 }