[bcl] Remove more NET_2_0 checks from class libs
[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                         Assert.IsNotNull (pd.PrinterSettings, "#5");
52                         Assert.IsFalse (pd.PrintToFile, "#6");
53                         Assert.IsFalse (pd.ShowHelp, "#7");
54                         Assert.IsTrue (pd.ShowNetwork, "#8");
55                 }
56
57                 [Test]
58                 [Category("Printing")]
59                 public void DocumentTest ()
60                 {
61                         PrintDialog pd = new PrintDialog ();
62
63                         PrintDocument pdoc1 = new PrintDocument ();
64                         PrinterSettings ps1 = new PrinterSettings ();
65                         pdoc1.PrinterSettings = ps1;
66                         pd.Document = pdoc1;
67                         Assert.AreEqual (pdoc1, pd.Document, "#1");
68                         Assert.AreEqual (ps1, pd.PrinterSettings, "#2");
69
70                         PrinterSettings ps2 = new PrinterSettings ();
71                         pdoc1.PrinterSettings = ps2;
72                         pd.Document = pdoc1;
73                         Assert.AreEqual (pdoc1, pd.Document, "#3");
74                         Assert.AreEqual (ps2, pd.PrinterSettings, "#4");
75
76                         pd.Document = null;
77                         Assert.IsNull (pd.Document, "#5");
78                         Assert.IsNotNull (pd.PrinterSettings, "#6");
79                         if (pd.PrinterSettings == ps1)
80                                 Assert.Fail ("#7");
81                 }
82
83                 [Test]
84                 [Category("Printing")]
85                 public void PrinterSettingsTest ()
86                 {
87                         PrintDialog pd = new PrintDialog ();
88
89                         PrinterSettings ps1 = new PrinterSettings ();
90                         pd.PrinterSettings = ps1;
91                         Assert.AreEqual (ps1, pd.PrinterSettings, "#1");
92                         Assert.IsNull (pd.Document, "#2");
93
94                         pd.PrinterSettings = null;
95                         Assert.IsNotNull (pd.PrinterSettings, "#3");
96                         Assert.IsNull (pd.Document, "#4");
97                         if (pd.PrinterSettings == ps1)
98                                 Assert.Fail ("#5");
99                 }
100         }
101 }
102