Files
PSProxmoxVE/tests/PSProxmoxVE.Tests/Integration/14_Backup.Tests.ps1
T
Clint Branham 12874d168d refactor: split monolithic integration tests into numbered per-area files
Split the 1544-line Integration.Tests.ps1 into 18 focused test files
with numeric prefixes for execution ordering.

New shared helper (_IntegrationHelper.ps1):
- Credential-based auth (root@pam) instead of API tokens
- Skip helpers for env var checks
- Resource discovery (Find-TestVm) for cross-file dependencies
- Register-TestResource for env-var state passing between files

Files created:
  00_Connection, 01_Nodes, 02_Users, 03_Storage, 03a_SharedStorage,
  04_Network, 05_SDN, 06_VMs, 07_Snapshots, 08_Templates,
  09_CloudInit, 10_Containers, 11_LinuxVM, 12_OVA, 13_Firewall,
  14_Backup, 15_Tasks, 99_Cleanup

Key changes:
- All tests use root@pam credentials (not API tokens)
- Each file self-contained with own BeforeAll/AfterAll cleanup
- Token CRUD tests now idempotent (remove-before-create)
- 99_Cleanup is safety-net for any leftover pester-* resources
- SharedStorage renamed to 03a_SharedStorage

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 11:51:49 -05:00

64 lines
2.1 KiB
PowerShell

#Requires -Module Pester
BeforeAll {
. $PSScriptRoot/_IntegrationHelper.ps1
Connect-TestPve
$script:BackupTestJobId = $null
}
AfterAll {
if ($null -eq $script:SkipReason) {
try {
if ($script:BackupTestJobId) {
Remove-PveBackupJob -Id $script:BackupTestJobId -Confirm:$false -ErrorAction SilentlyContinue
}
} catch { }
}
Disconnect-TestPve
}
Describe 'Backup Jobs — Integration' -Tag 'Integration' {
Context 'Backup Jobs' {
It 'Should create a backup job' {
Skip-IfNoTarget
{ New-PveBackupJob -Schedule 'sat 03:00' -Storage $script:Storage -Mode snapshot -All -Comment 'pester-test-backup' -ErrorAction Stop } | Should -Not -Throw
}
It 'Should list backup jobs and find the test job' {
Skip-IfNoTarget
$jobs = Get-PveBackupJob
$testJob = $jobs | Where-Object { $_.Comment -eq 'pester-test-backup' }
$testJob | Should -Not -BeNullOrEmpty
$script:BackupTestJobId = $testJob.Id
}
It 'Should update the backup job' {
Skip-IfNoTarget
if (-not $script:BackupTestJobId) {
Set-ItResult -Skipped -Because 'No test backup job was created'
}
{ Set-PveBackupJob -Id $script:BackupTestJobId -Comment 'pester-test-updated' -ErrorAction Stop } | Should -Not -Throw
}
It 'Should remove the backup job' {
Skip-IfNoTarget
if (-not $script:BackupTestJobId) {
Set-ItResult -Skipped -Because 'No test backup job was created'
}
{ Remove-PveBackupJob -Id $script:BackupTestJobId -Confirm:$false -ErrorAction Stop } | Should -Not -Throw
}
It 'Should verify the backup job was removed' {
Skip-IfNoTarget
if (-not $script:BackupTestJobId) {
Set-ItResult -Skipped -Because 'No test backup job was created'
}
$jobs = Get-PveBackupJob
$testJob = $jobs | Where-Object { $_.Id -eq $script:BackupTestJobId }
$testJob | Should -BeNullOrEmpty
}
}
}