2022-03-22 16:03:15 +01:00
|
|
|
//go:build azure
|
|
|
|
|
|
|
|
package azure
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"testing"
|
|
|
|
|
2022-06-01 15:08:42 +02:00
|
|
|
"github.com/edgelesssys/constellation/internal/attestation/vtpm"
|
2022-03-22 16:03:15 +01:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
2022-06-30 15:24:36 +02:00
|
|
|
"go.uber.org/goleak"
|
2022-03-22 16:03:15 +01:00
|
|
|
)
|
|
|
|
|
2022-06-30 15:24:36 +02:00
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
goleak.VerifyTestMain(m)
|
|
|
|
}
|
|
|
|
|
2022-03-22 16:03:15 +01:00
|
|
|
func TestAttestation(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
require := require.New(t)
|
|
|
|
|
|
|
|
issuer := NewIssuer()
|
2022-08-29 16:41:09 +02:00
|
|
|
validator := NewValidator(map[uint32][]byte{}, nil, nil, false, nil) // TODO: check for list of expected Azure PCRs
|
2022-03-22 16:03:15 +01:00
|
|
|
|
|
|
|
nonce := []byte{2, 3, 4}
|
|
|
|
challenge := []byte("Constellation")
|
|
|
|
|
|
|
|
attDocRaw, err := issuer.Issue(challenge, nonce)
|
|
|
|
assert.NoError(err)
|
|
|
|
|
|
|
|
var attDoc vtpm.AttestationDocument
|
|
|
|
err = json.Unmarshal(attDocRaw, &attDoc)
|
|
|
|
require.NoError(err)
|
|
|
|
assert.Equal(challenge, attDoc.UserData)
|
|
|
|
originalPCR := attDoc.Attestation.Quotes[1].Pcrs.Pcrs[uint32(vtpm.PCRIndexOwnerID)]
|
|
|
|
|
|
|
|
out, err := validator.Validate(attDocRaw, nonce)
|
|
|
|
require.NoError(err)
|
|
|
|
assert.Equal(challenge, out)
|
|
|
|
|
|
|
|
// Mark node as intialized. We should still be abe to validate
|
2022-08-17 13:50:43 +02:00
|
|
|
assert.NoError(vtpm.MarkNodeAsBootstrapped(vtpm.OpenVTPM, []byte("Test")))
|
2022-03-22 16:03:15 +01:00
|
|
|
|
|
|
|
attDocRaw, err = issuer.Issue(challenge, nonce)
|
|
|
|
assert.NoError(err)
|
|
|
|
|
|
|
|
// Make sure the PCR changed
|
|
|
|
err = json.Unmarshal(attDocRaw, &attDoc)
|
|
|
|
require.NoError(err)
|
|
|
|
assert.NotEqual(originalPCR, attDoc.Attestation.Quotes[1].Pcrs.Pcrs[uint32(vtpm.PCRIndexOwnerID)])
|
|
|
|
|
|
|
|
out, err = validator.Validate(attDocRaw, nonce)
|
|
|
|
require.NoError(err)
|
|
|
|
assert.Equal(challenge, out)
|
|
|
|
}
|