mirror of
https://github.com/rclone/rclone.git
synced 2025-12-21 10:43:37 +00:00
Switch to using the dep tool and update all the dependencies
This commit is contained in:
42
vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/customizations_test.go
generated
vendored
Normal file
42
vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/customizations_test.go
generated
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
package cognitoidentity_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/aws/aws-sdk-go/aws"
|
||||
"github.com/aws/aws-sdk-go/awstesting/unit"
|
||||
"github.com/aws/aws-sdk-go/service/cognitoidentity"
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
var svc = cognitoidentity.New(unit.Session)
|
||||
|
||||
func TestUnsignedRequest_GetID(t *testing.T) {
|
||||
req, _ := svc.GetIdRequest(&cognitoidentity.GetIdInput{
|
||||
IdentityPoolId: aws.String("IdentityPoolId"),
|
||||
})
|
||||
|
||||
err := req.Sign()
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, "", req.HTTPRequest.Header.Get("Authorization"))
|
||||
}
|
||||
|
||||
func TestUnsignedRequest_GetOpenIDToken(t *testing.T) {
|
||||
req, _ := svc.GetOpenIdTokenRequest(&cognitoidentity.GetOpenIdTokenInput{
|
||||
IdentityId: aws.String("IdentityId"),
|
||||
})
|
||||
|
||||
err := req.Sign()
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, "", req.HTTPRequest.Header.Get("Authorization"))
|
||||
}
|
||||
|
||||
func TestUnsignedRequest_GetCredentialsForIdentity(t *testing.T) {
|
||||
req, _ := svc.GetCredentialsForIdentityRequest(&cognitoidentity.GetCredentialsForIdentityInput{
|
||||
IdentityId: aws.String("IdentityId"),
|
||||
})
|
||||
|
||||
err := req.Sign()
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, "", req.HTTPRequest.Header.Get("Authorization"))
|
||||
}
|
||||
Reference in New Issue
Block a user