BindingFlags.Public needed here as Exception.HResult is now public in .NET 4.5. This...
[mono.git] / mcs / class / Managed.Windows.Forms / Test / System.Windows.Forms / PrintDialogTest.cs
1 //
2 // PrintDialogTest.cs: Tests for PrintDialog class.
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining
5 // a copy of this software and associated documentation files (the
6 // "Software"), to deal in the Software without restriction, including
7 // without limitation the rights to use, copy, modify, merge, publish,
8 // distribute, sublicense, and/or sell copies of the Software, and to
9 // permit persons to whom the Software is furnished to do so, subject to
10 // the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be
13 // included in all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 //
23 // Copyright (c) 2006 Novell, Inc. (http://www.novell.com)
24 //
25 // Authors:
26 //      Carlos Alberto Cortez <calberto.cortez@gmail.com>
27 //
28
29 using System;
30 using System.Collections;
31 using System.Drawing;
32 using System.Drawing.Printing;
33 using System.Windows.Forms;
34 using NUnit.Framework;
35
36 namespace MonoTests.System.Windows.Forms
37 {
38         [TestFixture]
39         public class PrintDialogTest : TestHelper
40         {
41                 [Test]
42                 [Category("Printing")]
43                 public void DefaultValues ()
44                 {
45                         PrintDialog pd = new PrintDialog ();
46
47                         Assert.IsTrue (pd.AllowPrintToFile, "#1");
48                         Assert.IsFalse (pd.AllowSelection, "#2");
49                         Assert.IsFalse (pd.AllowSomePages, "#3");
50                         Assert.IsNull (pd.Document, "#4");
51 #if NET_2_0
52                         Assert.IsNotNull (pd.PrinterSettings, "#5");
53 #else
54                         Assert.IsNull (pd.PrinterSettings, "#5");
55 #endif
56                         Assert.IsFalse (pd.PrintToFile, "#6");
57                         Assert.IsFalse (pd.ShowHelp, "#7");
58                         Assert.IsTrue (pd.ShowNetwork, "#8");
59                 }
60
61                 [Test]
62                 [Category("Printing")]
63                 public void DocumentTest ()
64                 {
65                         PrintDialog pd = new PrintDialog ();
66
67                         PrintDocument pdoc1 = new PrintDocument ();
68                         PrinterSettings ps1 = new PrinterSettings ();
69                         pdoc1.PrinterSettings = ps1;
70                         pd.Document = pdoc1;
71                         Assert.AreEqual (pdoc1, pd.Document, "#1");
72                         Assert.AreEqual (ps1, pd.PrinterSettings, "#2");
73
74                         PrinterSettings ps2 = new PrinterSettings ();
75                         pdoc1.PrinterSettings = ps2;
76                         pd.Document = pdoc1;
77                         Assert.AreEqual (pdoc1, pd.Document, "#3");
78                         Assert.AreEqual (ps2, pd.PrinterSettings, "#4");
79
80                         pd.Document = null;
81                         Assert.IsNull (pd.Document, "#5");
82                         Assert.IsNotNull (pd.PrinterSettings, "#6");
83                         if (pd.PrinterSettings == ps1)
84                                 Assert.Fail ("#7");
85                 }
86
87                 [Test]
88                 [Category("Printing")]
89                 public void PrinterSettingsTest ()
90                 {
91                         PrintDialog pd = new PrintDialog ();
92
93                         PrinterSettings ps1 = new PrinterSettings ();
94                         pd.PrinterSettings = ps1;
95                         Assert.AreEqual (ps1, pd.PrinterSettings, "#1");
96                         Assert.IsNull (pd.Document, "#2");
97
98                         pd.PrinterSettings = null;
99                         Assert.IsNotNull (pd.PrinterSettings, "#3");
100                         Assert.IsNull (pd.Document, "#4");
101                         if (pd.PrinterSettings == ps1)
102                                 Assert.Fail ("#5");
103                 }
104
105 #if ONLY_1_1
106                 [Test] // bug #80764
107                 public void ShowDialog_PrinterSettings_Null ()
108                 {
109                         PrintDialog pd = new PrintDialog ();
110                         try {
111                                 pd.ShowDialog ();
112                                 Assert.Fail ("#1");
113                         } catch (ArgumentException ex) {
114                                 // PrintDialog needs a PrinterSettings object to display
115                                 Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#2");
116                                 Assert.IsNull (ex.InnerException, "#3");
117                                 Assert.IsNotNull (ex.Message, "#4");
118                                 Assert.IsNull (ex.ParamName, "#5");
119                         }
120                 }
121 #endif
122         }
123 }
124