1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
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"
)
var svc = cognitoidentity.New(unit.Session)
func TestUnsignedRequest_GetID(t *testing.T) {
req, _ := svc.GetIdRequest(&cognitoidentity.GetIdInput{
IdentityPoolId: aws.String("IdentityPoolId"),
})
err := req.Sign()
if err != nil {
t.Errorf("expected no error, but received %v", err)
}
if e, a := "", req.HTTPRequest.Header.Get("Authorization"); e != a {
t.Errorf("expected empty value '%v', but received, %v", e, a)
}
}
func TestUnsignedRequest_GetOpenIDToken(t *testing.T) {
req, _ := svc.GetOpenIdTokenRequest(&cognitoidentity.GetOpenIdTokenInput{
IdentityId: aws.String("IdentityId"),
})
err := req.Sign()
if err != nil {
t.Errorf("expected no error, but received %v", err)
}
if e, a := "", req.HTTPRequest.Header.Get("Authorization"); e != a {
t.Errorf("expected empty value '%v', but received, %v", e, a)
}
}
func TestUnsignedRequest_GetCredentialsForIdentity(t *testing.T) {
req, _ := svc.GetCredentialsForIdentityRequest(&cognitoidentity.GetCredentialsForIdentityInput{
IdentityId: aws.String("IdentityId"),
})
err := req.Sign()
if err != nil {
t.Errorf("expected no error, but received %v", err)
}
if e, a := "", req.HTTPRequest.Header.Get("Authorization"); e != a {
t.Errorf("expected empty value '%v', but received, %v", e, a)
}
}
|