2006-08-08 Chris Toshok <toshok@ximian.com>
[mono.git] / mcs / class / Managed.Windows.Forms / Test / System.Windows.Forms / PaintEventArgsTest.cs
1 //
2 // System.Windows.Forms.PaintEventArgs 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.Windows.Forms;
33 using NUnit.Framework;
34
35 namespace MonoTests.System.Windows.Forms {
36
37         [TestFixture]
38         public class PaintEventArgsTest {
39
40                 private Graphics default_graphics;
41                 private Rectangle default_rect;
42
43                 [TestFixtureSetUp]
44                 public void FixtureSetUp ()
45                 {
46                         Bitmap bmp = new Bitmap (200, 200);
47                         default_graphics = Graphics.FromImage (bmp);
48                         default_rect = new Rectangle (Int32.MinValue, Int32.MinValue, Int32.MaxValue, Int32.MaxValue);
49                 }
50
51 #if NET_2_0
52                 [Test]
53                 [ExpectedException (typeof (ArgumentNullException))]
54                 public void Constructor_NullGraphics ()
55                 {
56                         new PaintEventArgs (null, default_rect);
57                 }
58 #else
59                 [Test]
60                 public void Constructor_NullGraphics ()
61                 {
62                         PaintEventArgs pea = new PaintEventArgs (null, default_rect);
63                         Assert.IsNull (pea.Graphics, "Graphics");
64                         Assert.AreEqual (default_rect, pea.ClipRectangle);
65                 }
66 #endif
67                 [Test]
68                 public void Constructor ()
69                 {
70                         PaintEventArgs pea = new PaintEventArgs (default_graphics, default_rect);
71                         Assert.AreSame (default_graphics, pea.Graphics, "Graphics");
72                         Assert.AreEqual (default_rect, pea.ClipRectangle);
73                 }
74
75                 [Test]
76 #if NET_2_0
77                 [Category ("NotWorking")] // not working under Mono (see #)
78 #else
79                 [ExpectedException (typeof (ArgumentException))]
80 #endif
81                 public void Dispose ()
82                 {
83                         PaintEventArgs pea = new PaintEventArgs (default_graphics, default_rect);
84                         pea.Dispose ();
85                         // uho, under 2.0 we not really disposing the stuff - it means it's not ours to dispose!
86                         Assert.IsTrue (pea.Graphics.Transform.IsIdentity, "Graphics.Transform");
87                 }
88
89                 [Test]
90 #if NET_2_0
91                 [Category ("NotWorking")]
92 #else
93                 [ExpectedException (typeof (ArgumentException))]
94 #endif
95                 public void IDisposable_IDispose ()
96                 {
97                         PaintEventArgs pea = new PaintEventArgs (default_graphics, default_rect);
98                         (pea as IDisposable).Dispose ();
99                         // uho, under 2.0 we not really disposing the stuff - it means it's not ours to dispose!
100                         Assert.IsTrue (pea.Graphics.Transform.IsIdentity, "Graphics");
101                 }
102
103                 [Test]
104                 [ExpectedException (typeof (ArgumentException))]
105                 public void GraphicsDispose ()
106                 {
107                         PaintEventArgs pea = new PaintEventArgs (default_graphics, default_rect);
108                         pea.Graphics.Dispose ();
109                         // a disposed graphics won't accept to return it's transformation matrix
110                         Assert.IsTrue (pea.Graphics.Transform.IsIdentity, "Graphics");
111                 }
112
113                 public class PaintEventArgsTester: PaintEventArgs {
114
115                         public PaintEventArgsTester (Graphics graphics, Rectangle clipRect)
116                                 : base (graphics, clipRect)
117                         {
118                         }
119
120                         public void DisposeBool (bool disposing)
121                         {
122                                 base.Dispose (disposing);
123                         }
124                 }
125
126                 [Test]
127 #if NET_2_0
128                 // under MS runtime it throws an exception under nunit-console, but not when running under NUnit GUI
129                 [Category ("NotDotNet")]
130 #endif
131                 [ExpectedException (typeof (ArgumentException))]
132                 public void Dispose_True ()
133                 {
134                         PaintEventArgsTester pea = new PaintEventArgsTester (default_graphics, default_rect);
135                         pea.DisposeBool (true);
136                         Assert.IsTrue (pea.Graphics.Transform.IsIdentity, "Graphics.Transform");
137                 }
138
139                 [Test]
140 #if NET_2_0
141                 // under MS runtime it throws an exception under nunit-console, but not when running under NUnit GUI
142                 [Category ("NotDotNet")]
143 #endif
144                 [ExpectedException (typeof (ArgumentException))]
145                 public void Dispose_False ()
146                 {
147                         PaintEventArgsTester pea = new PaintEventArgsTester (default_graphics, default_rect);
148                         pea.DisposeBool (false);
149                         Assert.IsTrue (pea.Graphics.Transform.IsIdentity, "Graphics.Transform");
150                 }
151         }
152 }