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
|
// Copyright 2023 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package github
import (
"context"
"fmt"
"net/http"
"testing"
"time"
"github.com/google/go-cmp/cmp"
)
func TestDependencyGraphService_GetSBOM(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/repos/owner/repo/dependency-graph/sbom", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
fmt.Fprint(w, `{
"sbom":{
"creationInfo":{
"created":"2021-09-01T00:00:00Z"
},
"name":"owner/repo",
"packages":[
{
"name":"rubygems:rails",
"versionInfo":"1.0.0"
}
]
}
}`)
})
ctx := context.Background()
sbom, _, err := client.DependencyGraph.GetSBOM(ctx, "owner", "repo")
if err != nil {
t.Errorf("DependencyGraph.GetSBOM returned error: %v", err)
}
testTime := time.Date(2021, 9, 1, 0, 0, 0, 0, time.UTC)
want := &SBOM{
&SBOMInfo{
CreationInfo: &CreationInfo{
Created: &Timestamp{testTime},
},
Name: String("owner/repo"),
Packages: []*RepoDependencies{
{
Name: String("rubygems:rails"),
VersionInfo: String("1.0.0"),
},
},
},
}
if !cmp.Equal(sbom, want) {
t.Errorf("DependencyGraph.GetSBOM returned %+v, want %+v", sbom, want)
}
const methodName = "GetSBOM"
testBadOptions(t, methodName, func() (err error) {
_, _, err = client.DependencyGraph.GetSBOM(ctx, "\n", "\n")
return err
})
testNewRequestAndDoFailure(t, methodName, client, func() (*Response, error) {
got, resp, err := client.DependencyGraph.GetSBOM(ctx, "owner", "repo")
if got != nil {
t.Errorf("testNewRequestAndDoFailure %v = %#v, want nil", methodName, got)
}
return resp, err
})
}
|