2005-01-14 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Data / Test / System.Data.SqlClient / SqlClientPermissionTest.cs
1 //\r
2 // SqlClientPermissionTest.cs - NUnit Test Cases for SqlClientPermission\r
3 //\r
4 // Author:\r
5 //      Sebastien Pouliot  <sebastien@ximian.com>\r
6 //\r
7 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)\r
8 //\r
9 // Permission is hereby granted, free of charge, to any person obtaining\r
10 // a copy of this software and associated documentation files (the\r
11 // "Software"), to deal in the Software without restriction, including\r
12 // without limitation the rights to use, copy, modify, merge, publish,\r
13 // distribute, sublicense, and/or sell copies of the Software, and to\r
14 // permit persons to whom the Software is furnished to do so, subject to\r
15 // the following conditions:\r
16 // \r
17 // The above copyright notice and this permission notice shall be\r
18 // included in all copies or substantial portions of the Software.\r
19 // \r
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
27 //\r
28 \r
29 using NUnit.Framework;\r
30 using System;\r
31 using System.Data;\r
32 using System.Data.Common;\r
33 using System.Data.SqlClient;\r
34 using System.Security;\r
35 using System.Security.Permissions;\r
36 \r
37 namespace MonoTests.System.Data.SqlClient {\r
38 \r
39         // NOTE: Most tests are are located in the base class, DBDataPermission\r
40 \r
41         [TestFixture]\r
42         public class SqlClientPermissionTest {\r
43 \r
44                 private void Check (string msg, DBDataPermission dbdp, bool blank, bool unrestricted, int count)\r
45                 {\r
46                         Assert.AreEqual (blank, dbdp.AllowBlankPassword, msg + ".AllowBlankPassword");\r
47                         Assert.AreEqual (unrestricted, dbdp.IsUnrestricted (), msg + ".IsUnrestricted");\r
48                         if (count == 0)\r
49                                 Assert.IsNull (dbdp.ToXml ().Children, msg + ".Count != 0");\r
50                         else\r
51                                 Assert.AreEqual (count, dbdp.ToXml ().Children.Count, msg + ".Count");\r
52                 }\r
53 \r
54                 [Test]\r
55 #if NET_2_0\r
56                 [ExpectedException (typeof (ArgumentOutOfRangeException))]\r
57 #else\r
58                 [ExpectedException (typeof (ArgumentException))]\r
59 #endif\r
60                 public void PermissionState_Invalid ()\r
61                 {\r
62                         PermissionState ps = (PermissionState)Int32.MinValue;\r
63                         SqlClientPermission perm = new SqlClientPermission (ps);\r
64                 }\r
65 \r
66                 [Test]\r
67                 public void None ()\r
68                 {\r
69                         SqlClientPermission perm = new SqlClientPermission (PermissionState.None);\r
70                         Check ("None-1", perm, false, false, 0);\r
71                         perm.AllowBlankPassword = true;\r
72                         Check ("None-2", perm, true, false, 0);\r
73 \r
74                         SqlClientPermission copy = (SqlClientPermission)perm.Copy ();\r
75                         Check ("Copy_None-1", copy, true, false, 0);\r
76                         copy.AllowBlankPassword = false;\r
77                         Check ("Copy_None-2", copy, false, false, 0);\r
78                 }\r
79 \r
80                 [Test]\r
81                 public void None_Childs ()\r
82                 {\r
83                         SqlClientPermission perm = new SqlClientPermission (PermissionState.None);\r
84                         perm.Add ("data source=localhost;", String.Empty, KeyRestrictionBehavior.AllowOnly);\r
85                         perm.Add ("data source=127.0.0.1;", "password=;", KeyRestrictionBehavior.PreventUsage);\r
86 \r
87                         Check ("None-Childs-1", perm, false, false, 2);\r
88                         perm.AllowBlankPassword = true;\r
89                         Check ("None-Childs-2", perm, true, false, 2);\r
90 \r
91                         SqlClientPermission copy = (SqlClientPermission)perm.Copy ();\r
92                         Check ("Copy_None-Childs-1", copy, true, false, 2);\r
93                         copy.AllowBlankPassword = false;\r
94                         Check ("Copy_None-Childs-2", copy, false, false, 2);\r
95                 }\r
96 \r
97                 [Test]\r
98                 public void Unrestricted ()\r
99                 {\r
100                         SqlClientPermission perm = new SqlClientPermission (PermissionState.Unrestricted);\r
101                         Check ("Unrestricted-1", perm, false, true, 0);\r
102                         perm.AllowBlankPassword = true;\r
103                         Check ("Unrestricted-2", perm, true, true, 0);\r
104 \r
105                         SqlClientPermission copy = (SqlClientPermission)perm.Copy ();\r
106                         // note: Unrestricted is always created with default values (so AllowBlankPassword is false)\r
107                         Check ("Copy_Unrestricted-1", copy, false, true, 0);\r
108                         copy.AllowBlankPassword = true;\r
109                         Check ("Copy_Unrestricted-2", copy, true, true, 0);\r
110                 }\r
111 \r
112                 [Test]\r
113                 public void Unrestricted_Add ()\r
114                 {\r
115                         SqlClientPermission perm = new SqlClientPermission (PermissionState.Unrestricted);\r
116                         Check ("Unrestricted-NoChild", perm, false, true, 0);\r
117                         perm.Add ("data source=localhost;", String.Empty, KeyRestrictionBehavior.AllowOnly);\r
118                         // note: Lost unrestricted state when children was added\r
119                         Check ("Unrestricted-WithChild", perm, false, false, 1);\r
120                 }\r
121         }\r
122 }\r