Skip to content

Commit

Permalink
Replace -pending parameter with -skip
Browse files Browse the repository at this point in the history
  • Loading branch information
Shriram0908 committed Jul 9, 2020
1 parent 4976341 commit 3a6df14
Showing 1 changed file with 69 additions and 60 deletions.
@@ -1,74 +1,83 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
Describe "Acl cmdlets are available and operate properly" -Tag CI {
It "Get-Acl returns an ACL DirectorySecurity object" -Pending:(!$IsWindows) {
$ACL = Get-Acl $TESTDRIVE
$ACL | Should -BeOfType System.Security.AccessControl.DirectorySecurity
}
Context "Windows ACL test" {
BeforeAll {
if ( !$IsWindows )
{
return
}
}

It "Get-Acl -LiteralPath HKLM:Software\Classes\*" -Pending:(!$IsWindows) {
$ACL = Get-Acl -LiteralPath HKLM:Software\Classes\*
$ACL | Should -BeOfType System.Security.AccessControl.RegistrySecurity
}
It "Get-Acl returns an ACL DirectorySecurity object" {
$ACL = Get-Acl $TESTDRIVE
$ACL | Should -BeOfType System.Security.AccessControl.DirectorySecurity
}

It "Get-Acl -LiteralPath .\Software\Classes\*" -Pending:(!$IsWindows) {
$currentPath = Get-Location
Set-Location -LiteralPath HKLM:\
$ACL = Get-Acl -LiteralPath .\Software\Classes\*
$ACL | Should -BeOfType System.Security.AccessControl.RegistrySecurity
$currentPath | Set-Location
}
It "Get-Acl -LiteralPath HKLM:Software\Classes\*" {
$ACL = Get-Acl -LiteralPath HKLM:Software\Classes\*
$ACL | Should -BeOfType System.Security.AccessControl.RegistrySecurity
}

It "Get-Acl -LiteralPath ." -Pending:(!$IsWindows) {
$currentPath = Get-Location
Set-Location -LiteralPath $TESTDRIVE
$ACL = Get-Acl -LiteralPath .
$ACL | Should -BeOfType System.Security.AccessControl.DirectorySecurity
$currentPath | Set-Location
}
It "Get-Acl -LiteralPath .\Software\Classes\*" {
$currentPath = Get-Location
Set-Location -LiteralPath HKLM:\
$ACL = Get-Acl -LiteralPath .\Software\Classes\*
$ACL | Should -BeOfType System.Security.AccessControl.RegistrySecurity
$currentPath | Set-Location
}

It "Get-Acl -LiteralPath .." -Pending:(!$IsWindows) {
$currentPath = Get-Location
Set-Location -LiteralPath $TESTDRIVE
$ACL = Get-Acl -LiteralPath ..
$ACL | Should -BeOfType System.Security.AccessControl.DirectorySecurity
$currentPath | Set-Location
}
It "Get-Acl -LiteralPath ." {
$currentPath = Get-Location
Set-Location -LiteralPath $TESTDRIVE
$ACL = Get-Acl -LiteralPath .
$ACL | Should -BeOfType System.Security.AccessControl.DirectorySecurity
$currentPath | Set-Location
}

It "Get-Acl -Path .\Software\Classes\" -Pending:(!$IsWindows) {
$currentPath = Get-Location
Set-Location -LiteralPath HKLM:\
$ACL = Get-Acl -Path .\Software\Classes\
$ACL | Should -BeOfType System.Security.AccessControl.RegistrySecurity
$currentPath | Set-Location
}
It "Get-Acl -LiteralPath .." {
$currentPath = Get-Location
Set-Location -LiteralPath $TESTDRIVE
$ACL = Get-Acl -LiteralPath ..
$ACL | Should -BeOfType System.Security.AccessControl.DirectorySecurity
$currentPath | Set-Location
}

It "Get-Acl -Path ." -Pending:(!$IsWindows) {
$currentPath = Get-Location
Set-Location -LiteralPath $TESTDRIVE
$ACL = Get-Acl -Path .
$ACL | Should -BeOfType System.Security.AccessControl.DirectorySecurity
$currentPath | Set-Location
}
It "Get-Acl -Path .\Software\Classes\" {
$currentPath = Get-Location
Set-Location -LiteralPath HKLM:\
$ACL = Get-Acl -Path .\Software\Classes\
$ACL | Should -BeOfType System.Security.AccessControl.RegistrySecurity
$currentPath | Set-Location
}

It "Get-Acl -Path .." -Pending:(!$IsWindows) {
$currentPath = Get-Location
Set-Location -LiteralPath $TESTDRIVE
$ACL = Get-Acl -Path ..
$ACL | Should -BeOfType System.Security.AccessControl.DirectorySecurity
$currentPath | Set-Location
}
It "Get-Acl -Path ." {
$currentPath = Get-Location
Set-Location -LiteralPath $TESTDRIVE
$ACL = Get-Acl -Path .
$ACL | Should -BeOfType System.Security.AccessControl.DirectorySecurity
$currentPath | Set-Location
}

It "Get-Acl -Path .." {
$currentPath = Get-Location
Set-Location -LiteralPath $TESTDRIVE
$ACL = Get-Acl -Path ..
$ACL | Should -BeOfType System.Security.AccessControl.DirectorySecurity
$currentPath | Set-Location
}

It "Set-Acl can set the ACL of a directory" -Pending {
Setup -d testdir
$directory = "$TESTDRIVE/testdir"
$acl = Get-Acl $directory
$accessRule = [System.Security.AccessControl.FileSystemAccessRule]::New("Everyone","FullControl","ContainerInherit,ObjectInherit","None","Allow")
$acl.AddAccessRule($accessRule)
{ $acl | Set-Acl $directory } | Should -Not -Throw
It "Set-Acl can set the ACL of a directory" {
Setup -d testdir
$directory = "$TESTDRIVE/testdir"
$acl = Get-Acl $directory
$accessRule = [System.Security.AccessControl.FileSystemAccessRule]::New("Everyone","FullControl","ContainerInherit,ObjectInherit","None","Allow")
$acl.AddAccessRule($accessRule)
{ $acl | Set-Acl $directory } | Should -Not -Throw

$newacl = Get-Acl $directory
$newrule = $newacl.Access | Where-Object { $accessrule.FileSystemRights -eq $_.FileSystemRights -and $accessrule.AccessControlType -eq $_.AccessControlType -and $accessrule.IdentityReference -eq $_.IdentityReference }
$newrule | Should -Not -BeNullOrEmpty
$newacl = Get-Acl $directory
$newrule = $newacl.Access | Where-Object { $accessrule.FileSystemRights -eq $_.FileSystemRights -and $accessrule.AccessControlType -eq $_.AccessControlType -and $accessrule.IdentityReference -eq $_.IdentityReference }
$newrule | Should -Not -BeNullOrEmpty
}
}
}

0 comments on commit 3a6df14

Please sign in to comment.