mirror of
https://github.com/minio/minio.git
synced 2025-04-06 04:40:38 -04:00
Fix testcase to not overflow int type (#4739)
The int type is only 32-bits wide on 32-bit CPUs. Set the type in the tests to int32 to avoid setting problematic maxKeys values. Fixes #4738
This commit is contained in:
parent
5db533c024
commit
218049300c
@ -412,7 +412,7 @@ func testListObjects(obj ObjectLayer, instanceType string, t TestErrHandler) {
|
|||||||
prefix string
|
prefix string
|
||||||
marker string
|
marker string
|
||||||
delimeter string
|
delimeter string
|
||||||
maxKeys int
|
maxKeys int32
|
||||||
// Expected output of ListObjects.
|
// Expected output of ListObjects.
|
||||||
result ListObjectsInfo
|
result ListObjectsInfo
|
||||||
err error
|
err error
|
||||||
@ -446,13 +446,13 @@ func testListObjects(obj ObjectLayer, instanceType string, t TestErrHandler) {
|
|||||||
{"empty-bucket", "", "", "", -1, ListObjectsInfo{}, nil, true},
|
{"empty-bucket", "", "", "", -1, ListObjectsInfo{}, nil, true},
|
||||||
{"empty-bucket", "", "", "", 1, ListObjectsInfo{}, nil, true},
|
{"empty-bucket", "", "", "", 1, ListObjectsInfo{}, nil, true},
|
||||||
// Setting maxKeys to a very large value (17).
|
// Setting maxKeys to a very large value (17).
|
||||||
{"empty-bucket", "", "", "", 1111000000000000, ListObjectsInfo{}, nil, true},
|
{"empty-bucket", "", "", "", 111100000, ListObjectsInfo{}, nil, true},
|
||||||
// Testing for all 7 objects in the bucket (18).
|
// Testing for all 7 objects in the bucket (18).
|
||||||
{"test-bucket-list-object", "", "", "", 9, resultCases[0], nil, true},
|
{"test-bucket-list-object", "", "", "", 9, resultCases[0], nil, true},
|
||||||
//Testing for negative value of maxKey, this should set maxKeys to listObjectsLimit (19).
|
//Testing for negative value of maxKey, this should set maxKeys to listObjectsLimit (19).
|
||||||
{"test-bucket-list-object", "", "", "", -1, resultCases[0], nil, true},
|
{"test-bucket-list-object", "", "", "", -1, resultCases[0], nil, true},
|
||||||
// Testing for very large value of maxKey, this should set maxKeys to listObjectsLimit (20).
|
// Testing for very large value of maxKey, this should set maxKeys to listObjectsLimit (20).
|
||||||
{"test-bucket-list-object", "", "", "", 1234567891011, resultCases[0], nil, true},
|
{"test-bucket-list-object", "", "", "", 1234567890, resultCases[0], nil, true},
|
||||||
// Testing for trancated value (21-24).
|
// Testing for trancated value (21-24).
|
||||||
{"test-bucket-list-object", "", "", "", 5, resultCases[1], nil, true},
|
{"test-bucket-list-object", "", "", "", 5, resultCases[1], nil, true},
|
||||||
{"test-bucket-list-object", "", "", "", 4, resultCases[2], nil, true},
|
{"test-bucket-list-object", "", "", "", 4, resultCases[2], nil, true},
|
||||||
@ -520,7 +520,7 @@ func testListObjects(obj ObjectLayer, instanceType string, t TestErrHandler) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for i, testCase := range testCases {
|
for i, testCase := range testCases {
|
||||||
result, err := obj.ListObjects(testCase.bucketName, testCase.prefix, testCase.marker, testCase.delimeter, testCase.maxKeys)
|
result, err := obj.ListObjects(testCase.bucketName, testCase.prefix, testCase.marker, testCase.delimeter, int(testCase.maxKeys))
|
||||||
if err != nil && testCase.shouldPass {
|
if err != nil && testCase.shouldPass {
|
||||||
t.Errorf("Test %d: %s: Expected to pass, but failed with: <ERROR> %s", i+1, instanceType, err.Error())
|
t.Errorf("Test %d: %s: Expected to pass, but failed with: <ERROR> %s", i+1, instanceType, err.Error())
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user