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
|
package gitlab
import (
"bytes"
"encoding/json"
"io"
"net/http"
"os"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestCreateDependencyListExport(t *testing.T) {
mux, client := setup(t)
mux.HandleFunc("/api/v4/pipelines/1234/dependency_list_exports", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodPost)
body, err := io.ReadAll(r.Body)
require.NoError(t, err)
var content CreateDependencyListExportOptions
err = json.Unmarshal(body, &content)
require.NoError(t, err)
assert.Equal(t, "sbom", *content.ExportType)
mustWriteHTTPResponse(t, w, "testdata/create_dependency_list_export.json")
})
d := &CreateDependencyListExportOptions{
ExportType: Ptr("sbom"),
}
export, _, err := client.DependencyListExport.CreateDependencyListExport(1234, d)
require.NoError(t, err)
want := &DependencyListExport{
ID: 5678,
HasFinished: false,
Self: "http://gitlab.example.com/api/v4/dependency_list_exports/5678",
Download: "http://gitlab.example.com/api/v4/dependency_list_exports/5678/download",
}
require.Equal(t, want, export)
}
func TestGetDependencyListExport(t *testing.T) {
mux, client := setup(t)
mux.HandleFunc("/api/v4/dependency_list_exports/5678", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
mustWriteHTTPResponse(t, w, "testdata/get_dependency_list_export.json")
})
export, _, err := client.DependencyListExport.GetDependencyListExport(5678)
require.NoError(t, err)
want := &DependencyListExport{
ID: 5678,
HasFinished: true,
Self: "http://gitlab.example.com/api/v4/dependency_list_exports/5678",
Download: "http://gitlab.example.com/api/v4/dependency_list_exports/5678/download",
}
require.Equal(t, want, export)
}
func TestDownloadDependencyListExport(t *testing.T) {
mux, client := setup(t)
mux.HandleFunc("/api/v4/dependency_list_exports/5678/download", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
mustWriteHTTPResponse(t, w, "testdata/download_dependency_list_export.json")
})
sbomReader, _, err := client.DependencyListExport.DownloadDependencyListExport(5678)
require.NoError(t, err)
expectedSbom, err := os.ReadFile("testdata/download_dependency_list_export.json")
require.NoError(t, err)
var want bytes.Buffer
want.Write(expectedSbom)
require.Equal(t, &want, sbomReader)
}
|