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 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
// Copyright The Notary Project Authors.
// 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 tspclient
import (
"context"
"crypto/x509"
"errors"
"fmt"
"os"
"testing"
"time"
"github.com/notaryproject/tspclient-go/internal/oid"
)
func TestParseSignedToken(t *testing.T) {
timestampToken, err := os.ReadFile("testdata/TimeStampTokenWithInvalideContentType.p7s")
if err != nil {
t.Fatal(err)
}
expectedErrMsg := fmt.Sprintf("unexpected content type: %v", oid.Data)
_, err = ParseSignedToken(timestampToken)
if err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
}
func TestVerify(t *testing.T) {
timestampToken, err := getTimestampTokenFromPath("testdata/TimeStampToken.p7s")
if err != nil {
t.Fatal(err)
}
roots := x509.NewCertPool()
rootCABytes, err := os.ReadFile("testdata/GlobalSignRootCA.crt")
if err != nil {
t.Fatal("failed to read root CA certificate:", err)
}
if ok := roots.AppendCertsFromPEM(rootCABytes); !ok {
t.Fatal("failed to load root CA certificate")
}
opts := x509.VerifyOptions{
Roots: roots,
}
if _, err := timestampToken.Verify(context.Background(), opts); err != nil {
t.Fatalf("expected nil error, but got %v", err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampTokenWithValidAndInvalidSignerInfos.p7s")
if err != nil {
t.Fatal(err)
}
if _, err := timestampToken.Verify(context.Background(), opts); err != nil {
t.Fatalf("expected nil error, but got %v", err)
}
timestampToken = &SignedToken{}
expectedErrMsg := "failed to verify signed token: signerInfo not found"
if _, err := timestampToken.Verify(context.Background(), opts); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampTokenWithoutCertificate.p7s")
if err != nil {
t.Fatal(err)
}
expectedErrMsg = "failed to verify signed token: signing certificate not found in the timestamp token"
if _, err := timestampToken.Verify(context.Background(), opts); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampTokenWithInvalidSignature.p7s")
if err != nil {
t.Fatal(err)
}
expectedErrMsg = "failed to verify signed token: cms verification failure: crypto/rsa: verification error"
if _, err := timestampToken.Verify(context.Background(), opts); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampToken.p7s")
if err != nil {
t.Fatal(err)
}
expectedErrMsg = "failed to verify signed token: tsa root certificate pool cannot be nil"
if _, err := timestampToken.Verify(context.Background(), x509.VerifyOptions{}); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected %s, but got %s", expectedErrMsg, err)
}
}
func TestInfo(t *testing.T) {
timestampToken, err := getTimestampTokenFromPath("testdata/TimeStampTokenWithInvalidTSTInfo.p7s")
if err != nil {
t.Fatal(err)
}
expectedErrMsg := "cannot unmarshal TSTInfo from timestamp token: asn1: structure error: tags don't match (23 vs {class:0 tag:16 length:3 isCompound:true}) {optional:false explicit:false application:false private:false defaultValue:<nil> tag:<nil> stringType:0 timeType:24 set:false omitEmpty:false} Time @89"
if _, err := timestampToken.Info(); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
}
func TestGetSigningCertificate(t *testing.T) {
timestampToken, err := getTimestampTokenFromPath("testdata/TimeStampTokenWithoutSigningCertificate.p7s")
if err != nil {
t.Fatal(err)
}
expectedErrMsg := "failed to get SigningCertificateV2 from signed attributes: attribute not found"
if _, err := timestampToken.SigningCertificate(×tampToken.SignerInfos[0]); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampTokenWithWrongSigningCertificateV2IssuerChoiceTag.p7s")
if err != nil {
t.Fatal(err)
}
expectedErrMsg = "issuer name is missing in IssuerSerial"
if _, err := timestampToken.SigningCertificate(×tampToken.SignerInfos[0]); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampTokenWithoutSigningCertificateV2IssuerSerial.p7s")
if err != nil {
t.Fatal(err)
}
if _, err := timestampToken.SigningCertificate(×tampToken.SignerInfos[0]); err != nil {
t.Fatalf("expected nil error, but got %v", err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampTokenWithoutCertificate.p7s")
if err != nil {
t.Fatal(err)
}
expectedErrMsg = "signing certificate not found in the timestamp token"
if _, err := timestampToken.SigningCertificate(×tampToken.SignerInfos[0]); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampTokenWithSHA1CertHash.p7s")
if err != nil {
t.Fatal(err)
}
expectedErrMsg = "unsupported certificate hash algorithm in SigningCertificateV2 attribute"
if _, err := timestampToken.SigningCertificate(×tampToken.SignerInfos[0]); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampTokenWithMismatchCertHash.p7s")
if err != nil {
t.Fatal(err)
}
expectedErrMsg = "signing certificate hash does not match CertHash in signed attribute"
if _, err := timestampToken.SigningCertificate(×tampToken.SignerInfos[0]); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampTokenWithInvalidSigningCertificateV2.p7s")
if err != nil {
t.Fatal(err)
}
expectedErrMsg = "failed to get SigningCertificateV2 from signed attributes: asn1: syntax error: sequence truncated"
if _, err := timestampToken.SigningCertificate(×tampToken.SignerInfos[0]); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampTokenWithSigningCertificateV2NoCert.p7s")
if err != nil {
t.Fatal(err)
}
expectedErrMsg = "signingCertificateV2 does not contain any certificate"
if _, err := timestampToken.SigningCertificate(×tampToken.SignerInfos[0]); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampTokenWithSigningCertificateV1.p7s")
if err != nil {
t.Fatal(err)
}
expectedErrMsg = "failed to get SigningCertificateV2 from signed attributes: attribute not found"
if _, err := timestampToken.SigningCertificate(×tampToken.SignerInfos[0]); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
}
func TestValidate(t *testing.T) {
timestampToken, err := getTimestampTokenFromPath("testdata/TimeStampToken.p7s")
if err != nil {
t.Fatal(err)
}
tstInfo, err := timestampToken.Info()
if err != nil {
t.Fatal(err)
}
expectedErrMsg := "invalid TSTInfo: mismatched message"
if _, err := tstInfo.Validate([]byte("invalid")); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampToken.p7s")
if err != nil {
t.Fatal(err)
}
tstInfo, err = timestampToken.Info()
if err != nil {
t.Fatal(err)
}
timestamp, err := tstInfo.Validate([]byte("notation"))
if err != nil {
t.Fatalf("expected nil error, but got %v", err)
}
expectedTimestampValue := time.Date(2021, time.September, 17, 14, 9, 10, 0, time.UTC)
expectedTimestampAccuracy := time.Second
if timestamp.Value != expectedTimestampValue {
t.Fatalf("expected timestamp value %s, but got %s", expectedTimestampValue, timestamp.Value)
}
if timestamp.Accuracy != expectedTimestampAccuracy {
t.Fatalf("expected timestamp accuracy %s, but got %s", expectedTimestampAccuracy, timestamp.Accuracy)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampToken.p7s")
if err != nil {
t.Fatal(err)
}
tstInfo, err = timestampToken.Info()
if err != nil {
t.Fatal(err)
}
tstInfo.Accuracy = Accuracy{}
tstInfo.Policy = oid.BaselineTimestampPolicy
timestamp, err = tstInfo.Validate([]byte("notation"))
if err != nil {
t.Fatalf("expected nil error, but got %v", err)
}
if timestamp.Value != expectedTimestampValue {
t.Fatalf("expected timestamp value %s, but got %s", expectedTimestampValue, timestamp.Value)
}
if timestamp.Accuracy != expectedTimestampAccuracy {
t.Fatalf("expected timestamp accuracy %s, but got %s", expectedTimestampAccuracy, timestamp.Accuracy)
}
}
func TestValidateInfo(t *testing.T) {
message := []byte("notation")
var tstInfoErr *TSTInfoError
var tstInfo *TSTInfo
expectedErrMsg := "invalid TSTInfo: timestamp token info cannot be nil"
err := tstInfo.validate(message)
if err == nil || !errors.As(err, &tstInfoErr) || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err := getTimestampTokenFromPath("testdata/TimeStampTokenWithTSTInfoVersion2.p7s")
if err != nil {
t.Fatal(err)
}
tstInfo, err = timestampToken.Info()
if err != nil {
t.Fatal(err)
}
expectedErrMsg = "invalid TSTInfo: timestamp token info version must be 1, but got 2"
err = tstInfo.validate(message)
if err == nil || !errors.As(err, &tstInfoErr) || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/SHA1TimeStampToken.p7s")
if err != nil {
t.Fatal(err)
}
tstInfo, err = timestampToken.Info()
if err != nil {
t.Fatal(err)
}
expectedErrMsg = "invalid TSTInfo: unrecognized hash algorithm: 1.2.840.113549.1.1.5"
if err := tstInfo.validate(message); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampToken.p7s")
if err != nil {
t.Fatal(err)
}
tstInfo, err = timestampToken.Info()
if err != nil {
t.Fatal(err)
}
expectedErrMsg = "invalid TSTInfo: mismatched message"
if err := tstInfo.validate([]byte("invalid")); err == nil || err.Error() != expectedErrMsg {
t.Fatalf("expected error %s, but got %v", expectedErrMsg, err)
}
timestampToken, err = getTimestampTokenFromPath("testdata/TimeStampToken.p7s")
if err != nil {
t.Fatal(err)
}
tstInfo, err = timestampToken.Info()
if err != nil {
t.Fatal(err)
}
if err := tstInfo.validate(message); err != nil {
t.Fatalf("expected nil error, but got %v", err)
}
}
func getTimestampTokenFromPath(path string) (*SignedToken, error) {
timestampToken, err := os.ReadFile(path)
if err != nil {
return nil, err
}
return ParseSignedToken(timestampToken)
}
|