2006-08-08 Chris Toshok <toshok@ximian.com>
[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
40         {
41                 [Test]
42                 public void DefaultValues ()
43                 {
44                         PrintDialog pd = new PrintDialog ();
45
46                         Assert.IsTrue (pd.AllowPrintToFile, "#1");
47                         Assert.IsFalse (pd.AllowSelection, "#2");
48                         Assert.IsFalse (pd.AllowSomePages, "#3");
49                         Assert.IsNull (pd.Document, "#4");
50                         Assert.IsNotNull (pd.PrinterSettings, "#5");
51                         Assert.IsFalse (pd.PrintToFile, "#6");
52                         Assert.IsFalse (pd.ShowHelp, "#7");
53                         Assert.IsTrue (pd.ShowNetwork, "#8");
54                 }
55
56                 [Test]
57                 public void DocumentTest ()
58                 {
59                         PrintDialog pd = new PrintDialog ();
60
61                         PrintDocument pdoc1 = new PrintDocument ();
62                         PrinterSettings ps1 = new PrinterSettings ();
63                         pdoc1.PrinterSettings = ps1;
64                         pd.Document = pdoc1;
65                         Assert.AreEqual (pdoc1, pd.Document, "#1");
66                         Assert.AreEqual (ps1, pd.PrinterSettings, "#2");
67
68                         PrinterSettings ps2 = new PrinterSettings ();
69                         pdoc1.PrinterSettings = ps2;
70                         pd.Document = pdoc1;
71                         Assert.AreEqual (pdoc1, pd.Document, "#3");
72                         Assert.AreEqual (ps2, pd.PrinterSettings, "#4");
73
74                         pd.Document = null;
75                         Assert.IsNull (pd.Document, "#5");
76                         Assert.IsNotNull (pd.PrinterSettings, "#6");
77                         if (pd.PrinterSettings == ps1)
78                                 Assert.Fail ("#7");
79                 }
80
81                 [Test]
82                 public void PrinterSettingsTest ()
83                 {
84                         PrintDialog pd = new PrintDialog ();
85
86                         PrinterSettings ps1 = new PrinterSettings ();
87                         pd.PrinterSettings = ps1;
88                         Assert.AreEqual (ps1, pd.PrinterSettings, "#1");
89                         Assert.IsNull (pd.Document, "#2");
90
91                         pd.PrinterSettings = null;
92                         Assert.IsNotNull (pd.PrinterSettings, "#3");
93                         Assert.IsNull (pd.Document, "#4");
94                         if (pd.PrinterSettings == ps1)
95                                 Assert.Fail ("#5");
96                 }
97         }
98 }
99