summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/module_utils_Ansible.ModuleUtils.SID/library/sid_utils_test.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/module_utils_Ansible.ModuleUtils.SID/library/sid_utils_test.ps1')
-rw-r--r--test/integration/targets/module_utils_Ansible.ModuleUtils.SID/library/sid_utils_test.ps1101
1 files changed, 101 insertions, 0 deletions
diff --git a/test/integration/targets/module_utils_Ansible.ModuleUtils.SID/library/sid_utils_test.ps1 b/test/integration/targets/module_utils_Ansible.ModuleUtils.SID/library/sid_utils_test.ps1
new file mode 100644
index 0000000..85bfbe1
--- /dev/null
+++ b/test/integration/targets/module_utils_Ansible.ModuleUtils.SID/library/sid_utils_test.ps1
@@ -0,0 +1,101 @@
+#!powershell
+
+#Requires -Module Ansible.ModuleUtils.Legacy
+#Requires -Module Ansible.ModuleUtils.SID
+
+$params = Parse-Args $args
+$sid_account = Get-AnsibleParam -obj $params -name "sid_account" -type "str" -failifempty $true
+
+Function Assert-Equal($actual, $expected) {
+ if ($actual -ne $expected) {
+ Fail-Json @{} "actual != expected`nActual: $actual`nExpected: $expected"
+ }
+}
+
+Function Get-ComputerSID() {
+ # find any local user and trim off the final UID
+ $luser_sid = (Get-CimInstance Win32_UserAccount -Filter "Domain='$env:COMPUTERNAME'")[0].SID
+
+ return $luser_sid -replace '(S-1-5-21-\d+-\d+-\d+)-\d+', '$1'
+}
+
+$local_sid = Get-ComputerSID
+
+# most machines should have a -500 Administrator account, but it may have been renamed. Look it up by SID
+$default_admin = Get-CimInstance Win32_UserAccount -Filter "SID='$local_sid-500'"
+
+# this group is called Administrators by default on English Windows, but could named something else. Look it up by SID
+$default_admin_group = Get-CimInstance Win32_Group -Filter "SID='S-1-5-32-544'"
+
+if (@($default_admin).Length -ne 1) {
+ Fail-Json @{} "could not find a local admin account with SID ending in -500"
+}
+
+### Set this to the NETBIOS name of the domain you wish to test, not set for shippable ###
+$test_domain = $null
+
+$tests = @(
+ # Local Users
+ @{ sid = "S-1-1-0"; full_name = "Everyone"; names = @("Everyone") },
+ @{ sid = "S-1-5-18"; full_name = "NT AUTHORITY\SYSTEM"; names = @("NT AUTHORITY\SYSTEM", "SYSTEM") },
+ @{ sid = "S-1-5-20"; full_name = "NT AUTHORITY\NETWORK SERVICE"; names = @("NT AUTHORITY\NETWORK SERVICE", "NETWORK SERVICE") },
+ @{
+ sid = "$($default_admin.SID)"
+ full_name = "$($default_admin.FullName)"
+ names = @("$env:COMPUTERNAME\$($default_admin.Name)", "$($default_admin.Name)", ".\$($default_admin.Name)")
+ },
+
+ # Local Groups
+ @{
+ sid = "$($default_admin_group.SID)"
+ full_name = "BUILTIN\$($default_admin_group.Name)"
+ names = @("BUILTIN\$($default_admin_group.Name)", "$($default_admin_group.Name)", ".\$($default_admin_group.Name)")
+ }
+)
+
+# Add domain tests if the domain name has been set
+if ($null -ne $test_domain) {
+ Import-Module ActiveDirectory
+ $domain_info = Get-ADDomain -Identity $test_domain
+ $domain_sid = $domain_info.DomainSID
+ $domain_netbios = $domain_info.NetBIOSName
+ $domain_upn = $domain_info.Forest
+
+ $tests += @{
+ sid = "$domain_sid-512"
+ full_name = "$domain_netbios\Domain Admins"
+ names = @("$domain_netbios\Domain Admins", "Domain Admins@$domain_upn", "Domain Admins")
+ }
+
+ $tests += @{
+ sid = "$domain_sid-500"
+ full_name = "$domain_netbios\Administrator"
+ names = @("$domain_netbios\Administrator", "Administrator@$domain_upn")
+ }
+}
+
+foreach ($test in $tests) {
+ $actual_account_name = Convert-FromSID -sid $test.sid
+ # renamed admins may have an empty FullName; skip comparison in that case
+ if ($test.full_name) {
+ Assert-Equal -actual $actual_account_name -expected $test.full_name
+ }
+
+ foreach ($test_name in $test.names) {
+ $actual_sid = Convert-ToSID -account_name $test_name
+ Assert-Equal -actual $actual_sid -expected $test.sid
+ }
+}
+
+# the account to SID test is run outside of the normal run as we can't test it
+# in the normal test suite
+# Calling Convert-ToSID with a string like a SID should return that SID back
+$actual = Convert-ToSID -account_name $sid_account
+Assert-Equal -actual $actual -expected $sid_account
+
+# Calling COnvert-ToSID with a string prefixed with .\ should return the SID
+# for a user that is called that SID and not the SID passed in
+$actual = Convert-ToSID -account_name ".\$sid_account"
+Assert-Equal -actual ($actual -ne $sid_account) -expected $true
+
+Exit-Json @{ data = "success" }