mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
137 lines
2.9 KiB
Go
137 lines
2.9 KiB
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package aws
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/feature/ec2/imds"
|
|
"github.com/aws/aws-sdk-go-v2/service/ec2"
|
|
"github.com/aws/aws-sdk-go-v2/service/ec2/types"
|
|
"github.com/edgelesssys/constellation/v2/internal/attestation/vtpm"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGeTrustedKey(t *testing.T) {
|
|
testCases := map[string]struct {
|
|
attDoc []byte
|
|
nonce []byte
|
|
wantErr bool
|
|
}{
|
|
"nul byte docs": {
|
|
attDoc: []byte{0x00, 0x00, 0x00, 0x00},
|
|
nonce: []byte{0x00, 0x00, 0x00, 0x00},
|
|
wantErr: true,
|
|
},
|
|
"nil": {
|
|
attDoc: nil,
|
|
nonce: nil,
|
|
wantErr: true,
|
|
},
|
|
}
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
assert := assert.New(t)
|
|
out, err := getTrustedKey(tc.attDoc, tc.nonce)
|
|
|
|
if tc.wantErr {
|
|
assert.Error(err)
|
|
} else {
|
|
assert.NoError(err)
|
|
}
|
|
|
|
assert.Nil(out)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestTpmEnabled(t *testing.T) {
|
|
idDocNoTPM := imds.InstanceIdentityDocument{
|
|
ImageID: "ami-tpm-disabled",
|
|
}
|
|
userDataNoTPM, _ := json.Marshal(idDocNoTPM)
|
|
attDocNoTPM := vtpm.AttestationDocument{
|
|
InstanceInfo: userDataNoTPM,
|
|
}
|
|
|
|
idDocTPM := imds.InstanceIdentityDocument{
|
|
ImageID: "ami-tpm-enabled",
|
|
}
|
|
userDataTPM, _ := json.Marshal(idDocTPM)
|
|
attDocTPM := vtpm.AttestationDocument{
|
|
InstanceInfo: userDataTPM,
|
|
}
|
|
|
|
testCases := map[string]struct {
|
|
attDoc vtpm.AttestationDocument
|
|
awsAPI awsMetadataAPI
|
|
wantErr bool
|
|
}{
|
|
"ami with tpm": {
|
|
attDoc: attDocNoTPM,
|
|
awsAPI: &stubDescribeAPI{describeImagesTPMSupport: "v2.0"},
|
|
},
|
|
"ami without tpm": {
|
|
attDoc: attDocTPM,
|
|
awsAPI: &stubDescribeAPI{describeImagesTPMSupport: "v1.0"},
|
|
wantErr: true,
|
|
},
|
|
"ami undefined": {
|
|
attDoc: vtpm.AttestationDocument{},
|
|
awsAPI: &stubDescribeAPI{describeImagesErr: errors.New("failed")},
|
|
wantErr: true,
|
|
},
|
|
"invalid json instanceIdentityDocument": {
|
|
attDoc: vtpm.AttestationDocument{
|
|
UserData: []byte("{invalid}"),
|
|
},
|
|
awsAPI: &stubDescribeAPI{describeImagesErr: errors.New("failed")},
|
|
wantErr: true,
|
|
},
|
|
}
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
v := Validator{
|
|
getDescribeClient: func(context.Context, string) (awsMetadataAPI, error) {
|
|
return tc.awsAPI, nil
|
|
},
|
|
}
|
|
|
|
err := v.tpmEnabled(tc.attDoc, nil)
|
|
if tc.wantErr {
|
|
assert.Error(err)
|
|
} else {
|
|
assert.Nil(err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
type stubDescribeAPI struct {
|
|
describeImagesErr error
|
|
describeImagesTPMSupport string
|
|
}
|
|
|
|
func (a *stubDescribeAPI) DescribeImages(
|
|
ctx context.Context, params *ec2.DescribeImagesInput, optFns ...func(*ec2.Options),
|
|
) (*ec2.DescribeImagesOutput, error) {
|
|
output := &ec2.DescribeImagesOutput{
|
|
Images: []types.Image{
|
|
{TpmSupport: types.TpmSupportValues(a.describeImagesTPMSupport)},
|
|
},
|
|
}
|
|
|
|
return output, a.describeImagesErr
|
|
}
|