blob: e081b4be4c8137b9f62104e832b822d162551d01 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package storageos_test
import (
"path/filepath"
"testing"
"github.com/apache/dubbo-kubernetes/pkg/bufman/pkg/normalpath"
"github.com/apache/dubbo-kubernetes/pkg/bufman/pkg/storage"
"github.com/apache/dubbo-kubernetes/pkg/bufman/pkg/storage/storageos"
"github.com/apache/dubbo-kubernetes/pkg/bufman/pkg/storage/storagetesting"
"github.com/stretchr/testify/require"
)
var storagetestingDirPath = filepath.Join("..", "storagetesting")
func TestOS(t *testing.T) {
t.Parallel()
storagetesting.RunTestSuite(
t,
storagetestingDirPath,
testNewReadBucket,
testNewWriteBucket,
testWriteBucketToReadBucket,
)
}
func testNewReadBucket(t *testing.T, dirPath string, storageosProvider storageos.Provider) (storage.ReadBucket, storagetesting.GetExternalPathFunc) {
osBucket, err := storageosProvider.NewReadWriteBucket(
dirPath,
storageos.ReadWriteBucketWithSymlinksIfSupported(),
)
require.NoError(t, err)
return osBucket, func(t *testing.T, rootPath string, path string) string {
// Join calls Clean
return normalpath.Unnormalize(normalpath.Join(rootPath, path))
}
}
func testNewWriteBucket(t *testing.T, storageosProvider storageos.Provider) storage.WriteBucket {
tmpDir := t.TempDir()
osBucket, err := storageosProvider.NewReadWriteBucket(
tmpDir,
storageos.ReadWriteBucketWithSymlinksIfSupported(),
)
require.NoError(t, err)
return osBucket
}
func testWriteBucketToReadBucket(t *testing.T, writeBucket storage.WriteBucket) storage.ReadBucket {
// hacky
readWriteBucket, ok := writeBucket.(storage.ReadWriteBucket)
require.True(t, ok)
return readWriteBucket
}