Files
PSMinIO/Quick-Test.ps1
T
PSMinIO Developer 2974ead76e Major improvements: MinIO 4.0.7 compatibility, file handle fixes, clean logging, session management
Key Achievements:
- Downgraded to MinIO 4.0.7 for PowerShell compatibility (eliminated async/await issues)
- Fixed file handle leaks in upload operations (using explicit FileStream management)
- Implemented clean logging (timestamps without redundant prefixes)
- Fixed automatic session variable management (Connect-MinIO stores, cmdlets retrieve)
- Removed duplicate certificate parameters (kept only SkipCertificateValidation)
- Fixed all 'Folder' alias conflicts across cmdlets
- Added correct System.Runtime.CompilerServices.Unsafe.dll version (4.5.3)

 Working Features:
- Connection management (automatic + explicit override)
- Bucket operations (list, create, remove)
- File upload/download (with proper handle release)
- Progress tracking and speed reporting
- Clean verbose logging with timestamps

 Known Issue:
- Chunked operations have threading violations (PowerShell cmdlet methods called from background threads)
- Regular operations work perfectly, chunked operations need threading architecture fix

 Test Results:
- 3.71GB Windows install.wim file tested
- Regular upload/download:  Working
- File handles:  No leaks, immediate deletion possible
- Session management:  Automatic connection storage/retrieval
- Chunked operations:  Threading violations need fix
2025-07-10 20:55:14 -04:00

33 lines
1.1 KiB
PowerShell

# Quick test for PSMinIO module
Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
Write-Host "=== Quick PSMinIO Test ===" -ForegroundColor Cyan
# Test credentials
$endpoint = "https://api.s3.gracesolution.info"
$accessKey = "T34Wg85SAwezUa3sk3m4"
$secretKey = "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
Write-Host "1. Connecting..." -ForegroundColor Yellow
try {
$connection = Connect-MinIO -Endpoint $endpoint -AccessKey $accessKey -SecretKey $secretKey
Write-Host "SUCCESS: Connected to $($connection.EndpointUrl)" -ForegroundColor Green
} catch {
Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
exit 1
}
Write-Host "2. Testing bucket listing..." -ForegroundColor Yellow
try {
$buckets = Get-MinIOBucket
Write-Host "SUCCESS: Found $($buckets.Count) buckets" -ForegroundColor Green
if ($buckets.Count -gt 0) {
$buckets | Format-Table Name, CreationDate
}
} catch {
Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
Write-Host "Inner Exception: $($_.Exception.InnerException.Message)" -ForegroundColor Red
}
Write-Host "Test completed!" -ForegroundColor Cyan