|
| 1 | +// |
| 2 | +// Copyright 2024 The Sigstore Authors. |
| 3 | +// |
| 4 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +// you may not use this file except in compliance with the License. |
| 6 | +// You may obtain a copy of the License at |
| 7 | +// |
| 8 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +// |
| 10 | +// Unless required by applicable law or agreed to in writing, software |
| 11 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +// See the License for the specific language governing permissions and |
| 14 | +// limitations under the License. |
| 15 | + |
| 16 | +//go:build e2e |
| 17 | + |
| 18 | +package hashedrekord |
| 19 | + |
| 20 | +import ( |
| 21 | + "bytes" |
| 22 | + "context" |
| 23 | + "crypto" |
| 24 | + "crypto/ecdsa" |
| 25 | + "crypto/elliptic" |
| 26 | + "crypto/rand" |
| 27 | + "os" |
| 28 | + "testing" |
| 29 | + "time" |
| 30 | + |
| 31 | + "github.com/sigstore/rekor/pkg/client" |
| 32 | + "github.com/sigstore/rekor/pkg/generated/client/entries" |
| 33 | + "github.com/sigstore/rekor/pkg/types" |
| 34 | + "github.com/sigstore/sigstore/pkg/cryptoutils" |
| 35 | + "github.com/sigstore/sigstore/pkg/signature" |
| 36 | +) |
| 37 | + |
| 38 | +func rekorServer() string { |
| 39 | + if s := os.Getenv("REKOR_SERVER"); s != "" { |
| 40 | + return s |
| 41 | + } |
| 42 | + return "http://localhost:3000" |
| 43 | +} |
| 44 | + |
| 45 | +// TestSHA256HashedRekordEntry tests sending a valid HashedRekord proposed entry. |
| 46 | +func TestSHA256HashedRekordEntry(t *testing.T) { |
| 47 | + privKey, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader) |
| 48 | + if err != nil { |
| 49 | + t.Fatalf("error generating key: %v", err) |
| 50 | + } |
| 51 | + pubBytes, err := cryptoutils.MarshalPublicKeyToPEM(privKey.Public()) |
| 52 | + if err != nil { |
| 53 | + t.Fatalf("error marshaling public key: %v", err) |
| 54 | + } |
| 55 | + |
| 56 | + data := []byte("data") |
| 57 | + signer, err := signature.LoadSigner(privKey, crypto.SHA256) |
| 58 | + if err != nil { |
| 59 | + t.Fatalf("error loading verifier: %v", err) |
| 60 | + } |
| 61 | + signature, err := signer.SignMessage(bytes.NewReader(data)) |
| 62 | + if err != nil { |
| 63 | + t.Fatalf("error signing message: %v", err) |
| 64 | + } |
| 65 | + |
| 66 | + ap := types.ArtifactProperties{ |
| 67 | + ArtifactBytes: []byte("data"), |
| 68 | + ArtifactHash: "sha256:3a6eb0790f39ac87c94f3856b2dd2c5d110e6811602261a9a923d3bb23adc8b7", |
| 69 | + PublicKeyBytes: [][]byte{pubBytes}, |
| 70 | + PKIFormat: "x509", |
| 71 | + SignatureBytes: signature, |
| 72 | + } |
| 73 | + |
| 74 | + ei := NewEntry() |
| 75 | + |
| 76 | + entry, err := ei.CreateFromArtifactProperties(context.Background(), ap) |
| 77 | + if err != nil { |
| 78 | + t.Fatalf("error creating entry: %v", err) |
| 79 | + } |
| 80 | + |
| 81 | + rc, err := client.GetRekorClient(rekorServer()) |
| 82 | + if err != nil { |
| 83 | + t.Errorf("error getting client: %v", err) |
| 84 | + } |
| 85 | + |
| 86 | + params := &entries.CreateLogEntryParams{} |
| 87 | + params.SetProposedEntry(entry) |
| 88 | + params.SetContext(context.Background()) |
| 89 | + params.SetTimeout(5 * time.Second) |
| 90 | + |
| 91 | + if _, err = rc.Entries.CreateLogEntry(params); err != nil { |
| 92 | + t.Fatalf("expected no errors when submitting hashedrekord entry with sha256 to rekor %s", err) |
| 93 | + } |
| 94 | +} |
0 commit comments