1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
|
//
// MonoTests.System.Security.Policy.CodeGroupTest
//
// Authors:
// Nick Drochak (ndrochak@gol.com)
// Sebastien Pouliot (spouliot@motus.com)
//
// (C) 2001 Nick Drochak, All rights reserved.
// Portions (C) 2004 Motus Technologies Inc. (http://www.motus.com)
//
using NUnit.Framework;
using System;
using System.Collections;
using System.Security;
using System.Security.Policy;
using System.Security.Permissions;
namespace MonoTests.System.Security.Policy {
public class MyCodeGroup : CodeGroup {
public MyCodeGroup (IMembershipCondition membershipCondition, PolicyStatement policy)
: base (membershipCondition, policy) {}
public override CodeGroup Copy ()
{
return this;
}
public override string MergeLogic {
get { return ""; }
}
public override PolicyStatement Resolve (Evidence evidence)
{
return null;
}
public override CodeGroup ResolveMatchingCodeGroups (Evidence evidence)
{
return this;
}
}
// this version has a constructor with no parameters
public class MySecondCodeGroup : CodeGroup {
// must be public (else the ToFromXmlRoundtrip_WithChildren_Second will fail)
public MySecondCodeGroup () : base (new AllMembershipCondition (), null) {}
public MySecondCodeGroup (IMembershipCondition membershipCondition, PolicyStatement policy)
: base (membershipCondition, policy) {}
public override CodeGroup Copy () {
return this;
}
public override string MergeLogic {
get { return ""; }
}
public override PolicyStatement Resolve (Evidence evidence) {
return null;
}
public override CodeGroup ResolveMatchingCodeGroups (Evidence evidence) {
return this;
}
}
[TestFixture]
public class CodeGroupTest {
private const string ps_Name = "TestName";
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void Constructor_MembershipConditionNullPolicyStatement ()
{
MyCodeGroup cg = new MyCodeGroup (null, new PolicyStatement(new PermissionSet(PermissionState.None)));
}
[Test]
public void Constructor_MembershipConditionPolicyStatementNull ()
{
// legal
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition(), null);
Assert.IsNull (cg.PolicyStatement, "PolicyStatement");
}
[Test]
public void Constructor ()
{
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition(), new PolicyStatement(new PermissionSet(PermissionState.None)));
Assert.IsNotNull (cg.PolicyStatement, "PolicyStatement property not set correctly by constructor.");
Assert.IsNotNull (cg.MembershipCondition, "MembershipCondition property not set correctly by constructor.");
}
[Test]
public void Description ()
{
const string description = "Test Description";
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition(), new PolicyStatement(new PermissionSet(PermissionState.None)));
cg.Description = description;
Assert.AreEqual (description, cg.Description, "Description not the expected value");
}
[Test]
public void Name ()
{
const string name = "Test Name";
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition(), new PolicyStatement(new PermissionSet(PermissionState.None)));
cg.Name = name;
Assert.AreEqual (name, cg.Name, "Description not the expected value");
}
[Test]
public void AddChild ()
{
MyCodeGroup cg = new MyCodeGroup(new AllMembershipCondition (), new PolicyStatement(new PermissionSet (PermissionState.None)));
Assert.AreEqual (0, cg.Children.Count, "Unexpected number of children (before add)");
cg.AddChild (new MyCodeGroup (new AllMembershipCondition (), new PolicyStatement(new PermissionSet (PermissionState.Unrestricted))));
Assert.AreEqual (1, cg.Children.Count, "Unexpected number of children (after add)");
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void AddChild_Null ()
{
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition (), new PolicyStatement(new PermissionSet (PermissionState.None)));
cg.AddChild (null);
}
[Test]
public void AttributeString ()
{
PolicyStatementAttribute psa = PolicyStatementAttribute.LevelFinal;
PolicyStatement ps = new PolicyStatement (new PermissionSet (PermissionState.None));
ps.Attributes = psa;
MyCodeGroup cg = new MyCodeGroup(new AllMembershipCondition (), ps);
Assert.AreEqual (psa.ToString(), cg.AttributeString, "AttributeString");
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void Children_Null ()
{
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition (), new PolicyStatement(new PermissionSet (PermissionState.None)));
cg.Children = null;
}
[Test]
public void PermissionSetName ()
{
PolicyStatement ps = new PolicyStatement(new NamedPermissionSet (ps_Name));
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition (), ps);
Assert.AreEqual (ps_Name, cg.PermissionSetName, "PermissionSetName");
}
[Test]
public void Equals ()
{
PolicyStatement ps = new PolicyStatement (new NamedPermissionSet (ps_Name));
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition (), ps);
cg.Name = "SomeName";
cg.Description = "Some Description";
Assert.IsTrue (cg.Equals (cg), "Equals (itself)");
Assert.IsTrue (!cg.Equals ("Not Equal to this"), "Equals (string)");
MyCodeGroup cg2 = new MyCodeGroup(new AllMembershipCondition(), ps);
cg2.Name = "SomeOtherName";
cg2.Description = "Some Other Description";
Assert.IsTrue (!cg.Equals (cg2), "Equals (another)");
cg2 = new MyCodeGroup (new ApplicationDirectoryMembershipCondition(), ps);
cg2.Name = cg.Name;
cg2.Description = cg.Description;
Assert.IsTrue (!cg.Equals (cg2), "Equals (different Membership Condition)");
}
[Test]
public void EqualsWithChildren ()
{
PolicyStatement ps = new PolicyStatement (new NamedPermissionSet (ps_Name));
MyCodeGroup cgChild = new MyCodeGroup(new ApplicationDirectoryMembershipCondition(), ps);
cgChild.Name = "ChildName";
cgChild.Description = "Child Descripiton";
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition (), ps);
cg.Name = "SomeName";
cg.Description = "Some Description";
cg.AddChild (cgChild);
MyCodeGroup cg2 = new MyCodeGroup (cg.MembershipCondition, cg.PolicyStatement);
cg2.Name = cg.Name;
cg2.Description = cg.Description;
Assert.IsTrue (cg.Equals (cg2), "Should be equal when Children are ignored");
Assert.IsTrue (!cg.Equals(cg2, true), "Should not be equal when Child count is different");
cg2.AddChild(cgChild);
Assert.IsTrue (cg2.Equals(cg, true), "Should be equal when children are equal");
}
[Test]
public void RemoveChild ()
{
PolicyStatement ps = new PolicyStatement (new NamedPermissionSet (ps_Name));
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition (), ps);
cg.Name = "SomeName";
cg.Description = "Some Description";
MyCodeGroup cgChild = new MyCodeGroup (new ApplicationDirectoryMembershipCondition (), ps);
cgChild.Name = "ChildName";
cgChild.Description = "Child Descripiton";
cg.AddChild (cgChild);
MyCodeGroup cgChild2 = new MyCodeGroup (new ApplicationDirectoryMembershipCondition (), ps);
cgChild2.Name = "ChildName2";
cgChild2.Description = "Child Descripiton 2";
cg.AddChild (cgChild2);
Assert.AreEqual (2, cg.Children.Count, "Should be two children before the call to Remove()");
cg.RemoveChild(cgChild);
Assert.AreEqual (1, cg.Children.Count, "Should be one children after the call to Remove()");
Assert.AreEqual("ChildName2", ((CodeGroup)cg.Children[0]).Name, "Remaining child does not have correct name");
}
[Test]
public void RemoveChild_NonExistant ()
{
PolicyStatement ps = new PolicyStatement (new NamedPermissionSet (ps_Name));
MyCodeGroup cgChild = new MyCodeGroup (new ApplicationDirectoryMembershipCondition (), ps);
cgChild.Name = "ChildName";
cgChild.Description = "Child Descripiton";
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition (), ps);
cg.AddChild (cgChild);
cg.RemoveChild (cgChild);
cg.RemoveChild (cgChild);
// no exception
}
[Test]
public void RemoveChild_Null ()
{
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition (), new PolicyStatement(new PermissionSet (PermissionState.None)));
cg.RemoveChild (null);
// no exception
}
[Test]
public void ToXml ()
{
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition (), new PolicyStatement(new PermissionSet (PermissionState.None)));
SecurityElement se = cg.ToXml ();
string s = se.ToString ();
Assert.IsTrue (s.StartsWith ("<CodeGroup class=\"MonoTests.System.Security.Policy.MyCodeGroup,"), "ToXml-Starts");
Assert.IsTrue (s.EndsWith ("version=\"1\"/>" + Environment.NewLine + "</CodeGroup>" + Environment.NewLine), "ToXml-Ends");
cg.AddChild (new MyCodeGroup (new AllMembershipCondition (), new PolicyStatement(new PermissionSet (PermissionState.Unrestricted))));
se = cg.ToXml ();
s = se.ToString ();
Assert.IsTrue (s.IndexOf ("<CodeGroup class=\"MonoTests.System.Security.Policy.MyCodeGroup,", 1) > 0, "ToXml-Child");
}
[Test]
public void ToFromXmlRoundtrip ()
{
PolicyStatement ps = new PolicyStatement (new NamedPermissionSet (ps_Name));
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition (), ps);
cg.Name = "SomeName";
cg.Description = "Some Description";
Assert.IsTrue (cg.Equals (cg), "Equals (itself)");
SecurityElement se = cg.ToXml ();
MyCodeGroup cg2 = new MyCodeGroup (new AllMembershipCondition(), ps);
cg2.Name = "SomeOtherName";
cg2.Description = "Some Other Description";
Assert.IsTrue (!cg.Equals (cg2), "Equals (another)");
cg2.FromXml (se);
Assert.IsTrue (cg.Equals (cg2), "Equals (FromXml)");
}
[Test]
[ExpectedException (typeof (MissingMethodException))]
public void ToFromXmlRoundtrip_WithChildren ()
{
PolicyStatement ps = new PolicyStatement (new NamedPermissionSet (ps_Name));
MyCodeGroup cgChild = new MyCodeGroup (new ApplicationDirectoryMembershipCondition (), ps);
cgChild.Name = "ChildName";
cgChild.Description = "Child Descripiton";
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition (), ps);
cg.Name = "SomeName";
cg.Description = "Some Description";
cg.AddChild (cgChild);
cg.AddChild (cgChild);
Assert.IsTrue (cg.Equals (cg), "Equals (itself)");
SecurityElement se = cg.ToXml ();
MyCodeGroup cg2 = (MyCodeGroup) cg.Copy ();
cg2.FromXml (se);
// MissingMethodException down here (stangely not up here ?!? delayed ?)
Assert.IsTrue (cg.Equals (cg2, true), "Equals (FromXml)");
}
[Test]
public void ToFromXmlRoundtrip_WithChildren_Second ()
{
PolicyStatement ps = new PolicyStatement (new NamedPermissionSet (ps_Name));
// only the child is MySecondCodeGroup
MySecondCodeGroup cgChild = new MySecondCodeGroup (new ApplicationDirectoryMembershipCondition (), ps);
cgChild.Name = "ChildName";
cgChild.Description = "Child Descripiton";
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition (), ps);
cg.Name = "SomeName";
cg.Description = "Some Description";
cg.AddChild (cgChild);
Assert.IsTrue (cg.Equals (cg), "Equals (itself)");
SecurityElement se = cg.ToXml ();
MyCodeGroup cg2 = (MyCodeGroup) cg.Copy ();
cg2.FromXml (se);
Assert.IsTrue (cg.Equals (cg2, true), "Equals (FromXml)");
}
[Test]
public void FromXml_Bad ()
{
MyCodeGroup cg = new MyCodeGroup (new AllMembershipCondition (), new PolicyStatement(new PermissionSet (PermissionState.None)));
SecurityElement se = cg.ToXml ();
se.Tag = "Mono";
// strangely this works :(
cg.FromXml (se);
// let's get weirder :)
foreach (SecurityElement child in se.Children) {
child.Tag = "Mono";
}
cg.FromXml (se);
// it's not enough :(( - very relax parsing
se.Attributes = new Hashtable ();
cg.FromXml (se);
// arghh - I will prevail!
foreach (SecurityElement child in se.Children) {
child.Attributes = new Hashtable ();
}
cg.FromXml (se);
// huh ? well maybe not (but this is both cruel and injust)
}
} // public class CodeGroupTest
} // namespace MonoTests.System.Security.Policy
|