-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswcomponents_test.go
59 lines (48 loc) · 1.21 KB
/
swcomponents_test.go
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
57
58
59
// Copyright 2024 Contributors to the Veraison project.
// SPDX-License-Identifier: Apache-2.0
package psatoken
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func Test_SwComponents_Validate(t *testing.T) {
scs := SwComponents[*SwComponent]{
values: []*SwComponent{
{
MeasurementValue: &testMeasurementValue,
SignerID: &testSignerID,
},
},
}
assert.NoError(t, scs.Validate())
scs = SwComponents[*SwComponent]{
values: []*SwComponent{
{
MeasurementValue: &testMeasurementValue,
},
},
}
err := scs.Validate()
assert.EqualError(t, err, "failed at index 0: signer ID: missing mandatory field")
}
func Test_SwComponents_Add(t *testing.T) {
scs := SwComponents[*SwComponent]{
values: []*SwComponent{
{
MeasurementValue: &testMeasurementValue,
SignerID: &testSignerID,
},
},
}
err := scs.Add(&SwComponent{
MeasurementValue: &testMeasurementValue,
SignerID: &testSignerID,
})
require.NoError(t, err)
assert.Len(t, scs.values, 2)
err = scs.Add(&SwComponent{
MeasurementValue: &testMeasurementValue,
})
assert.EqualError(t, err, "failed at index 0: signer ID: missing mandatory field")
}