mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
49 lines
909 B
Go
49 lines
909 B
Go
|
package s3api
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestRemoveDuplicateSlashes(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
path string
|
||
|
expectedResult string
|
||
|
}{
|
||
|
{
|
||
|
name: "empty",
|
||
|
path: "",
|
||
|
expectedResult: "",
|
||
|
},
|
||
|
{
|
||
|
name: "slash",
|
||
|
path: "/",
|
||
|
expectedResult: "/",
|
||
|
},
|
||
|
{
|
||
|
name: "object",
|
||
|
path: "object",
|
||
|
expectedResult: "object",
|
||
|
},
|
||
|
{
|
||
|
name: "correct path",
|
||
|
path: "/path/to/object",
|
||
|
expectedResult: "/path/to/object",
|
||
|
},
|
||
|
{
|
||
|
name: "path with duplicates",
|
||
|
path: "///path//to/object//",
|
||
|
expectedResult: "/path/to/object/",
|
||
|
},
|
||
|
}
|
||
|
|
||
|
for _, tst := range tests {
|
||
|
t.Run(tst.name, func(t *testing.T) {
|
||
|
obj := removeDuplicateSlashes(tst.path)
|
||
|
assert.Equal(t, tst.expectedResult, obj)
|
||
|
})
|
||
|
}
|
||
|
}
|