Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MOB Connect - provide unit test for added functionality (#473) #641

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Modules/VMware.vSphere.SsoAdmin/MobConnect.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class MobConnection {
$role_id = (Get-VIRole -Name $role_name).ExtensionData.RoleId

$mobconn = New-Object MobConnection($vcenter_server, $credential, $True)
$mobconn.SetPermissions($local_user_name, $role_id, $True)
$mobconn.SetGlobalPermissions($local_user_name, $role_id, $True)
$mobconn.Logout()
#>

Expand Down Expand Up @@ -218,7 +218,7 @@ class MobConnection {
}

[void] Logout() {
if ($null -ne $this.session) {
if ($null -eq $this.session) {
Write-Information "Object not logged in"
return
}
Expand Down Expand Up @@ -395,7 +395,7 @@ function Set-VcenterServerGlobalPermission {
$Propagate
)
Process {
$Server.SetPermissions($TargetUser, $RoleId, $Propagate)
$Server.SetGlobalPermissions($TargetUser, $RoleId, $Propagate)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'VMware.vSphere.SsoAdmin.psm1'

# Version number of this module.
ModuleVersion = '1.4.0'
ModuleVersion = '1.4.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
122 changes: 122 additions & 0 deletions Modules/VMware.vSphere.SsoAdmin/src/test/MOBConnection.Tests.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
<#
Copyright (c) 2025 JetStream Software Inc.
SPDX-License-Identifier: BSD-2-Clause
#>

param(
[Parameter(Mandatory = $true)]
[string]
$VcAddress,

[Parameter(Mandatory = $true)]
[string]
$User,

[Parameter(Mandatory = $true)]
[string]
$Password
)

# Import Vmware.vSphere.SsoAdmin Module
$modulePath = Join-Path (Split-Path $PSScriptRoot | Split-Path) "VMware.vSphere.SsoAdmin.psd1"
Import-Module $modulePath

# Global test variables
#$testUser = $null
#$testRole = $null
#$viServer = $null
#$ssoServer = $null

#$TESTUSERNAME='testuser_'
#$TESTUSERDOMAIN="${TESTUSERNAME}@vsphere.local"
#$TESTROLENAME='testrole_'

Describe "MOB Connect Tests" {
BeforeAll {
$testUser = $null
$testRole = $null
$viServer = $null
$ssoServer = $null
$trid = $null

$TESTUSERNAME='testuser_'
$TESTUSERDOMAIN="${TESTUSERNAME}@vsphere.local"
$TESTROLENAME='testrole_'

$ssoServer = Connect-SsoAdminServer `
-Server $VcAddress `
-User $User `
-Password $Password `
-SkipCertificateCheck

$viServer = Connect-VIServer `
-Server $VcAddress `
-User $User `
-Password $Password `

try {
$testUser = Get-SsoPersonUser -name $TESTUSERNAME -Domain 'vsphere.local'
} catch {}
if (!$testUser) {
$testUser = New-SsoPersonUser -UserName $TESTUSERNAME -Password 'TestP@$$w0rdXXX'
}

try {
$testRole = Get-VIRole -Name $TESTROLENAME -ErrorAction SilentlyContinue
} catch { }
if (!$testRole) {
$testPriv = Get-VIPrivilege -Id "System.View"
$testRole = New-VIRole -Privilege $testPriv -Name $TESTROLENAME
$testRole = Get-VIRole -Name $TESTROLENAME
}
$trid = $testRole.ExtensionData.RoleId
}

AfterAll {
Remove-SsoPersonUser -User $testUser
Remove-VIRole -Role $testRole -Confirm:$False
Disconnect-VIServer -Server $viServer -Confirm:$False
Disconnect-SsoAdminServer -Server $ssoServer
}

Context "Check Command Operation" {
It 'Verifies MOB connection' {
# Try bad credentials
{
$vCenterMOB1 = Connect-VcenterServerMOB -Server $VcAddress -User $User -Password "${Password}++" -SkipCertificateCheck
} | Should -Throw

# Act
$vCenterMOB1 = Connect-VcenterServerMOB -Server $VcAddress -User $User -Password $Password -SkipCertificateCheck

# Assert
$vCenterMOB1 | Should -Not -Be $null
$vCenterMOB1.IsConnected() | Should -Be $True

# Act
$vCenterMOB1 | Disconnect-VcenterServerMOB

# Assert
$vCenterMOB1.IsConnected() | Should -Be $False
}

It 'Verifies Global policy assignment' {
$vCenterMOB2 = Connect-VcenterServerMOB -Server $VcAddress -User $User -Password $Password -SkipCertificateCheck
$vCenterMob2 | Should -Not -Be $null
$vCenterMob2.IsConnected() | Should -Be $True

# Set global permission.
$vCenterMob2 | Set-VcenterServerGlobalPermission -TargetUser $TESTUSERDOMAIN -RoleId $trid -Propagate
$perms = $vCenterMOB2 | Get-VcenterServerGlobalPermissions -TargetUser $TESTUSERDOMAIN
$perms | Should -Contain "System.View"

# Drop all global permissions.
$vCenterMob2 | Reset-VcenterServerGlobalPermissions -TargetUser $TESTUSERDOMAIN
$perms = $vCenterMOB2 | Get-VcenterServerGlobalPermissions -TargetUser $TESTUSERDOMAIN
$perms | Should -BeNullOrEmpty

Disconnect-VcenterServerMOB $vCenterMOB2
$vCenterMob2.IsConnected() | Should -Be $False
}
}
}