2019-06-14 22:55:21 +02:00
|
|
|
// Test Crypt filesystem interface
|
|
|
|
package compress
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-01-17 02:21:33 +01:00
|
|
|
_ "github.com/rclone/rclone/backend/drive"
|
2019-06-14 22:55:21 +02:00
|
|
|
_ "github.com/rclone/rclone/backend/local"
|
2021-01-17 02:21:33 +01:00
|
|
|
_ "github.com/rclone/rclone/backend/s3"
|
|
|
|
_ "github.com/rclone/rclone/backend/swift"
|
2019-06-14 22:55:21 +02:00
|
|
|
"github.com/rclone/rclone/fstest"
|
|
|
|
"github.com/rclone/rclone/fstest/fstests"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
2021-01-17 02:21:33 +01:00
|
|
|
opt := fstests.Opt{
|
2019-06-14 22:55:21 +02:00
|
|
|
RemoteName: *fstest.RemoteName,
|
|
|
|
NilObject: (*Object)(nil),
|
|
|
|
UnimplementableFsMethods: []string{
|
|
|
|
"OpenWriterAt",
|
|
|
|
"MergeDirs",
|
|
|
|
"DirCacheFlush",
|
|
|
|
"PutUnchecked",
|
|
|
|
"PutStream",
|
|
|
|
"UserInfo",
|
|
|
|
"Disconnect",
|
|
|
|
},
|
2021-01-17 02:21:33 +01:00
|
|
|
TiersToTest: []string{"STANDARD", "STANDARD_IA"},
|
|
|
|
UnimplementableObjectMethods: []string{}}
|
|
|
|
fstests.Run(t, &opt)
|
2019-06-14 22:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// TestRemoteGzip tests GZIP compression
|
|
|
|
func TestRemoteGzip(t *testing.T) {
|
|
|
|
if *fstest.RemoteName != "" {
|
|
|
|
t.Skip("Skipping as -remote set")
|
|
|
|
}
|
|
|
|
tempdir := filepath.Join(os.TempDir(), "rclone-compress-test-gzip")
|
|
|
|
name := "TestCompressGzip"
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
|
|
|
RemoteName: name + ":",
|
|
|
|
NilObject: (*Object)(nil),
|
|
|
|
UnimplementableFsMethods: []string{
|
|
|
|
"OpenWriterAt",
|
|
|
|
"MergeDirs",
|
|
|
|
"DirCacheFlush",
|
|
|
|
"PutUnchecked",
|
|
|
|
"PutStream",
|
|
|
|
"UserInfo",
|
|
|
|
"Disconnect",
|
|
|
|
},
|
|
|
|
UnimplementableObjectMethods: []string{
|
|
|
|
"GetTier",
|
|
|
|
"SetTier",
|
|
|
|
},
|
|
|
|
ExtraConfig: []fstests.ExtraConfigItem{
|
|
|
|
{Name: name, Key: "type", Value: "compress"},
|
|
|
|
{Name: name, Key: "remote", Value: tempdir},
|
|
|
|
{Name: name, Key: "compression_mode", Value: "gzip"},
|
|
|
|
},
|
2022-06-29 12:51:46 +02:00
|
|
|
QuickTestOK: true,
|
2019-06-14 22:55:21 +02:00
|
|
|
})
|
|
|
|
}
|