2017-11-12 18:54:25 +01:00
|
|
|
// Test Cache filesystem interface
|
|
|
|
|
2021-09-09 14:25:25 +02:00
|
|
|
//go:build !plan9 && !js && !race
|
2017-11-12 18:54:25 +01:00
|
|
|
|
|
|
|
package cache_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-07-28 19:47:38 +02:00
|
|
|
"github.com/rclone/rclone/backend/cache"
|
|
|
|
_ "github.com/rclone/rclone/backend/local"
|
|
|
|
"github.com/rclone/rclone/fstest/fstests"
|
2017-11-12 18:54:25 +01:00
|
|
|
)
|
|
|
|
|
2018-04-07 19:48:11 +02:00
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
2024-02-27 12:04:38 +01:00
|
|
|
RemoteName: "TestCache:",
|
|
|
|
NilObject: (*cache.Object)(nil),
|
|
|
|
UnimplementableFsMethods: []string{"PublicLink", "OpenWriterAt", "OpenChunkWriter", "DirSetModTime", "MkdirMetadata"},
|
2024-06-08 11:35:36 +02:00
|
|
|
UnimplementableObjectMethods: []string{"MimeType", "ID", "GetTier", "SetTier", "Metadata", "SetMetadata"},
|
2024-02-27 12:04:38 +01:00
|
|
|
UnimplementableDirectoryMethods: []string{"Metadata", "SetMetadata", "SetModTime"},
|
|
|
|
SkipInvalidUTF8: true, // invalid UTF-8 confuses the cache
|
2018-04-07 19:48:11 +02:00
|
|
|
})
|
2017-11-12 18:54:25 +01:00
|
|
|
}
|