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
|
// Copyright 2024 The Tessera authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package parse_test
import (
"bytes"
"encoding/base64"
"testing"
"github.com/transparency-dev/tessera/internal/parse"
)
func TestCheckpointUnsafe(t *testing.T) {
testCases := []struct {
desc string
cp string
wantOrigin string
wantSize uint64
wantHash []byte
wantErr bool
}{
{
desc: "happy checkpoint",
cp: "original.example.com\n42\nqINS1GRFhWHwdkUeqLEoP4yEMkTBBzxBkGwGQlVlVcs=\n",
wantOrigin: "original.example.com",
wantSize: 42,
wantHash: mustDecodeB64(t, "qINS1GRFhWHwdkUeqLEoP4yEMkTBBzxBkGwGQlVlVcs="),
},
{
desc: "Negative size",
cp: "original.example.com\n-42\nqINS1GRFhWHwdkUeqLEoP4yEMkTBBzxBkGwGQlVlVcs=\n",
wantErr: true,
},
{
desc: "Bad hash",
cp: "original.example.com\n42\nthisisnotright\n",
wantErr: true,
},
{
desc: "Empty origin",
cp: "\n42\nqINS1GRFhWHwdkUeqLEoP4yEMkTBBzxBkGwGQlVlVcs=\n",
wantOrigin: "",
wantSize: 42,
wantHash: mustDecodeB64(t, "qINS1GRFhWHwdkUeqLEoP4yEMkTBBzxBkGwGQlVlVcs="),
},
{
desc: "No origin",
cp: "42\nqINS1GRFhWHwdkUeqLEoP4yEMkTBBzxBkGwGQlVlVcs=\n",
wantErr: true,
},
}
for _, tC := range testCases {
t.Run(tC.desc, func(t *testing.T) {
origin, size, hash, err := parse.CheckpointUnsafe([]byte(tC.cp))
if gotErr := err != nil; gotErr != tC.wantErr {
t.Fatalf("gotErr != wantErr (%t != %t): %v", gotErr, tC.wantErr, err)
}
if tC.wantErr {
return
}
if tC.wantOrigin != origin {
t.Errorf("origin: got != want (%v != %v)", origin, tC.wantOrigin)
}
if tC.wantSize != size {
t.Errorf("size : got != want (%v != %v)", size, tC.wantSize)
}
if !bytes.Equal(tC.wantHash, hash) {
t.Errorf("hash : got != want (%v != %v)", hash, tC.wantHash)
}
})
}
}
func mustDecodeB64(t *testing.T, encoded string) []byte {
t.Helper()
res, err := base64.StdEncoding.DecodeString(encoded)
if err != nil {
t.Fatal(err)
}
return res
}
func BenchmarkCheckpointUnsafe(b *testing.B) {
cpRaw := []byte("go.sum database tree\n31700353\nqINS1GRFhWHwdkUeqLEoP4yEMkTBBzxBkGwGQlVlVcs=\n\n— sum.golang.org Az3grnmrIUEDFqHzAElIQCPNoRFRAAdFo47fooyWKMHb89k11GJh5zHIfNCOBmwn/C3YI8oW9/C8DJ87F61QqspBYwM=")
for b.Loop() {
_, _, _, err := parse.CheckpointUnsafe(cpRaw)
if err != nil {
b.Error(err)
}
}
}
|