mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-08-10 01:51:18 +10:00
* fix: repair popup install binding, dialog titles, presets switch, radio groups, JSON, tests - Invoke-WPFInstall: add param block so the right-click app popup binds -PackagesToInstall. It previously dropped the argument into $args and installed the whole selected list instead of the clicked app (or warned that nothing was selected). - Replace undefined $AppTitle with "WinUtil" in Install/UnInstall warning boxes, matching the XAML window title and sibling dialogs. - tweaks.json: remove stray nested "link" inside the WPFToggleScrollbars registry entry (dead property; registry entries expose only the six consumed fields). - Invoke-WPFPresets: fix dead switch cases to the wildcard-pattern convention so selectedFeatures/selectedToggles clear correctly. - Invoke-WPFUIElements: store the group StackPanel in radioButtonGroups so grouped radio buttons share one container (else branch was unreachable). - sanity.Tests.ps1: pass the Windows PowerShell parser script via -EncodedCommand; -Command string marshaling corrupted backticks/quotes and produced false parse failures. - install-workflow.Tests.ps1: remove the AppTitle workaround and update title assertions to "WinUtil"; drop orphaned cleanup lines. - Add CHANGES.md with technical and plain-language explanations. Verified: each bug reproduced against HEAD, fixes demonstrated to change behavior, full Pester suite 471/471. * Delete * test: cover the explicit popup install parameter path Add a regression test invoking Invoke-WPFInstall -PackagesToInstall with a package different from the default sync.selectedApps selection and assert the runspace receives the explicit object, mirroring the Initialize-WPFUI popup call shape. Existing default-path coverage is unchanged.
461 lines
20 KiB
PowerShell
461 lines
20 KiB
PowerShell
#===========================================================================
|
|
# Tests - Install and Uninstall Workflows
|
|
#===========================================================================
|
|
|
|
BeforeAll {
|
|
$script:repoRoot = (Resolve-Path (Join-Path $PSScriptRoot "..")).Path
|
|
|
|
. (Join-Path $script:repoRoot "functions\private\Get-WinUtilPackageLogSummary.ps1")
|
|
. (Join-Path $script:repoRoot "functions\public\Invoke-WPFInstall.ps1")
|
|
. (Join-Path $script:repoRoot "functions\public\Invoke-WPFUnInstall.ps1")
|
|
|
|
function Show-WinUtilMessage {
|
|
param($Message, $Title, $Button, $Icon)
|
|
}
|
|
function Invoke-WPFRunspace {
|
|
param($ArgumentList, $ParameterList, [scriptblock]$ScriptBlock)
|
|
}
|
|
function Get-WinUtilSelectedPackages {
|
|
param($PackageList, [string]$Preference)
|
|
}
|
|
function Set-WinUtilTweaksProgressIndicator {
|
|
param($Visible, $Label, $Percent)
|
|
}
|
|
function Install-WinUtilWinget { }
|
|
function Install-WinUtilChoco { }
|
|
function Install-WinUtilProgramWinget {
|
|
param($Action, $Programs)
|
|
}
|
|
function Install-WinUtilProgramChoco {
|
|
param($Action, $Programs)
|
|
}
|
|
function Invoke-WPFUIThread {
|
|
param([scriptblock]$ScriptBlock)
|
|
}
|
|
function Write-WinUtilLog {
|
|
param($Message, $Level, $Component)
|
|
}
|
|
|
|
function script:New-WinUtilPackage {
|
|
param(
|
|
[string]$Name = "Git",
|
|
[string]$Winget = "Git.Git",
|
|
[string]$Choco = "git"
|
|
)
|
|
|
|
[pscustomobject]@{
|
|
Name = $Name
|
|
Description = "$Name package"
|
|
winget = $Winget
|
|
choco = $Choco
|
|
}
|
|
}
|
|
|
|
function script:New-WinUtilInstallTestContext {
|
|
param(
|
|
[bool]$ProcessRunning = $false,
|
|
[object[]]$Packages = @()
|
|
)
|
|
|
|
$applications = @{}
|
|
$selectedApps = [System.Collections.Generic.List[string]]::new()
|
|
|
|
for ($i = 0; $i -lt $Packages.Count; $i++) {
|
|
$key = "WPFInstallTest$i"
|
|
$applications[$key] = $Packages[$i]
|
|
$selectedApps.Add($key)
|
|
}
|
|
|
|
$script:sync = [Hashtable]::Synchronized(@{
|
|
ProcessRunning = $ProcessRunning
|
|
selectedApps = $selectedApps
|
|
preferences = [pscustomobject]@{
|
|
packagemanager = "Winget"
|
|
}
|
|
Form = [pscustomobject]@{
|
|
Dispatcher = [pscustomobject]@{}
|
|
}
|
|
configs = @{
|
|
applicationsHashtable = $applications
|
|
}
|
|
})
|
|
}
|
|
|
|
function script:New-WinUtilPackageSplit {
|
|
param(
|
|
[string[]]$Winget = @(),
|
|
[string[]]$Choco = @()
|
|
)
|
|
|
|
$packages = @{}
|
|
$packages["Winget"] = [System.Collections.Generic.List[string]]::new()
|
|
$packages["Choco"] = [System.Collections.Generic.List[string]]::new()
|
|
|
|
foreach ($package in $Winget) {
|
|
$null = $packages["Winget"].Add($package)
|
|
}
|
|
|
|
foreach ($package in $Choco) {
|
|
$null = $packages["Choco"].Add($package)
|
|
}
|
|
|
|
$packages
|
|
}
|
|
}
|
|
|
|
Describe "Invoke-WPFInstall entrypoint" {
|
|
BeforeEach {
|
|
$script:package = New-WinUtilPackage
|
|
New-WinUtilInstallTestContext -Packages @($script:package)
|
|
$script:capturedInstallScriptBlock = $null
|
|
$script:capturedInstallParameterList = $null
|
|
|
|
Mock Show-WinUtilMessage { "OK" }
|
|
Mock Invoke-WPFRunspace {
|
|
$script:capturedInstallScriptBlock = $ScriptBlock
|
|
$script:capturedInstallParameterList = $ParameterList
|
|
[pscustomobject]@{ MockHandle = $true }
|
|
}
|
|
Mock Write-WinUtilLog { }
|
|
}
|
|
|
|
AfterEach {
|
|
Remove-Variable -Name sync -Scope Script -ErrorAction SilentlyContinue
|
|
Remove-Variable -Name capturedInstallScriptBlock -Scope Script -ErrorAction SilentlyContinue
|
|
Remove-Variable -Name capturedInstallParameterList -Scope Script -ErrorAction SilentlyContinue
|
|
}
|
|
|
|
It "queues selected packages with the configured package manager preference" {
|
|
Invoke-WPFInstall
|
|
|
|
Should -Invoke -CommandName Invoke-WPFRunspace -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock -is [scriptblock] -and
|
|
$ParameterList.Count -eq 2 -and
|
|
$ParameterList[0][0] -eq "PackagesToInstall" -and
|
|
@($ParameterList[0][1]).Count -eq 1 -and
|
|
@($ParameterList[0][1])[0].winget -eq "Git.Git" -and
|
|
$ParameterList[1][0] -eq "ManagerPreference" -and
|
|
$ParameterList[1][1] -eq "Winget"
|
|
}
|
|
Should -Invoke -CommandName Show-WinUtilMessage -Times 0 -Exactly
|
|
Should -Invoke -CommandName Write-WinUtilLog -Times 1 -Exactly -ParameterFilter {
|
|
$Component -eq "Install" -and
|
|
$Message -eq "Install selected package(s): Git (winget: Git.Git)"
|
|
}
|
|
}
|
|
|
|
It "queues the explicit app popup package over the selected apps" {
|
|
$explicitPackage = New-WinUtilPackage -Name "VLC" -Winget "VideoLAN.VLC" -Choco "vlc"
|
|
|
|
Invoke-WPFInstall -PackagesToInstall $explicitPackage
|
|
|
|
Should -Invoke -CommandName Invoke-WPFRunspace -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock -is [scriptblock] -and
|
|
$ParameterList.Count -eq 2 -and
|
|
$ParameterList[0][0] -eq "PackagesToInstall" -and
|
|
@($ParameterList[0][1]).Count -eq 1 -and
|
|
@($ParameterList[0][1])[0].winget -eq "VideoLAN.VLC" -and
|
|
$ParameterList[1][0] -eq "ManagerPreference" -and
|
|
$ParameterList[1][1] -eq "Winget"
|
|
}
|
|
Should -Invoke -CommandName Show-WinUtilMessage -Times 0 -Exactly
|
|
}
|
|
|
|
It "prompts and exits when no packages are selected" {
|
|
New-WinUtilInstallTestContext
|
|
|
|
Invoke-WPFInstall
|
|
|
|
Should -Invoke -CommandName Show-WinUtilMessage -Times 1 -Exactly -ParameterFilter {
|
|
$Message -eq "Please select the program(s) to install or upgrade." -and
|
|
$Title -eq "WinUtil" -and
|
|
$Button -eq "OK" -and
|
|
$Icon -eq "Warning"
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFRunspace -Times 0 -Exactly
|
|
}
|
|
|
|
It "prompts and exits when another install process is running" {
|
|
New-WinUtilInstallTestContext -ProcessRunning $true -Packages @($script:package)
|
|
|
|
Invoke-WPFInstall
|
|
|
|
Should -Invoke -CommandName Show-WinUtilMessage -Times 1 -Exactly -ParameterFilter {
|
|
$Message -eq "[Invoke-WPFInstall] An Install process is currently running." -and
|
|
$Title -eq "WinUtil" -and
|
|
$Button -eq "OK" -and
|
|
$Icon -eq "Warning"
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFRunspace -Times 0 -Exactly
|
|
}
|
|
}
|
|
|
|
Describe "Invoke-WPFInstall runspace body" {
|
|
BeforeEach {
|
|
$script:package = New-WinUtilPackage
|
|
New-WinUtilInstallTestContext -Packages @($script:package)
|
|
$script:capturedInstallScriptBlock = $null
|
|
|
|
Mock Show-WinUtilMessage { "OK" }
|
|
Mock Invoke-WPFRunspace {
|
|
$script:capturedInstallScriptBlock = $ScriptBlock
|
|
[pscustomobject]@{ MockHandle = $true }
|
|
}
|
|
Mock Get-WinUtilSelectedPackages {
|
|
New-WinUtilPackageSplit -Winget @("Git.Git") -Choco @("vlc")
|
|
}
|
|
Mock Set-WinUtilTweaksProgressIndicator { }
|
|
Mock Install-WinUtilWinget { }
|
|
Mock Install-WinUtilChoco { }
|
|
Mock Install-WinUtilProgramWinget { }
|
|
Mock Install-WinUtilProgramChoco { }
|
|
Mock Invoke-WPFUIThread { }
|
|
Mock Write-WinUtilLog { }
|
|
Mock Write-Host { }
|
|
}
|
|
|
|
AfterEach {
|
|
Remove-Variable -Name sync -Scope Script -ErrorAction SilentlyContinue
|
|
Remove-Variable -Name capturedInstallScriptBlock -Scope Script -ErrorAction SilentlyContinue
|
|
}
|
|
|
|
It "installs split winget and choco packages and cleans up on success" {
|
|
Invoke-WPFInstall
|
|
|
|
& $script:capturedInstallScriptBlock -PackagesToInstall @($script:package) -ManagerPreference "Winget"
|
|
|
|
Should -Invoke -CommandName Get-WinUtilSelectedPackages -Times 1 -Exactly -ParameterFilter {
|
|
@($PackageList).Count -eq 1 -and $Preference -eq "Winget"
|
|
}
|
|
Should -Invoke -CommandName Set-WinUtilTweaksProgressIndicator -Times 1 -Exactly -ParameterFilter {
|
|
$Visible -eq $true -and $Label -eq "Preparing app install (0/2)" -and $Percent -eq 0
|
|
}
|
|
Should -Invoke -CommandName Set-WinUtilTweaksProgressIndicator -Times 1 -Exactly -ParameterFilter {
|
|
$Visible -eq $true -and $Label -eq "Installed Git.Git (1/2)" -and $Percent -eq 50
|
|
}
|
|
Should -Invoke -CommandName Set-WinUtilTweaksProgressIndicator -Times 1 -Exactly -ParameterFilter {
|
|
$Visible -eq $true -and $Label -eq "Installed Chocolatey packages (2/2)" -and $Percent -eq 100
|
|
}
|
|
Should -Invoke -CommandName Set-WinUtilTweaksProgressIndicator -Times 1 -Exactly -ParameterFilter {
|
|
$Visible -eq $true -and $Label -eq "App install finished" -and $Percent -eq 100
|
|
}
|
|
Should -Invoke -CommandName Install-WinUtilWinget -Times 1 -Exactly
|
|
Should -Invoke -CommandName Install-WinUtilProgramWinget -Times 1 -Exactly -ParameterFilter {
|
|
$Action -eq "Install" -and @($Programs)[0] -eq "Git.Git"
|
|
}
|
|
Should -Invoke -CommandName Install-WinUtilChoco -Times 1 -Exactly
|
|
Should -Invoke -CommandName Install-WinUtilProgramChoco -Times 1 -Exactly -ParameterFilter {
|
|
$Action -eq "Install" -and @($Programs)[0] -eq "vlc"
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFUIThread -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock.ToString() -like '*$sync.ItemsControl.IsEnabled = $false*'
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFUIThread -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock.ToString() -like '*$sync.ItemsControl.IsEnabled = $true*'
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFUIThread -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock.ToString() -like '*Set-WinUtilTaskbaritem -state "None" -overlay "checkmark"*'
|
|
}
|
|
$script:sync.ProcessRunning | Should -BeFalse
|
|
}
|
|
|
|
It "shows failure progress, sets taskbar error state, and clears ProcessRunning on failure" {
|
|
Mock Install-WinUtilProgramWinget { throw "winget failed" }
|
|
|
|
Invoke-WPFInstall
|
|
|
|
& $script:capturedInstallScriptBlock -PackagesToInstall @($script:package) -ManagerPreference "Winget"
|
|
|
|
Should -Invoke -CommandName Set-WinUtilTweaksProgressIndicator -Times 1 -Exactly -ParameterFilter {
|
|
$Visible -eq $true -and $Label -eq "App install failed" -and $Percent -eq 100
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFUIThread -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock.ToString() -like '*$sync.ItemsControl.IsEnabled = $false*'
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFUIThread -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock.ToString() -like '*$sync.ItemsControl.IsEnabled = $true*'
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFUIThread -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock.ToString() -like '*Set-WinUtilTaskbaritem -state "Error" -overlay "warning"*'
|
|
}
|
|
Should -Invoke -CommandName Write-WinUtilLog -Times 1 -Exactly -ParameterFilter {
|
|
$Level -eq "ERROR" -and $Component -eq "Install" -and $Message -like "Install workflow failed:*"
|
|
}
|
|
$script:sync.ProcessRunning | Should -BeFalse
|
|
}
|
|
}
|
|
|
|
Describe "Invoke-WPFUnInstall entrypoint" {
|
|
BeforeEach {
|
|
$script:package = New-WinUtilPackage
|
|
New-WinUtilInstallTestContext -Packages @($script:package)
|
|
$script:capturedUninstallScriptBlock = $null
|
|
$script:capturedUninstallParameterList = $null
|
|
|
|
Mock Show-WinUtilMessage { "Yes" }
|
|
Mock Invoke-WPFRunspace {
|
|
$script:capturedUninstallScriptBlock = $ScriptBlock
|
|
$script:capturedUninstallParameterList = $ParameterList
|
|
[pscustomobject]@{ MockHandle = $true }
|
|
}
|
|
Mock Write-WinUtilLog { }
|
|
}
|
|
|
|
AfterEach {
|
|
Remove-Variable -Name sync -Scope Script -ErrorAction SilentlyContinue
|
|
Remove-Variable -Name capturedUninstallScriptBlock -Scope Script -ErrorAction SilentlyContinue
|
|
Remove-Variable -Name capturedUninstallParameterList -Scope Script -ErrorAction SilentlyContinue
|
|
}
|
|
|
|
It "confirms and queues selected packages with the configured package manager preference" {
|
|
Invoke-WPFUnInstall -PackagesToUninstall @($script:package)
|
|
|
|
Should -Invoke -CommandName Show-WinUtilMessage -Times 1 -Exactly -ParameterFilter {
|
|
$Message -like "*This will uninstall the following applications:*" -and
|
|
$Message -like "*Git*" -and
|
|
$Title -eq "Are you sure?" -and
|
|
"$Button" -eq "YesNo" -and
|
|
"$Icon" -eq "Information"
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFRunspace -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock -is [scriptblock] -and
|
|
$ParameterList.Count -eq 2 -and
|
|
$ParameterList[0][0] -eq "PackagesToUninstall" -and
|
|
@($ParameterList[0][1]).Count -eq 1 -and
|
|
@($ParameterList[0][1])[0].winget -eq "Git.Git" -and
|
|
$ParameterList[1][0] -eq "ManagerPreference" -and
|
|
$ParameterList[1][1] -eq "Winget"
|
|
}
|
|
Should -Invoke -CommandName Write-WinUtilLog -Times 1 -Exactly -ParameterFilter {
|
|
$Component -eq "Uninstall" -and
|
|
$Message -eq "Uninstall selected package(s): Git (winget: Git.Git)"
|
|
}
|
|
}
|
|
|
|
It "prompts and exits when no packages are selected" {
|
|
Invoke-WPFUnInstall -PackagesToUninstall @()
|
|
|
|
Should -Invoke -CommandName Show-WinUtilMessage -Times 1 -Exactly -ParameterFilter {
|
|
$Message -eq "Please select the program(s) to uninstall" -and
|
|
$Title -eq "WinUtil" -and
|
|
$Button -eq "OK" -and
|
|
$Icon -eq "Warning"
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFRunspace -Times 0 -Exactly
|
|
}
|
|
|
|
It "prompts and exits when another install process is running" {
|
|
$script:sync.ProcessRunning = $true
|
|
|
|
Invoke-WPFUnInstall -PackagesToUninstall @($script:package)
|
|
|
|
Should -Invoke -CommandName Show-WinUtilMessage -Times 1 -Exactly -ParameterFilter {
|
|
$Message -eq "[Invoke-WPFUnInstall] Install process is currently running" -and
|
|
$Title -eq "WinUtil" -and
|
|
$Button -eq "OK" -and
|
|
$Icon -eq "Warning"
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFRunspace -Times 0 -Exactly
|
|
}
|
|
|
|
It "exits without queueing uninstall when confirmation is declined" {
|
|
Mock Show-WinUtilMessage { "No" } -ParameterFilter { $Title -eq "Are you sure?" }
|
|
|
|
Invoke-WPFUnInstall -PackagesToUninstall @($script:package)
|
|
|
|
Should -Invoke -CommandName Invoke-WPFRunspace -Times 0 -Exactly
|
|
}
|
|
}
|
|
|
|
Describe "Invoke-WPFUnInstall runspace body" {
|
|
BeforeEach {
|
|
$script:package = New-WinUtilPackage
|
|
New-WinUtilInstallTestContext -Packages @($script:package)
|
|
$script:capturedUninstallScriptBlock = $null
|
|
|
|
Mock Show-WinUtilMessage { "Yes" }
|
|
Mock Invoke-WPFRunspace {
|
|
$script:capturedUninstallScriptBlock = $ScriptBlock
|
|
[pscustomobject]@{ MockHandle = $true }
|
|
}
|
|
Mock Get-WinUtilSelectedPackages {
|
|
New-WinUtilPackageSplit -Winget @("Git.Git") -Choco @("vlc")
|
|
}
|
|
Mock Set-WinUtilTweaksProgressIndicator { }
|
|
Mock Install-WinUtilProgramWinget { }
|
|
Mock Install-WinUtilProgramChoco { }
|
|
Mock Invoke-WPFUIThread { }
|
|
Mock Write-WinUtilLog { }
|
|
Mock Write-Host { }
|
|
Mock New-Item { }
|
|
}
|
|
|
|
AfterEach {
|
|
Remove-Variable -Name sync -Scope Script -ErrorAction SilentlyContinue
|
|
Remove-Variable -Name capturedUninstallScriptBlock -Scope Script -ErrorAction SilentlyContinue
|
|
}
|
|
|
|
It "uninstalls split winget and choco packages and cleans up on success" {
|
|
Invoke-WPFUnInstall -PackagesToUninstall @($script:package)
|
|
|
|
& $script:capturedUninstallScriptBlock -PackagesToUninstall @($script:package) -ManagerPreference "Winget"
|
|
|
|
Should -Invoke -CommandName Get-WinUtilSelectedPackages -Times 1 -Exactly -ParameterFilter {
|
|
@($PackageList).Count -eq 1 -and $Preference -eq "Winget"
|
|
}
|
|
Should -Invoke -CommandName Set-WinUtilTweaksProgressIndicator -Times 1 -Exactly -ParameterFilter {
|
|
$Visible -eq $true -and $Label -eq "Preparing app uninstall (0/2)" -and $Percent -eq 0
|
|
}
|
|
Should -Invoke -CommandName Set-WinUtilTweaksProgressIndicator -Times 1 -Exactly -ParameterFilter {
|
|
$Visible -eq $true -and $Label -eq "Uninstalled Git.Git (1/2)" -and $Percent -eq 50
|
|
}
|
|
Should -Invoke -CommandName Set-WinUtilTweaksProgressIndicator -Times 1 -Exactly -ParameterFilter {
|
|
$Visible -eq $true -and $Label -eq "Uninstalled Chocolatey packages (2/2)" -and $Percent -eq 100
|
|
}
|
|
Should -Invoke -CommandName Set-WinUtilTweaksProgressIndicator -Times 1 -Exactly -ParameterFilter {
|
|
$Visible -eq $true -and $Label -eq "App uninstall finished" -and $Percent -eq 100
|
|
}
|
|
Should -Invoke -CommandName Install-WinUtilProgramWinget -Times 1 -Exactly -ParameterFilter {
|
|
$Action -eq "Uninstall" -and @($Programs)[0] -eq "Git.Git"
|
|
}
|
|
Should -Invoke -CommandName Install-WinUtilProgramChoco -Times 1 -Exactly -ParameterFilter {
|
|
$Action -eq "Uninstall" -and @($Programs)[0] -eq "vlc"
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFUIThread -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock.ToString() -like '*$sync.ItemsControl.IsEnabled = $false*'
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFUIThread -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock.ToString() -like '*$sync.ItemsControl.IsEnabled = $true*'
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFUIThread -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock.ToString() -like '*Set-WinUtilTaskbaritem -state "None" -overlay "checkmark"*'
|
|
}
|
|
$script:sync.ProcessRunning | Should -BeFalse
|
|
}
|
|
|
|
It "shows failure progress, sets taskbar error state, and clears ProcessRunning on failure" {
|
|
Mock Install-WinUtilProgramWinget { throw "winget failed" }
|
|
|
|
Invoke-WPFUnInstall -PackagesToUninstall @($script:package)
|
|
|
|
& $script:capturedUninstallScriptBlock -PackagesToUninstall @($script:package) -ManagerPreference "Winget"
|
|
|
|
Should -Invoke -CommandName Set-WinUtilTweaksProgressIndicator -Times 1 -Exactly -ParameterFilter {
|
|
$Visible -eq $true -and $Label -eq "App uninstall failed" -and $Percent -eq 100
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFUIThread -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock.ToString() -like '*$sync.ItemsControl.IsEnabled = $false*'
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFUIThread -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock.ToString() -like '*$sync.ItemsControl.IsEnabled = $true*'
|
|
}
|
|
Should -Invoke -CommandName Invoke-WPFUIThread -Times 1 -Exactly -ParameterFilter {
|
|
$ScriptBlock.ToString() -like '*Set-WinUtilTaskbaritem -state "Error" -overlay "warning"*'
|
|
}
|
|
Should -Invoke -CommandName Write-WinUtilLog -Times 1 -Exactly -ParameterFilter {
|
|
$Level -eq "ERROR" -and $Component -eq "Uninstall" -and $Message -like "Uninstall workflow failed:*"
|
|
}
|
|
$script:sync.ProcessRunning | Should -BeFalse
|
|
}
|
|
}
|