2016-08-01 23:54:11 -04:00
/ *
2019-04-09 14:39:42 -04:00
* MinIO Cloud Storage , ( C ) 2015 , 2016 , 2017 MinIO , Inc .
2016-08-01 23:54:11 -04:00
*
* Licensed 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 .
* /
2016-08-18 19:23:42 -04:00
package cmd
2016-08-01 23:54:11 -04:00
import (
"net/http"
"testing"
2019-10-01 18:07:20 -04:00
2020-12-22 12:19:32 -05:00
xhttp "github.com/minio/minio/cmd/http"
2016-08-01 23:54:11 -04:00
)
2016-09-30 17:32:13 -04:00
// TestSkipContentSha256Cksum - Test validate the logic which decides whether
// to skip checksum validation based on the request header.
2016-08-01 23:54:11 -04:00
func TestSkipContentSha256Cksum ( t * testing . T ) {
testCases := [ ] struct {
inputHeaderKey string
inputHeaderValue string
inputQueryKey string
inputQueryValue string
expectedResult bool
} {
// Test case - 1.
2018-01-09 02:19:50 -05:00
// Test case with "X-Amz-Content-Sha256" header set, but to empty value but we can't skip.
2016-08-01 23:54:11 -04:00
{ "X-Amz-Content-Sha256" , "" , "" , "" , false } ,
2018-01-09 02:19:50 -05:00
2016-08-01 23:54:11 -04:00
// Test case - 2.
2018-01-09 02:19:50 -05:00
// Test case with "X-Amz-Content-Sha256" not set so we can skip.
{ "" , "" , "" , "" , true } ,
// Test case - 3.
2016-08-01 23:54:11 -04:00
// Test case with "X-Amz-Content-Sha256" header set to "UNSIGNED-PAYLOAD"
// When "X-Amz-Content-Sha256" header is set to "UNSIGNED-PAYLOAD", validation of content sha256 has to be skipped.
2018-01-09 02:19:50 -05:00
{ "X-Amz-Content-Sha256" , unsignedPayload , "X-Amz-Credential" , "" , true } ,
2016-08-01 23:54:11 -04:00
// Test case - 4.
2018-01-09 02:19:50 -05:00
// Enabling PreSigned Signature v4, but X-Amz-Content-Sha256 not set has to be skipped.
{ "" , "" , "X-Amz-Credential" , "" , true } ,
// Test case - 5.
// Enabling PreSigned Signature v4, but X-Amz-Content-Sha256 set and its not UNSIGNED-PAYLOAD, we shouldn't skip.
{ "X-Amz-Content-Sha256" , "somevalue" , "X-Amz-Credential" , "" , false } ,
// Test case - 6.
// Test case with "X-Amz-Content-Sha256" header set to "UNSIGNED-PAYLOAD" and its not presigned, we should skip.
{ "X-Amz-Content-Sha256" , unsignedPayload , "" , "" , true } ,
// Test case - 7.
2016-08-01 23:54:11 -04:00
// "X-Amz-Content-Sha256" not set and PreSigned Signature v4 not enabled, sha256 checksum calculation is not skipped.
{ "" , "" , "X-Amz-Credential" , "" , true } ,
2018-01-09 02:19:50 -05:00
// Test case - 8.
// "X-Amz-Content-Sha256" has a proper value cannot skip.
{ "X-Amz-Content-Sha256" , "somevalue" , "" , "" , false } ,
2016-08-01 23:54:11 -04:00
}
for i , testCase := range testCases {
// creating an input HTTP request.
// Only the headers are relevant for this particular test.
2020-07-20 15:52:49 -04:00
inputReq , err := http . NewRequest ( http . MethodGet , "http://example.com" , nil )
2016-08-01 23:54:11 -04:00
if err != nil {
t . Fatalf ( "Error initializing input HTTP request: %v" , err )
}
if testCase . inputQueryKey != "" {
q := inputReq . URL . Query ( )
q . Add ( testCase . inputQueryKey , testCase . inputQueryValue )
2018-01-09 02:19:50 -05:00
if testCase . inputHeaderKey != "" {
q . Add ( testCase . inputHeaderKey , testCase . inputHeaderValue )
}
2016-08-01 23:54:11 -04:00
inputReq . URL . RawQuery = q . Encode ( )
2018-01-09 02:19:50 -05:00
} else {
if testCase . inputHeaderKey != "" {
inputReq . Header . Set ( testCase . inputHeaderKey , testCase . inputHeaderValue )
}
2016-08-01 23:54:11 -04:00
}
actualResult := skipContentSha256Cksum ( inputReq )
if testCase . expectedResult != actualResult {
t . Errorf ( "Test %d: Expected the result to `%v`, but instead got `%v`" , i + 1 , testCase . expectedResult , actualResult )
}
}
}
// TestIsValidRegion - Tests validate the comparison logic for asserting whether the region from http request is valid.
func TestIsValidRegion ( t * testing . T ) {
testCases := [ ] struct {
inputReqRegion string
inputConfRegion string
expectedResult bool
} {
2017-05-15 21:17:02 -04:00
{ "" , "" , true } ,
2017-01-18 15:24:34 -05:00
{ globalMinioDefaultRegion , "" , true } ,
{ globalMinioDefaultRegion , "US" , true } ,
2016-08-01 23:54:11 -04:00
{ "us-west-1" , "US" , false } ,
{ "us-west-1" , "us-west-1" , true } ,
2016-11-06 14:47:16 -05:00
// "US" was old naming convention for 'us-east-1'.
{ "US" , "US" , true } ,
2016-08-01 23:54:11 -04:00
}
for i , testCase := range testCases {
actualResult := isValidRegion ( testCase . inputReqRegion , testCase . inputConfRegion )
if testCase . expectedResult != actualResult {
t . Errorf ( "Test %d: Expected the result to `%v`, but instead got `%v`" , i + 1 , testCase . expectedResult , actualResult )
}
}
}
// TestExtractSignedHeaders - Tests validate extraction of signed headers using list of signed header keys.
func TestExtractSignedHeaders ( t * testing . T ) {
2017-04-05 18:08:33 -04:00
signedHeaders := [ ] string { "host" , "x-amz-content-sha256" , "x-amz-date" , "transfer-encoding" }
2016-08-01 23:54:11 -04:00
// If the `expect` key exists in the signed headers then golang server would have stripped out the value, expecting the `expect` header set to `100-continue` in the result.
signedHeaders = append ( signedHeaders , "expect" )
// expected header values.
2019-04-09 14:39:42 -04:00
expectedHost := "play.min.io:9000"
2016-08-01 23:54:11 -04:00
expectedContentSha256 := "1234abcd"
2017-03-18 14:28:41 -04:00
expectedTime := UTCNow ( ) . Format ( iso8601Format )
2017-04-05 18:08:33 -04:00
expectedTransferEncoding := "gzip"
2017-04-05 20:00:24 -04:00
expectedExpect := "100-continue"
2017-04-05 18:08:33 -04:00
2020-07-20 15:52:49 -04:00
r , err := http . NewRequest ( http . MethodGet , "http://play.min.io:9000" , nil )
2017-04-05 18:08:33 -04:00
if err != nil {
t . Fatal ( "Unable to create http.Request :" , err )
}
r . TransferEncoding = [ ] string { expectedTransferEncoding }
2016-08-01 23:54:11 -04:00
// Creating input http header.
2017-04-05 18:08:33 -04:00
inputHeader := r . Header
2017-04-05 20:00:24 -04:00
inputHeader . Set ( "x-amz-content-sha256" , expectedContentSha256 )
inputHeader . Set ( "x-amz-date" , expectedTime )
2016-08-01 23:54:11 -04:00
// calling the function being tested.
2017-04-05 18:08:33 -04:00
extractedSignedHeaders , errCode := extractSignedHeaders ( signedHeaders , r )
2016-08-09 12:13:15 -04:00
if errCode != ErrNone {
t . Fatalf ( "Expected the APIErrorCode to be %d, but got %d" , ErrNone , errCode )
}
2019-05-22 00:00:02 -04:00
inputQuery := r . URL . Query ( )
// case where some headers need to get from request query
signedHeaders = append ( signedHeaders , "x-amz-server-side-encryption" )
// expect to fail with `ErrUnsignedHeaders` because couldn't find some header
_ , errCode = extractSignedHeaders ( signedHeaders , r )
if errCode != ErrUnsignedHeaders {
t . Fatalf ( "Expected the APIErrorCode to %d, but got %d" , ErrUnsignedHeaders , errCode )
}
// set headers value through Get parameter
2020-12-22 12:19:32 -05:00
inputQuery . Add ( "x-amz-server-side-encryption" , xhttp . AmzEncryptionAES )
2019-05-22 00:00:02 -04:00
r . URL . RawQuery = inputQuery . Encode ( )
_ , errCode = extractSignedHeaders ( signedHeaders , r )
if errCode != ErrNone {
t . Fatalf ( "Expected the APIErrorCode to be %d, but got %d" , ErrNone , errCode )
}
2016-08-01 23:54:11 -04:00
// "x-amz-content-sha256" header value from the extracted result.
2017-04-05 20:00:24 -04:00
extractedContentSha256 := extractedSignedHeaders . Get ( "x-amz-content-sha256" )
2016-08-01 23:54:11 -04:00
// "host" header value from the extracted result.
2017-04-05 20:00:24 -04:00
extractedHost := extractedSignedHeaders . Get ( "host" )
2016-08-01 23:54:11 -04:00
// "x-amz-date" header from the extracted result.
2017-04-05 20:00:24 -04:00
extractedDate := extractedSignedHeaders . Get ( "x-amz-date" )
2016-08-01 23:54:11 -04:00
// extracted `expect` header.
2017-04-05 20:00:24 -04:00
extractedExpect := extractedSignedHeaders . Get ( "expect" )
2017-04-05 18:08:33 -04:00
2017-04-05 20:00:24 -04:00
extractedTransferEncoding := extractedSignedHeaders . Get ( "transfer-encoding" )
2017-04-05 18:08:33 -04:00
2017-04-05 20:00:24 -04:00
if expectedHost != extractedHost {
2016-08-09 12:13:15 -04:00
t . Errorf ( "host header mismatch: expected `%s`, got `%s`" , expectedHost , extractedHost )
}
2016-08-01 23:54:11 -04:00
// assert the result with the expected value.
2017-04-05 20:00:24 -04:00
if expectedContentSha256 != extractedContentSha256 {
2016-08-01 23:54:11 -04:00
t . Errorf ( "x-amz-content-sha256 header mismatch: expected `%s`, got `%s`" , expectedContentSha256 , extractedContentSha256 )
}
2017-04-05 20:00:24 -04:00
if expectedTime != extractedDate {
2016-08-01 23:54:11 -04:00
t . Errorf ( "x-amz-date header mismatch: expected `%s`, got `%s`" , expectedTime , extractedDate )
}
2017-04-05 18:08:33 -04:00
if extractedTransferEncoding != expectedTransferEncoding {
t . Errorf ( "transfer-encoding mismatch: expected %s, got %s" , expectedTransferEncoding , extractedTransferEncoding )
}
2016-08-09 12:13:15 -04:00
2016-08-01 23:54:11 -04:00
// Since the list of signed headers value contained `expect`, the default value of `100-continue` will be added to extracted signed headers.
2017-04-05 20:00:24 -04:00
if extractedExpect != expectedExpect {
t . Errorf ( "expect header incorrect value: expected `%s`, got `%s`" , expectedExpect , extractedExpect )
2016-08-01 23:54:11 -04:00
}
2016-08-09 12:13:15 -04:00
2017-04-05 20:00:24 -04:00
// case where the headers don't contain the one of the signed header in the signed headers list.
signedHeaders = append ( signedHeaders , "X-Amz-Credential" )
2016-08-09 12:13:15 -04:00
// expected to fail with `ErrUnsignedHeaders`.
2017-04-05 18:08:33 -04:00
_ , errCode = extractSignedHeaders ( signedHeaders , r )
2016-08-09 12:13:15 -04:00
if errCode != ErrUnsignedHeaders {
t . Fatalf ( "Expected the APIErrorCode to %d, but got %d" , ErrUnsignedHeaders , errCode )
}
// case where the list of signed headers doesn't contain the host field.
2017-04-05 20:00:24 -04:00
signedHeaders = signedHeaders [ 2 : 5 ]
2016-08-09 12:13:15 -04:00
// expected to fail with `ErrUnsignedHeaders`.
2017-04-05 18:08:33 -04:00
_ , errCode = extractSignedHeaders ( signedHeaders , r )
2016-08-09 12:13:15 -04:00
if errCode != ErrUnsignedHeaders {
t . Fatalf ( "Expected the APIErrorCode to %d, but got %d" , ErrUnsignedHeaders , errCode )
}
}
2016-11-04 16:52:22 -04:00
// TestSignV4TrimAll - tests the logic of TrimAll() function
func TestSignV4TrimAll ( t * testing . T ) {
2016-11-03 19:41:25 -04:00
testCases := [ ] struct {
// Input.
inputStr string
// Expected result.
result string
} {
{ "本語" , "本語" } ,
{ " abc " , "abc" } ,
{ " a b " , "a b" } ,
{ "a b " , "a b" } ,
{ "a b" , "a b" } ,
{ "a b" , "a b" } ,
{ " a b c " , "a b c" } ,
{ "a \t b c " , "a b c" } ,
{ "\"a \t b c " , "\"a b c" } ,
2016-11-04 16:52:22 -04:00
{ " \t\n\u000b\r\fa \t\n\u000b\r\f b \t\n\u000b\r\f c \t\n\u000b\r\f" , "a b c" } ,
2016-11-03 19:41:25 -04:00
}
// Tests generated values from url encoded name.
for i , testCase := range testCases {
result := signV4TrimAll ( testCase . inputStr )
if testCase . result != result {
2016-11-04 16:52:22 -04:00
t . Errorf ( "Test %d: Expected signV4TrimAll result to be \"%s\", but found it to be \"%s\" instead" , i + 1 , testCase . result , result )
2016-11-03 19:41:25 -04:00
}
}
}
2017-04-10 12:58:08 -04:00
// Test getContentSha256Cksum
func TestGetContentSha256Cksum ( t * testing . T ) {
testCases := [ ] struct {
h string // header SHA256
q string // query SHA256
expected string // expected SHA256
} {
{ "shastring" , "" , "shastring" } ,
2018-01-09 02:19:50 -05:00
{ emptySHA256 , "" , emptySHA256 } ,
2017-04-10 12:58:08 -04:00
{ "" , "" , emptySHA256 } ,
{ "" , "X-Amz-Credential=random" , unsignedPayload } ,
2018-01-09 02:19:50 -05:00
{ "" , "X-Amz-Credential=random&X-Amz-Content-Sha256=" + unsignedPayload , unsignedPayload } ,
2017-04-10 12:58:08 -04:00
{ "" , "X-Amz-Credential=random&X-Amz-Content-Sha256=shastring" , "shastring" } ,
}
for i , testCase := range testCases {
2020-07-20 15:52:49 -04:00
r , err := http . NewRequest ( http . MethodGet , "http://localhost/?" + testCase . q , nil )
2017-04-10 12:58:08 -04:00
if err != nil {
t . Fatal ( err )
}
if testCase . h != "" {
r . Header . Set ( "x-amz-content-sha256" , testCase . h )
}
2019-02-27 20:46:55 -05:00
got := getContentSha256Cksum ( r , serviceS3 )
2017-04-10 12:58:08 -04:00
if got != testCase . expected {
t . Errorf ( "Test %d: got:%s expected:%s" , i + 1 , got , testCase . expected )
}
}
}