forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileSystemAuditRuleTests.cs
More file actions
55 lines (48 loc) · 2.5 KB
/
FileSystemAuditRuleTests.cs
File metadata and controls
55 lines (48 loc) · 2.5 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
using System.Security.Principal;
using Xunit;
namespace System.Security.AccessControl
{
public class FileSystemAuditRuleTests
{
[Fact]
public void ObjectInitialization_IdentityReference_FileSystemRights_AuditFlags_Success()
{
var auditRule = new FileSystemAuditRule(Helpers.s_WorldSidNTAccount, FileSystemRights.ReadData, AuditFlags.Failure);
Assert.Equal(auditRule.IdentityReference, Helpers.s_WorldSidNTAccount);
Assert.Equal(FileSystemRights.ReadData, auditRule.FileSystemRights);
Assert.Equal(AuditFlags.Failure, auditRule.AuditFlags);
}
[Fact]
public void ObjectInitialization_Identity_FileSystemRights_AuditFlags_InheritanceFlag_PropagationFlag_Success()
{
var auditRule = new FileSystemAuditRule(@"MYDOMAIN\MyAccount", FileSystemRights.ReadData,
InheritanceFlags.ObjectInherit, PropagationFlags.InheritOnly, AuditFlags.Failure);
Assert.Equal(PropagationFlags.InheritOnly, auditRule.PropagationFlags);
Assert.Equal(InheritanceFlags.ObjectInherit, auditRule.InheritanceFlags);
}
[Fact]
public void ObjectInitialization_Identity_FileSystemRights_AuditFlags_Success()
{
var auditRule = new FileSystemAuditRule(@"MYDOMAIN\MyAccount", FileSystemRights.ReadData, AuditFlags.Failure);
Assert.Equal(FileSystemRights.ReadData, auditRule.FileSystemRights);
Assert.Equal(AuditFlags.Failure, auditRule.AuditFlags);
Assert.Equal(@"MYDOMAIN\MyAccount", auditRule.IdentityReference.Value);
}
[Fact]
public void ObjectInitialization_InvalidFileSystemRights()
{
var fileSystemRights = (FileSystemRights)(-1);
AssertExtensions.Throws<ArgumentOutOfRangeException>("fileSystemRights", () => new FileSystemAuditRule(@"MYDOMAIN\MyAccount", fileSystemRights, AuditFlags.Failure));
}
[Fact]
public void FileSystemRights_ReturnValidObject()
{
var auditRule = new FileSystemAuditRule(@"MYDOMAIN\MyAccount", FileSystemRights.ReadData, AuditFlags.Failure);
FileSystemRights fileSystemRights = auditRule.FileSystemRights;
Assert.Equal(FileSystemRights.ReadData, fileSystemRights);
}
}
}