Powershell/Tests/Functions.Tests.ps1
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 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 |
BeforeAll { Write-Host "Script Location: $PSScriptRoot" Write-Host "Dot-Sourcing Start-Migration Script" . $PSScriptRoot\..\Start-Migration.ps1 Write-Host "Dot-Sourcing Test Functions" . $PSScriptRoot\SetupAgent.ps1 Write-Host "Running Connect-JCOnline" Connect-JCOnline -JumpCloudApiKey $env:JCApiKey -JumpCloudOrgId $env:JCOrgId -Force } Describe 'Functions' { Context 'Show-Result Function' -Skip { # This is a GUI test, check manually before release } Context 'Test-RegistryValueMatch Function' { # Test that the Test-RegistryValueMatch function returns valid results from the registry It 'Value matches' { Test-RegistryValueMatch -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList' -Value 'Public' -stringmatch 'Public' | Should -Be $true } It 'Value does not match' { Test-RegistryValueMatch -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList' -Value 'Public' -stringmatch 'Private' | Should -Be $false } } Context 'Test-JumpCloudUsername Function' { It 'Valid Username Returns True' { # Get the first user $user = Get-JcSdkUser | Select-Object -First 1 # Test username w/o modification $testResult, $userID, $FoundUsername, $FoundSystemUsername = Test-JumpCloudUsername -JumpCloudApiKey $env:JCApiKey -Username $user.Username $testResult | Should -Be $true $userID | Should -Be $user.Id # toUpper $upper = ($user.Username).ToUpper() $testResult, $userID, $FoundUsername, $FoundSystemUsername = Test-JumpCloudUsername -JumpCloudApiKey $env:JCApiKey -Username $upper $testResult | Should -Be $true $userID | Should -Be $user.Id # to lower $lower = ($user.Username).ToLower() $testResult, $userID, $FoundUsername, $FoundSystemUsername = Test-JumpCloudUsername -JumpCloudApiKey $env:JCApiKey -Username $lower $testResult | Should -Be $true $userID | Should -Be $user.Id } It 'Invalid Username Returns False' { # Get the first user $user = Get-JcSdkUser | Select-Object -First 1 # Append random string to username $newUsername = $user.Username + "jdksf45kjfds" # Test function $testResult, $userID, $FoundUsername, $FoundSystemUsername = Test-JumpCloudUsername -JumpCloudApiKey $env:JCApiKey -Username $newUsername $testResult | Should -Be $false $userID | Should -Be $null } } Context 'Set-JCUserToSystemAssociation Function' { # Set-JCUserToSystemAssociation should take USERID as input validated with Test-JumpCloudUsername BeforeAll { $OrgID, $OrgName = Get-mtpOrganization -apiKey $env:JCApiKey $config = get-content "$WindowsDrive\Program Files\JumpCloud\Plugins\Contrib\jcagent.conf" $regex = 'systemKey\":\"(\w+)\"' $systemKey = [regex]::Match($config, $regex).Groups[1].Value } It 'Bind As non-Administrator' { # Get ORG ID for # Generate New User $Password = "Temp123!" $user1 = "ADMU_" + -join ((65..90) + (97..122) | Get-Random -Count 5 | ForEach-Object { [char]$_ }) # If User Exists, remove from the org $users = Get-JCSDKUser if ("$($user.JCUsername)" -in $users.Username) { $existing = $users | Where-Object { $_.username -eq "$($user.JCUsername)" } Write-Host "Found JumpCloud User, $($existing.Id) removing..." Remove-JcSdkUser -Id $existing.Id } $GeneratedUser = New-JcSdkUser -Email:("$($user1)@jumpcloudadmu.com") -Username:("$($user1)") -Password:("$($Password)") # Begin Test Get-JCAssociation -Type user -Id:($($GeneratedUser.Id)) | Remove-JCAssociation -Force $bind = Set-JCUserToSystemAssociation -JcApiKey $env:JCApiKey -JcOrgId $OrgID -JcUserID $GeneratedUser.Id $bind | Should -Be $true $association = Get-JcSdkSystemAssociation -systemid $systemKey -Targets user | Where-Object { $_.ToId -eq $($GeneratedUser.Id) } $association | Should -not -BeNullOrEmpty $association.Attributes.AdditionalProperties.sudo.enabled | Should -Be $null # Clean Up Remove-JcSdkUser -Id $GeneratedUser.Id } It 'Bind As non-Administrator' { # Get ORG ID for # Generate New User $Password = "Temp123!" $user1 = "ADMU_" + -join ((65..90) + (97..122) | Get-Random -Count 5 | ForEach-Object { [char]$_ }) # If User Exists, remove from the org $users = Get-JCSDKUser if ("$($user.JCUsername)" -in $users.Username) { $existing = $users | Where-Object { $_.username -eq "$($user.JCUsername)" } Write-Host "Found JumpCloud User, $($existing.Id) removing..." Remove-JcSdkUser -Id $existing.Id } $GeneratedUser = New-JcSdkUser -Email:("$($user1)@jumpcloudadmu.com") -Username:("$($user1)") -Password:("$($Password)") # Begin Test Get-JCAssociation -Type user -Id:($($GeneratedUser.Id)) | Remove-JCAssociation -Force $bind = Set-JCUserToSystemAssociation -JcApiKey $env:JCApiKey -JcOrgId $OrgID -JcUserID $GeneratedUser.Id -BindAsAdmin $true $bind | Should -Be $true # ((Get-JCAssociation -Type:user -Id:($($GeneratedUser.Id))).id).count | Should -Be '1' $association = Get-JcSdkSystemAssociation -systemid $systemKey -Targets user | Where-Object { $_.ToId -eq $($GeneratedUser.Id) } $association | Should -not -BeNullOrEmpty $association.Attributes.AdditionalProperties.sudo.enabled | Should -Be $true # Clean Up Remove-JcSdkUser -Id $GeneratedUser.Id } It 'APIKey not valid' { $Password = "Temp123!" $user1 = "ADMU_" + -join ((65..90) + (97..122) | Get-Random -Count 5 | ForEach-Object { [char]$_ }) $GeneratedUser = New-JcSdkUser -Email:("$($user1)@jumpcloudadmu.com") -Username:("$($user1)") -Password:("$($Password)") $bind = Set-JCUserToSystemAssociation -JcApiKey '1234122341234234123412341234123412341234' -JcOrgId $OrgID -JcUserID $GeneratedUser.Id $bind | Should -Be $false } It 'Agent not installed' -skip { #TODO: Is this test necessary, it breaks the migration tests if ((Test-Path -Path "C:\Program Files\JumpCloud\Plugins\Contrib\jcagent.conf") -eq $True) { Remove-Item "C:\Program Files\JumpCloud\Plugins\Contrib\jcagent.conf" } { Set-JCUserToSystemAssociation -JcApiKey $env:JCApiKey -JcUserID $GeneratedUser.Id -ErrorAction Stop } | Should -Throw } } Context 'DenyInteractiveLogonRight Function' -Skip { #SeDenyInteractiveLogonRight not present in circleci instance It 'User exists on system' { # $objUser = New-Object System.Security.Principal.NTAccount("circleci") # $strSID = $objUser.Translate([System.Security.Principal.SecurityIdentifier]) # DenyInteractiveLogonRight -SID $strSID.Value # $secpolFile = "C:\Windows\temp\ur_orig.inf" # if (Test-Path $secpolFile) # { # Remove-Item $secpolFile -Force # } # secedit /export /areas USER_RIGHTS /cfg C:\Windows\temp\ur_orig.inf # $secpol = (Get-Content $secpolFile) # $regvaluestring = $secpol | Where-Object { $_ -like "*SeDenyInteractiveLogonRight*" } # $regvaluestring.Contains($strSID.Value) | Should -Be $true } } Context 'Register-NativeMethod Function' -Skip { # Register a C# Method to PWSH context we effectively test this with Migration tests } Context 'Add-NativeMethod Function' -Skip { # Add a C# Method to PWSH context we effectively test this with Migration tests } Context 'New-LocalUserProfile Function' { It 'User created and exists on system' { $newUserPassword = ConvertTo-SecureString -String 'Temp123!' -AsPlainText -Force New-localUser -Name 'testjc' -password $newUserPassword -Description "Created By JumpCloud ADMU tests" New-LocalUserProfile -username:('testjc') Test-Path -Path 'C:\Users\testjc' | Should -Be $true } It 'User does not exist on system and throws exception' { { New-LocalUserProfile -username:('userdoesntexist') -ErrorAction Stop } | Should -Throw } } Context 'Remove-LocalUserProfile Function' { It 'Add and remove,user should not exist on system' { $newUserPassword = ConvertTo-SecureString -String 'Temp123!' -AsPlainText -Force New-localUser -Name 'testremovejc2' -password $newUserPassword -Description "Created By JumpCloud ADMU tests" New-LocalUserProfile -username:('testremovejc2') # This test should be fail because the description is not correct { Remove-LocalUserProfile -username:('testremovejc2') } | Should -Throw Test-Path -Path 'C:\Users\testremovejc2' | Should -Be $true New-localUser -Name 'testremovejc3' -password $newUserPassword -Description "Created By JumpCloud ADMU" New-LocalUserProfile -username:('testremovejc3') { Remove-LocalUserProfile -username:('testremovejc3') } | Should -Not -Throw # This test should pass fail because the description set correctly Test-Path -Path 'C:\Users\testremovejc3' | Should -Be $false } It 'User does not exist on system and throws exception' { { Remove-LocalUserProfile -username:('randomusernamethatdoesntexist') -ErrorAction Stop } | Should -Throw } } Context 'Set-ValueToKey Function' { # Test that we can write to the registry when providing a key and value It 'Value is set on existing key' { Set-ValueToKey -registryRoot LocalMachine -keyPath 'SYSTEM\Software' -name '1' -value '1' -regValueKind DWord Get-ItemPropertyValue -Path 'HKLM:\SYSTEM\Software\' -Name '1' | Should -Be '1' } } Context 'New-RegKey Function' { # Test that we can create new keys It 'Key is created' { New-RegKey -keyPath 'SYSTEM\1' -registryRoot LocalMachine test-path 'HKLM:\SYSTEM\1' | Should -Be $true } } Context 'Get-SID Function' { It 'Profile exists and sid returned' { # SID of circleCI user should match SID regex pattern Get-SID -User:'circleci' -cnotmatch "^S-\d-\d+-(\d+-){1,14}\d+$" | Should -Be $true } } Context 'Set-UserRegistryLoadState Function' -Skip { # Unload and load user registry - we are testing this in Migration tests It 'Load ' { # $circlecisid = (Get-SID -User:'circleci') # Set-UserRegistryLoadState -op Load -ProfilePath 'C:\Users\circleci\' -UserSid $circlecisid # $path = 'HKU:\' $circlecisid_'_a # Test-Path -Path 'HKU:\$($circlecisid)' } It 'Unload' { } } Context 'Test-UserRegistryLoadState Function' -skip { # Tested in Migration Tests } Context 'Backup-RegistryHive Function' -skip { # Tested in Migration Tests } Context 'Get-ProfileImagePath Function' -skip { # Tested in Migration Tests } Context 'Get-WindowsDrive Function' { It 'Get-WindowsDrive - C' { Get-WindowsDrive | Should -Be "C:" } } Context 'Write-ToLog Function' { It 'Write-ToLog - ' { if ((Test-Path 'C:\Windows\Temp\jcAdmu.log') -eq $true) { remove-item -Path 'C:\windows\Temp\jcAdmu.log' -Force } Write-ToLog -Message:('Log is created - test.') -Level:('Info') $log = 'C:\windows\Temp\jcAdmu.log' $log | Should -exist } It 'Write-ToLog - Log is created' { if ((Test-Path 'C:\Windows\Temp\jcAdmu.log') -eq $true) { remove-item -Path 'C:\windows\Temp\jcAdmu.log' -Force } Write-ToLog -Message:('Log is created - test.') -Level:('Info') $log = 'C:\windows\Temp\jcAdmu.log' $log | Should -exist } It 'Write-ToLog - ERROR: Log entry exists' { if ((Test-Path 'C:\Windows\Temp\jcAdmu.log') -eq $true) { remove-item -Path 'C:\windows\Temp\jcAdmu.log' -Force } # Write-ToLog -Message:('Test Error Log Entry.') -Level:('Error') -ErrorAction #$Log = Get-Content 'c:\windows\temp\jcAdmu.log' #$Log.Contains('ERROR: Test Error Log Entry.') | Should -Be $true # if ($error.Count -eq 1) { # $error.Clear() # } } It 'Write-ToLog - WARNING: Log entry exists' { if ((Test-Path 'C:\Windows\Temp\jcAdmu.log') -eq $true) { remove-item -Path 'C:\windows\Temp\jcAdmu.log' -Force } Write-ToLog -Message:('Test Warning Log Entry.') -Level:('Warn') $Log = Get-Content 'c:\windows\temp\jcAdmu.log' $Log.Contains('WARNING: Test Warning Log Entry.') | Should -Be $true } It 'Write-ToLog - INFO: Log entry exists' { if ((Test-Path 'C:\Windows\Temp\jcAdmu.log') -eq $true) { remove-item -Path 'C:\windows\Temp\jcAdmu.log' -Force } Write-ToLog -Message:('Test Info Log Entry.') -Level:('Info') $Log = Get-Content 'c:\windows\temp\jcAdmu.log' $Log.Contains('INFO: Test Info Log Entry.') | Should -Be $true remove-item -Path 'C:\windows\Temp\jcAdmu.log' -Force } } Context 'Remove-ItemIfExist Function' { It 'Remove-ItemIfExist - Does Exist c:\windows\temp\test\' { if (Test-Path 'c:\windows\Temp\test\') { Remove-Item 'c:\windows\Temp\test' -Recurse -Force } New-Item -ItemType directory -path 'c:\windows\Temp\test\' New-Item 'c:\windows\Temp\test\test.txt' Remove-ItemIfExist -Path 'c:\windows\Temp\test\' -Recurse Test-Path 'c:\windows\Temp\test\' | Should -Be $false } It 'Remove-ItemIfExist - Fails c:\windows\temp\test\' { if ((Test-Path 'C:\Windows\Temp\jcAdmu.log') -eq $true) { remove-item -Path 'C:\windows\Temp\jcAdmu.log' -Force } Mock Remove-ItemIfExist { Write-ToLog -Message ('Removal Of Temp Files & Folders Failed') -Level Warn } Remove-ItemIfExist -Path 'c:\windows\Temp\test\' $Log = Get-Content 'c:\windows\temp\jcAdmu.log' $Log.Contains('Removal Of Temp Files & Folders Failed') | Should -Be $true } } Context 'Uninstall-Program Function' { It 'Uninstall - aws command line interface' -Skip { #TODO: This test actually be install something new, and uninstall should work uninstall-program -programname 'AWS Command Line Interface' start-sleep -Seconds 5 Test-ProgramInstalled -programName 'AWS Command Line Interface' | Should -Be $false } } Context 'Start-NewProcess Function' { It 'Start-NewProcess - Notepad' { Start-NewProcess -pfile:('c:\windows\system32\notepad.exe') -Timeout 1000 (Get-Process -Name 'notepad') -ne $null | Should -Be $true Stop-Process -Name "notepad" } It 'Start-NewProcess & end after 2s timeout - Notepad ' { if ((Test-Path 'C:\Windows\Temp\jcAdmu.log') -eq $true) { remove-item -Path 'C:\windows\Temp\jcAdmu.log' -Force } Start-NewProcess -pfile:('c:\windows\system32\notepad.exe') -Timeout 1000 Start-Sleep -s 2 Stop-Process -Name "notepad" $Log = Get-Content 'c:\windows\temp\jcAdmu.log' $Log.Contains('Windows ADK Setup did not complete after 5mins') | Should -Be $true remove-item -Path 'C:\windows\Temp\jcAdmu.log' -Force } } Context 'Test-IsNotEmpty Function' { It 'Test-IsNotEmpty - $null' { Test-IsNotEmpty -field $null | Should -Be $true } It 'Test-IsNotEmpty - empty' { Test-IsNotEmpty -field '' | Should -Be $true } It 'Test-IsNotEmpty - test string' { Test-IsNotEmpty -field 'test' | Should -Be $false } } Context 'Test-CharLen -len 40 -testString Function' { It 'Test-CharLen -len 40 -testString - $null' { Test-CharLen -len 40 -testString $null | Should -Be $false } It 'Test-CharLen -len 40 -testString - 39 Chars' { Test-CharLen -len 40 -testString '111111111111111111111111111111111111111' | Should -Be $false } It 'Test-CharLen -len 40 -testString - 40 Chars' { Test-CharLen -len 40 -testString '1111111111111111111111111111111111111111' | Should -Be $true } } Context 'Test-HasNoSpace Function' { It 'Test-HasNoSpace - $null' { Test-HasNoSpace -field $null | Should -Be $true } It 'Test-HasNoSpace - no spaces' { Test-HasNoSpace -field 'testwithnospaces' | Should -Be $true } It 'Test-HasNoSpace - spaces' { Test-HasNoSpace -field 'test with spaces' | Should -Be $false } } Context 'Add-LocalUser Function' { It 'Add-LocalUser - testuser to Users ' { net user testuser /delete | Out-Null net user testuser Temp123! /add Remove-LocalGroupMember -Group "Users" -Member "testuser" Add-LocalGroupMember -SID S-1-5-32-545 -Member 'testuser' (([ADSI]"WinNT://./Users").psbase.Invoke('Members') | ForEach-Object { ([ADSI]$_).InvokeGet('AdsPath') } ) -match 'testuser' | Should -Be $true } } Context 'Test-Localusername Function' { It 'Test-Localusername - exists' { Test-Localusername -field 'circleci' | Should -Be $true } It 'Test-Localusername - does not exist' { Test-Localusername -field 'blazarz' | Should -Be $false } } Context 'Test-Domainusername Function' { # Requires domainjoined system It 'Test-Domainusername - exists' -skip { Test-Domainusername -field 'bob.lazar' | Should -Be $true } It 'Test-Domainusername - does not exist' { Test-Domainusername -field 'bob.lazarz' | Should -Be $false } } Context 'Install-JumpCloudAgent Function' { BeforeAll { $windowsDrive = Get-WindowsDrive $AGENT_INSTALLER_URL = "https://cdn02.jumpcloud.com/production/jcagent-msi-signed.msi" $AGENT_INSTALLER_PATH $AGENT_PATH = Join-Path ${env:ProgramFiles} "JumpCloud" $AGENT_CONF_PATH = "$($AGENT_PATH)\Plugins\Contrib\jcagent.conf" $AGENT_INSTALLER_PATH = "$windowsDrive\windows\Temp\JCADMU\jcagent-msi-signed.msi" # now go install the agent Install-JumpCloudAgent -AGENT_INSTALLER_URL:($AGENT_INSTALLER_URL) -AGENT_INSTALLER_PATH:($AGENT_INSTALLER_PATH) -AGENT_CONF_PATH:($AGENT_CONF_PATH) -JumpCloudConnectKey:($JumpCloudConnectKey) -AGENT_PATH:($AGENT_PATH) -AGENT_BINARY_NAME:($AGENT_BINARY_NAME) } It 'Install-JumpCloudAgent - Verify Download JCAgent Path' { Test-path 'C:\Windows\Temp\JCADMU\jcagent-msi-signed.msi' | Should -Be $true } It 'Install-JumpCloudAgent - Verify Install JCAgent' { Get-Service -Name "jumpcloud-agent" | Should -Not -Be $null } } Context 'Get-NetBiosName Function' { # Requires domainjoined system It 'Get-NetBiosName - JCADB2' -Skip { Get-NetBiosName | Should -Be 'JCADB2' } } Context 'Convert-SID Function' { BeforeAll { $newUserPassword = ConvertTo-SecureString -String 'Temp123!' -AsPlainText -Force New-localUser -Name 'sidTest' -password $newUserPassword -Description "Created By JumpCloud ADMU tests" New-LocalUserProfile -username:('sidTest') } It 'Convert-SID - circleci SID' { $circlecisid = (Get-WmiObject win32_userprofile | select-object Localpath, SID | where-object Localpath -eq 'C:\Users\sidTest' | Select-Object SID).SID (Convert-SID -Sid $circlecisid) | Should -match 'sidTest' } } Context 'Convert-UserName Function' { It 'Convert-UserName' { $circlecisid = (Get-WmiObject win32_userprofile | select-object Localpath, SID | where-object Localpath -eq 'C:\Users\sidTest' | Select-Object SID).SID (Convert-UserName -user:('sidTest')) | Should -match $circlecisid } } Context 'Test-UsernameOrSID Function' -Skip { # Tested in Migration Tests It 'Test-UsernameOrSID' { } } Context 'Restart-ComputerWithDelay Function' -Skip { # Test Manually It 'Restart-ComputerWithDelay' { } } Context 'Test Set-ADMUScheduledTask'{ BeforeAll { $scheduledTasks = Get-ScheduledTask | Where-Object { $_.TaskPath -notlike "*\Microsoft\Windows*" -and $_.State -ne "Disabled" -and $_.state -ne "Running" } Set-ADMUScheduledTask -op "disable" -scheduledTasks $scheduledTasks } It 'Should disabled tasks'{ # Disable tasks that are ready to run $afterDisable = Get-ScheduledTask | Where-Object { $_.TaskPath -notlike "*\Microsoft\Windows*" -and $_.State -eq "Disabled" } # Compare $scheduledTasks and $afterDisable state should not be equal $scheduledTasks | ForEach-Object { $task = $_ # Check that the task is disabled $afterDisable | Where-Object { $_.TaskName -eq $task.TaskName -and $_.State -eq "Disabled" } | Should -Not -BeNullOrEmpty } } It 'Should Enable tasks'{ Set-ADMUScheduledTask -op "enable" -scheduledTasks $scheduledTasks # Validate that the tasks are enabled $afterEnable = Get-ScheduledTask | Where-Object { $_.TaskPath -notlike "*\Microsoft\Windows*" -and $_.State -eq "Ready" } # Compare $scheduledTasks and $afterDisable state should not be equal $scheduledTasks | ForEach-Object { $task = $_ # Check that the task is disabled $afterEnable | Where-Object { $_.TaskName -eq $task.TaskName -and $_.State -eq "Ready" } | Should -Not -BeNullOrEmpty } } } Context 'Validates that the Registry Hive Permissions are correct, given a username' { It 'Should return true when a users ntfs permissions are correct' { $datUserTrue = "ADMU_dat_" + -join ((65..90) + (97..122) | Get-Random -Count 5 | ForEach-Object { [char]$_ }) $password = '$T#st1234' InitUser -UserName $datUserTrue -Password $Password # Test NTFS NTUser dat permissions $NTUser, $permissionHash = Test-DATFilePermission -Path "C:\Users\$datUserTrue\NTUSER.DAT" -username $datUserTrue -type 'ntfs' # Test UsrClass dat permissions $UsrClass, $permissionHash = Test-DATFilePermission -Path "C:\Users\$datUserTrue\AppData\Local\Microsoft\Windows\UsrClass.dat" -username $datUserTrue -type 'ntfs' # Validate NTFS Permissions $NTUser | Should -Be $true $UsrClass | Should -Be $true # load file into memory + test registry permissions if ((Get-psdrive | select-object name) -notmatch "HKEY_USERS") { New-PSDrive -Name:("HKEY_USERS") -PSProvider:("Registry") -Root:("HKEY_USERS") } REG LOAD HKU\$($datUserTrue) "C:\Users\$datUserTrue\NTUSER.DAT" *>&1 REG LOAD HKU\$($datUserTrue)_classes "C:\Users\$datUserTrue\AppData\Local\Microsoft\Windows\UsrClass.dat" *>&1 # Test NTUSER dat permissions $NTUser, $permissionHash = Test-DATFilePermission -Path "HKEY_USERS:\$($datUserTrue)" -username $datUserTrue -type 'registry' # Test UsrClass dat permissions $UsrClass, $permissionHashClasses = Test-DATFilePermission -Path "HKEY_USERS:\$($datUserTrue)_classes" -username $datUserTrue -type 'registry' # Validate registry Permissions $NTUser | Should -Be $true $UsrClass | Should -Be $true # unload registry files # REG UNLOAD HKU\$($datUserTrue) *>&1 # REG UNLOAD HKU\$($datUserTrue)_classes *>&1 } It 'Should return false when a users ntfs permissions are correct' { $datUserFalse = "ADMU_dat_" + -join ((65..90) + (97..122) | Get-Random -Count 5 | ForEach-Object { [char]$_ }) $password = '$T#st1234' InitUser -UserName $datUserFalse -Password $Password $filePaths = @("C:\Users\$datUserFalse\AppData\Local\Microsoft\Windows\UsrClass.dat", "C:\Users\$datUserFalse\NTUSER.DAT") $requiredAccounts = @("SYSTEM", "$datUserFalse") # NTFS Validations: foreach ($FilePath in $filePaths) { # Get current access control list: $FileACL = (Get-Item $FilePath -Force).GetAccessControl('Access') # Remove inheritance but preserve existing entries $FileACL.SetAccessRuleProtection($true, $true) Set-Acl $FilePath -AclObject $FileACL # Retrieve new explicit set of permissions $FileACL = Get-Acl $FilePath foreach ($requiredAccount in $requiredAccounts) { # Retrieve one of the required rules Write-Host "removing: $($requiredAccount) Access" $ruleToRemove = $FileACL.GetAccessRules($true, $true, [System.Security.Principal.NTAccount]) | Where-Object { $_.IdentityReference -match $requiredAccount } # Remove it - or modify it and use SetAccessRule() instead $FileACL.RemoveAccessRule($ruleToRemove) # Set ACL on file again Set-Acl $FilePath -AclObject $FileACL # Test NTUser dat permissions $NTUser, $permissionHash = Test-DATFilePermission -Path $FilePath -username $datUserFalse -type 'ntfs' $NTUser | Should -Be $false # Retrieve new explicit set of permissions $FileACL = Get-Acl $FilePath # Add the rule again $FileACL.SetAccessRule($ruleToRemove) # Set ACL on file again Set-Acl $FilePath -AclObject $FileACL $NTUser, $permissionHashClasses = Test-DATFilePermission -Path $FilePath -username $datUserFalse -type 'ntfs' # Test UsrClass dat permissions $NTUser | Should -Be $true } } # Registry Validations: # load file into memory + test registry permissions if ((Get-psdrive | select-object name) -notmatch "HKEY_USERS") { New-PSDrive -Name:("HKEY_USERS") -PSProvider:("Registry") -Root:("HKEY_USERS") } foreach ($FilePath in $filePaths) { if ($filePath -match 'usrclass') { REG LOAD "HKU\tempPath_classes" "$FilePath" *>&1 $REGFilePath = "HKEY_USERS:\tempPath_classes" } else { REG LOAD "HKU\tempPath" "$FilePath" *>&1 $REGFilePath = "HKEY_USERS:\tempPath" } # Get current access control list: $FileACL = (Get-Item $REGFilePath -Force).GetAccessControl('Access') # Remove inheritance but preserve existing entries $FileACL.SetAccessRuleProtection($true, $true) Set-Acl $REGFilePath -AclObject $FileACL # Retrieve new explicit set of permissions $FileACL = Get-Acl $REGFilePath foreach ($requiredAccount in $requiredAccounts) { # Retrieve one of the required rules Write-Host "removing: $($requiredAccount) Access" $ruleToRemove = $FileACL.GetAccessRules($true, $true, [System.Security.Principal.NTAccount]) | Where-Object { $_.IdentityReference -match $requiredAccount } # Remove it - or modify it and use SetAccessRule() instead $FileACL.RemoveAccessRule($ruleToRemove) # Set ACL on file again Set-Acl $REGFilePath -AclObject $FileACL # Test registry dat permissions $NTUser, $permissionHash = Test-DATFilePermission -Path $REGFilePath -username $datUserFalse -type 'registry' $NTUser | Should -Be $false # Retrieve new explicit set of permissions $FileACL = Get-Acl $REGFilePath # Add the rule again $FileACL.SetAccessRule($ruleToRemove) # Set ACL on file again Set-Acl $REGFilePath -AclObject $FileACL $NTUser, $permissionHashClasses = Test-DATFilePermission -Path $REGFilePath -username $datUserFalse -type 'registry' # Test UsrClass dat permissions $NTUser | Should -Be $true } } } } } |