mirror of
https://github.com/pgsty/minio.git
synced 2026-07-25 23:16:16 +03:00
Support creating directories on erasure coded backend (#5443)
This PR continues from #5049 where we started supporting directories for erasure coded backend
This commit is contained in:
committed by
Nitish Tiwari
parent
45c35b3544
commit
3ea28e9771
@@ -50,6 +50,7 @@ func TestIsValidVolname(t *testing.T) {
|
||||
{"tHIS-ENDS-WITH-UPPERCASE", true},
|
||||
{"ThisBeginsAndEndsWithUpperCase", true},
|
||||
{"una ñina", true},
|
||||
{"lalalallalallalalalallalallalala-theString-size-is-greater-than-64", true},
|
||||
// cases for which test should fail.
|
||||
// passing invalid bucket names.
|
||||
{"", false},
|
||||
@@ -58,7 +59,6 @@ func TestIsValidVolname(t *testing.T) {
|
||||
{"ab", false},
|
||||
{"ab/", true},
|
||||
{"......", true},
|
||||
{"lalalallalallalalalallalallalala-theString-size-is-greater-than-64", false},
|
||||
}
|
||||
|
||||
for i, testCase := range testCases {
|
||||
|
||||
Reference in New Issue
Block a user