File: test14.ps1

package info (click to toggle)
par2cmdline 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,204 kB
  • sloc: cpp: 14,330; sh: 6,457; makefile: 204
file content (43 lines) | stat: -rw-r--r-- 1,432 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env pwsh
# Test 14: Repair file where 1 byte got removed at the beginning of a file

$ErrorActionPreference = "Stop"

# Source common test functions
. (Join-Path $PSScriptRoot "testfuncs.ps1")

$testname = [System.IO.Path]::GetFileNameWithoutExtension($MyInvocation.MyCommand.Name)

try {
    Initialize-Test -TestName $testname

    Expand-TarGz -Archive (Join-Path $TESTDATA "flatdata.tar.gz") -Destination "."

    Write-Banner "create 5% recovery files"

    $exitCode = Invoke-Par2 -Arguments @("c", "testdata.par2", "test-0.data", "test-1.data", "test-2.data", "test-3.data", "test-4.data", "test-5.data", "test-6.data", "test-7.data", "test-8.data", "test-9.data")
    if ($exitCode -ne 0) {
        Exit-TestWithError "creating repair files using PAR 2.0 failed"
    }

    Write-Banner "repair files where 1 byte got removed at the beginning of a file"

    # Save original and remove first byte
    Move-Item "test-1.data" "test-1.data-correct"
    $bytes = [System.IO.File]::ReadAllBytes("test-1.data-correct")
    $truncatedBytes = $bytes[1..($bytes.Length - 1)]
    [System.IO.File]::WriteAllBytes("test-1.data", $truncatedBytes)

    $exitCode = Invoke-Par2 -Arguments @("r", "testdata.par2")
    if ($exitCode -ne 0) {
        Exit-TestWithError "repair files using PAR 2.0 failed"
    }

    Complete-Test
    exit 0
}
catch {
    Write-Host "ERROR: $_" -ForegroundColor Red
    Complete-Test
    exit 1
}