2017-11-13 01:54:25 +08:00
|
|
|
// Test Cache filesystem interface
|
|
|
|
|
2021-09-09 20:25:25 +08:00
|
|
|
//go:build !plan9 && !js && !race
|
|
|
|
// +build !plan9,!js,!race
|
2017-11-13 01:54:25 +08:00
|
|
|
|
|
|
|
package cache_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-07-29 01:47:38 +08:00
|
|
|
"github.com/rclone/rclone/backend/cache"
|
|
|
|
_ "github.com/rclone/rclone/backend/local"
|
|
|
|
"github.com/rclone/rclone/fstest/fstests"
|
2017-11-13 01:54:25 +08:00
|
|
|
)
|
|
|
|
|
2018-04-08 01:48:11 +08:00
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
2019-03-21 00:45:47 +08:00
|
|
|
RemoteName: "TestCache:",
|
|
|
|
NilObject: (*cache.Object)(nil),
|
2023-09-04 20:22:26 +08:00
|
|
|
UnimplementableFsMethods: []string{"PublicLink", "OpenWriterAt", "OpenChunkWriter"},
|
2022-06-29 21:27:25 +08:00
|
|
|
UnimplementableObjectMethods: []string{"MimeType", "ID", "GetTier", "SetTier", "Metadata"},
|
2019-10-10 17:32:28 +08:00
|
|
|
SkipInvalidUTF8: true, // invalid UTF-8 confuses the cache
|
2018-04-08 01:48:11 +08:00
|
|
|
})
|
2017-11-13 01:54:25 +08:00
|
|
|
}
|