aboutsummaryrefslogtreecommitdiff
path: root/trillian_test.go
blob: 1b0c923dbad8d44ff478aa6032ec023c1cc93cc4 (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
package stfe

import (
	"fmt"
	"testing"

	"github.com/google/trillian"
	ttypes "github.com/google/trillian/types"
	"github.com/system-transparency/stfe/testdata"
	"github.com/system-transparency/stfe/types"
)

func TestCheckQueueLeaf(t *testing.T) {
	for _, table := range []struct {
		description string
		rsp         *trillian.QueueLeafResponse
		err         error
		wantErr     bool
	}{
		{
			description: "invalid: no Trillian response: error",
			err:         fmt.Errorf("backend error"),
			wantErr:     true,
		},
		{
			description: "invalid: no Trillian response: nil",
			wantErr:     true,
		},
		{
			description: "invalid: no Trillian response: empty",
			rsp:         &trillian.QueueLeafResponse{},
			wantErr:     true,
		},
		{
			description: "valid: gRPC status: duplicate",
			rsp:         testdata.DefaultTQlr(t, true),
		},
		{
			description: "valid: gRPC status: ok",
			rsp:         testdata.DefaultTQlr(t, false),
		},
	} {
		err := checkQueueLeaf(table.rsp, table.err)
		if got, want := err != nil, table.wantErr; got != want {
			t.Errorf("got error %v but wanted %v in test %q", got, want, table.description)
		}
	}
}

func TestCheckGetLeavesByRange(t *testing.T) {
	for _, table := range []struct {
		description string
		req         *types.GetEntriesV1
		rsp         *trillian.GetLeavesByRangeResponse
		err         error
		wantErr     bool
	}{
		{
			description: "invalid: no Trillian response: error",
			req:         &types.GetEntriesV1{Start: 0, End: 1},
			err:         fmt.Errorf("backend error"),
			wantErr:     true,
		},
		{
			description: "invalid: no Trillian response: nil",
			req:         &types.GetEntriesV1{Start: 0, End: 1},
			wantErr:     true,
		},
		{
			description: "invalid: bad Trillian response: no leaves",
			req:         &types.GetEntriesV1{Start: 0, End: 1},
			rsp: func(rsp *trillian.GetLeavesByRangeResponse) *trillian.GetLeavesByRangeResponse {
				rsp.Leaves = nil
				return rsp
			}(testdata.DefaultTGlbrr(t, 0, 1)),
			wantErr: true,
		},
		{
			description: "invalid: bad Trillian response: no signed log root",
			req:         &types.GetEntriesV1{Start: 0, End: 1},
			rsp: func(rsp *trillian.GetLeavesByRangeResponse) *trillian.GetLeavesByRangeResponse {
				rsp.SignedLogRoot = nil
				return rsp
			}(testdata.DefaultTGlbrr(t, 0, 1)),
			wantErr: true,
		},
		{
			description: "invalid: bad Trillian response: no log root",
			req:         &types.GetEntriesV1{Start: 0, End: 1},
			rsp: func(rsp *trillian.GetLeavesByRangeResponse) *trillian.GetLeavesByRangeResponse {
				rsp.SignedLogRoot.LogRoot = nil
				return rsp
			}(testdata.DefaultTGlbrr(t, 0, 1)),
			wantErr: true,
		},
		{
			description: "invalid: bad Trillian response: truncated log root",
			req:         &types.GetEntriesV1{Start: 0, End: 1},
			rsp: func(rsp *trillian.GetLeavesByRangeResponse) *trillian.GetLeavesByRangeResponse {
				rsp.SignedLogRoot.LogRoot = rsp.SignedLogRoot.LogRoot[1:]
				return rsp
			}(testdata.DefaultTGlbrr(t, 0, 1)),
			wantErr: true,
		},
		{
			description: "invalid: bad Trillian response: too many leaves",
			req:         &types.GetEntriesV1{Start: 0, End: 1},
			rsp:         testdata.DefaultTGlbrr(t, 0, 2),
			wantErr:     true,
		},
		{
			description: "invalid: bad Trillian response: start is not a valid index",
			req:         &types.GetEntriesV1{Start: 10, End: 10},
			rsp:         testdata.DefaultTGlbrr(t, 9, 9),
			wantErr:     true,
		},
		{
			description: "invalid: bad Trillian response: invalid leaf indices",
			req:         &types.GetEntriesV1{Start: 10, End: 11},
			rsp:         testdata.DefaultTGlbrr(t, 11, 12),
			wantErr:     true,
		},
		{
			description: "valid",
			req:         &types.GetEntriesV1{Start: 10, End: 20},
			rsp:         testdata.DefaultTGlbrr(t, 10, 20),
		},
	} {
		err := checkGetLeavesByRange(table.req, table.rsp, table.err)
		if got, want := err != nil, table.wantErr; got != want {
			t.Errorf("got error %v but wanted %v in test %q", got, want, table.description)
		}
	}
}

func TestCheckGetInclusionProofByHash(t *testing.T) {
	for _, table := range []struct {
		description string
		rsp         *trillian.GetInclusionProofByHashResponse
		err         error
		wantErr     bool
	}{
		{
			description: "invalid: no Trillian response: error",
			err:         fmt.Errorf("backend failure"),
			wantErr:     true,
		},
		{
			description: "invalid: no Trillian response: nil",
			wantErr:     true,
		},
		{
			description: "invalid: bad Trillian response: no proofs",
			rsp:         &trillian.GetInclusionProofByHashResponse{},
			wantErr:     true,
		},
		{
			description: "bad response: no proof",
			rsp: func(rsp *trillian.GetInclusionProofByHashResponse) *trillian.GetInclusionProofByHashResponse {
				rsp.Proof[0] = nil
				return rsp
			}(testdata.DefaultTGipbhr(t)),
			wantErr: true,
		},
		{
			description: "bad response: proof with invalid node hash",
			rsp: func(rsp *trillian.GetInclusionProofByHashResponse) *trillian.GetInclusionProofByHashResponse {
				rsp.Proof[0].Hashes = append(rsp.Proof[0].Hashes, make([]byte, 0))
				return rsp
			}(testdata.DefaultTGipbhr(t)),
			wantErr: true,
		},
		{
			description: "valid",
			rsp:         testdata.DefaultTGipbhr(t),
		},
	} {
		err := checkGetInclusionProofByHash(newLogParameters(t, nil), table.rsp, table.err)
		if got, want := err != nil, table.wantErr; got != want {
			t.Errorf("got error %v but wanted %v in test %q", got, want, table.description)
		}
	}
}

func TestCheckGetConsistencyProof(t *testing.T) {
	for _, table := range []struct {
		description string
		rsp         *trillian.GetConsistencyProofResponse
		err         error
		wantErr     bool
	}{
		{
			description: "invalid: no Trillian response: error",
			err:         fmt.Errorf("backend failure"),
			wantErr:     true,
		},
		{
			description: "invalid: no Trillian response: nil",
			wantErr:     true,
		},
		{
			description: "invalid: bad Trillian response: no proof",
			rsp:         &trillian.GetConsistencyProofResponse{},
			wantErr:     true,
		},
		{
			description: "invalid: bad Trillian response: proof with invalid node hash",
			rsp: func(rsp *trillian.GetConsistencyProofResponse) *trillian.GetConsistencyProofResponse {
				rsp.Proof.Hashes = append(rsp.Proof.Hashes, make([]byte, 0))
				return rsp
			}(testdata.DefaultTGcpr(t)),
			wantErr: true,
		},
		{
			description: "valid",
			rsp:         testdata.DefaultTGcpr(t),
		},
	} {
		err := checkGetConsistencyProof(newLogParameters(t, nil), table.rsp, table.err)
		if got, want := err != nil, table.wantErr; got != want {
			t.Errorf("got error %v but wanted %v in test %q", got, want, table.description)
		}
	}
}

func TestCheckGetLatestSignedLogRoot(t *testing.T) {
	for _, table := range []struct {
		description string
		rsp         *trillian.GetLatestSignedLogRootResponse
		err         error
		wantErr     bool
	}{
		{
			description: "invalid: no Trillian response: error",
			err:         fmt.Errorf("backend failure"),
			wantErr:     true,
		},
		{
			description: "invalid: no Trillian response: nil",
			wantErr:     true,
		},
		{
			description: "invalid: bad Trillian response: no signed log root",
			rsp: func(rsp *trillian.GetLatestSignedLogRootResponse) *trillian.GetLatestSignedLogRootResponse {
				rsp.SignedLogRoot = nil
				return rsp
			}(testdata.DefaultTSlr(t)),
			wantErr: true,
		},
		{
			description: "invalid: bad Trillian response: no log root",
			rsp: func(rsp *trillian.GetLatestSignedLogRootResponse) *trillian.GetLatestSignedLogRootResponse {
				rsp.SignedLogRoot.LogRoot = nil
				return rsp
			}(testdata.DefaultTSlr(t)),
			wantErr: true,
		},
		{
			description: "invalid: bad Trillian response: truncated log root",
			rsp: func(rsp *trillian.GetLatestSignedLogRootResponse) *trillian.GetLatestSignedLogRootResponse {
				rsp.SignedLogRoot.LogRoot = rsp.SignedLogRoot.LogRoot[1:]
				return rsp
			}(testdata.DefaultTSlr(t)),
			wantErr: true,
		},
		{
			description: "invalid: bad Trillian response: truncated root hash",
			rsp:         testdata.Tslr(t, testdata.Tlr(t, testdata.TreeSize, testdata.Timestamp, make([]byte, 31))),
			wantErr:     true,
		},
		{
			description: "valid",
			rsp:         testdata.DefaultTSlr(t),
		},
	} {
		var lr ttypes.LogRootV1
		err := checkGetLatestSignedLogRoot(newLogParameters(t, nil), table.rsp, table.err, &lr)
		if got, want := err != nil, table.wantErr; got != want {
			t.Errorf("got error %v but wanted %v in test %q", got, want, table.description)
		}
	}
}