@@ -316,6 +316,58 @@ func testAPIGetObjectHandler(obj ObjectLayer, instanceType, bucketName string, a
316
316
expectedContent : encodeResponse (getAPIErrorResponse (getAPIError (ErrInvalidAccessKeyID ), getGetObjectURL ("" , bucketName , objectName ))),
317
317
expectedRespStatus : http .StatusForbidden ,
318
318
},
319
+ // Test case - 7.
320
+ // Case with bad components in object name.
321
+ {
322
+ bucketName : bucketName ,
323
+ objectName : "../../etc" ,
324
+ byteRange : "" ,
325
+ accessKey : credentials .AccessKey ,
326
+ secretKey : credentials .SecretKey ,
327
+
328
+ expectedContent : encodeResponse (getAPIErrorResponse (getAPIError (ErrInvalidObjectName ),
329
+ getGetObjectURL ("" , bucketName , "../../etc" ))),
330
+ expectedRespStatus : http .StatusBadRequest ,
331
+ },
332
+ // Test case - 8.
333
+ // Case with strange components but returning error as not found.
334
+ {
335
+ bucketName : bucketName ,
336
+ objectName : ". ./. ./etc" ,
337
+ byteRange : "" ,
338
+ accessKey : credentials .AccessKey ,
339
+ secretKey : credentials .SecretKey ,
340
+
341
+ expectedContent : encodeResponse (getAPIErrorResponse (getAPIError (ErrNoSuchKey ),
342
+ "/" + bucketName + "/" + ". ./. ./etc" )),
343
+ expectedRespStatus : http .StatusNotFound ,
344
+ },
345
+ // Test case - 9.
346
+ // Case with bad components in object name.
347
+ {
348
+ bucketName : bucketName ,
349
+ objectName : ". ./../etc" ,
350
+ byteRange : "" ,
351
+ accessKey : credentials .AccessKey ,
352
+ secretKey : credentials .SecretKey ,
353
+
354
+ expectedContent : encodeResponse (getAPIErrorResponse (getAPIError (ErrInvalidObjectName ),
355
+ "/" + bucketName + "/" + ". ./../etc" )),
356
+ expectedRespStatus : http .StatusBadRequest ,
357
+ },
358
+ // Test case - 10.
359
+ // Case with proper components
360
+ {
361
+ bucketName : bucketName ,
362
+ objectName : "etc/path/proper/.../etc" ,
363
+ byteRange : "" ,
364
+ accessKey : credentials .AccessKey ,
365
+ secretKey : credentials .SecretKey ,
366
+
367
+ expectedContent : encodeResponse (getAPIErrorResponse (getAPIError (ErrNoSuchKey ),
368
+ getGetObjectURL ("" , bucketName , "etc/path/proper/.../etc" ))),
369
+ expectedRespStatus : http .StatusNotFound ,
370
+ },
319
371
}
320
372
321
373
// Iterating over the cases, fetching the object validating the response.
@@ -346,7 +398,7 @@ func testAPIGetObjectHandler(obj ObjectLayer, instanceType, bucketName string, a
346
398
}
347
399
// Verify whether the bucket obtained object is same as the one created.
348
400
if ! bytes .Equal (testCase .expectedContent , actualContent ) {
349
- t .Errorf ("Test %d: %s: Object content differs from expected value.: %s" , i + 1 , instanceType , string (actualContent ))
401
+ t .Errorf ("Test %d: %s: Object content differs from expected value %s, got %s " , i + 1 , instanceType , testCase . expectedContent , string (actualContent ))
350
402
}
351
403
352
404
// Verify response of the V2 signed HTTP request.
0 commit comments