2022-03-22 11:03:15 -04:00
|
|
|
//go:build gcp
|
|
|
|
|
|
|
|
package gcp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"testing"
|
|
|
|
|
2022-06-01 09:08:42 -04:00
|
|
|
"github.com/edgelesssys/constellation/internal/attestation/vtpm"
|
2022-03-22 11:03:15 -04:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
2022-06-30 09:24:36 -04:00
|
|
|
"go.uber.org/goleak"
|
2022-03-22 11:03:15 -04:00
|
|
|
)
|
|
|
|
|
2022-06-30 09:24:36 -04:00
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
goleak.VerifyTestMain(m)
|
|
|
|
}
|
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
func TestAttestation(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
require := require.New(t)
|
2022-08-17 07:50:43 -04:00
|
|
|
PCR0 := []byte{0x0f, 0x35, 0xc2, 0x14, 0x60, 0x8d, 0x93, 0xc7, 0xa6, 0xe6, 0x8a, 0xe7, 0x35, 0x9b, 0x4a, 0x8b, 0xe5, 0xa0, 0xe9, 0x9e, 0xea, 0x91, 0x07, 0xec, 0xe4, 0x27, 0xc4, 0xde, 0xa4, 0xe4, 0x39, 0xcf}
|
2022-03-22 11:03:15 -04:00
|
|
|
|
|
|
|
issuer := NewIssuer()
|
2022-08-17 07:50:43 -04:00
|
|
|
validator := NewValidator(map[uint32][]byte{0: PCR0}, nil)
|
2022-03-22 11:03:15 -04: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)
|
|
|
|
assert.NoError(err)
|
|
|
|
assert.Equal(challenge, out)
|
|
|
|
|
|
|
|
// Mark node as intialized. We should still be abe to validate
|
2022-08-17 07:50:43 -04:00
|
|
|
assert.NoError(vtpm.MarkNodeAsBootstrapped(vtpm.OpenVTPM, []byte("Test")))
|
2022-03-22 11:03:15 -04: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)
|
|
|
|
assert.NoError(err)
|
|
|
|
assert.Equal(challenge, out)
|
|
|
|
}
|