mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 12:57:53 +00:00
cd783358d3
Use a limit of 2 similar to the filereader concurrency in the archiver.
44 lines
950 B
Go
44 lines
950 B
Go
package local
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"syscall"
|
|
"testing"
|
|
|
|
"github.com/restic/restic/internal/restic"
|
|
rtest "github.com/restic/restic/internal/test"
|
|
|
|
"github.com/cenkalti/backoff/v4"
|
|
)
|
|
|
|
func TestNoSpacePermanent(t *testing.T) {
|
|
oldTempFile := tempFile
|
|
defer func() {
|
|
tempFile = oldTempFile
|
|
}()
|
|
|
|
tempFile = func(_, _ string) (*os.File, error) {
|
|
return nil, fmt.Errorf("not creating tempfile, %w", syscall.ENOSPC)
|
|
}
|
|
|
|
dir, cleanup := rtest.TempDir(t)
|
|
defer cleanup()
|
|
|
|
be, err := Open(context.Background(), Config{Path: dir, Connections: 2})
|
|
rtest.OK(t, err)
|
|
defer func() {
|
|
rtest.OK(t, be.Close())
|
|
}()
|
|
|
|
h := restic.Handle{Type: restic.ConfigFile}
|
|
err = be.Save(context.Background(), h, nil)
|
|
_, ok := err.(*backoff.PermanentError)
|
|
rtest.Assert(t, ok,
|
|
"error type should be backoff.PermanentError, got %T", err)
|
|
rtest.Assert(t, errors.Is(err, syscall.ENOSPC),
|
|
"could not recover original ENOSPC error")
|
|
}
|