mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
* split up sbom.Format into encode and decode ops Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * update cmd pkg to inject format configs Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * bump cyclonedx schema to 1.5 Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * redact image metadata from github encoder tests Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * add more testing around format decoder identify Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * add test case for format version options Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * fix cli tests Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * fix CLI test Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * [wip] - review comments Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * keep encoder creation out of post load function Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * keep decider and identify functions Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * add a few more doc comments Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * remove format encoder default function helpers Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * address PR feedback Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * move back to streaming based decode functions Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * with common convention for encoder constructors Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * fix tests and allow for encoders to be created from cli options Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * fix cli tests Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * fix linting Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * buffer reads from stdin to support seeking Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
130 lines
3.8 KiB
Go
130 lines
3.8 KiB
Go
package cyclonedxxml
|
|
|
|
import (
|
|
"bytes"
|
|
"flag"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/anchore/syft/syft/format/internal/testutil"
|
|
"github.com/anchore/syft/syft/sbom"
|
|
)
|
|
|
|
var updateSnapshot = flag.Bool("update-cyclonedx-xml", false, "update the *.golden files for cyclone-dx XML encoders")
|
|
var updateImage = flag.Bool("update-image", false, "update the golden image used for image encoder testing")
|
|
|
|
func getEncoder(t testing.TB) sbom.FormatEncoder {
|
|
enc, err := NewFormatEncoderWithConfig(DefaultEncoderConfig())
|
|
require.NoError(t, err)
|
|
return enc
|
|
}
|
|
|
|
func TestCycloneDxDirectoryEncoder(t *testing.T) {
|
|
dir := t.TempDir()
|
|
testutil.AssertEncoderAgainstGoldenSnapshot(t,
|
|
testutil.EncoderSnapshotTestConfig{
|
|
Subject: testutil.DirectoryInput(t, dir),
|
|
Format: getEncoder(t),
|
|
UpdateSnapshot: *updateSnapshot,
|
|
PersistRedactionsInSnapshot: true,
|
|
IsJSON: false,
|
|
Redactor: redactor(dir),
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestCycloneDxImageEncoder(t *testing.T) {
|
|
testImage := "image-simple"
|
|
testutil.AssertEncoderAgainstGoldenImageSnapshot(t,
|
|
testutil.ImageSnapshotTestConfig{
|
|
Image: testImage,
|
|
UpdateImageSnapshot: *updateImage,
|
|
},
|
|
testutil.EncoderSnapshotTestConfig{
|
|
Subject: testutil.ImageInput(t, testImage),
|
|
Format: getEncoder(t),
|
|
UpdateSnapshot: *updateSnapshot,
|
|
PersistRedactionsInSnapshot: true,
|
|
IsJSON: false,
|
|
Redactor: redactor(),
|
|
},
|
|
)
|
|
}
|
|
|
|
func redactor(values ...string) testutil.Redactor {
|
|
return testutil.NewRedactions().
|
|
WithValuesRedacted(values...).
|
|
WithPatternRedactors(
|
|
map[string]string{
|
|
// dates
|
|
`([0-9]+)-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])[Tt]([01][0-9]|2[0-3]):([0-5][0-9]):([0-5][0-9]|60)(\.[0-9]+)?(([Zz])|([+|\-]([01][0-9]|2[0-3]):[0-5][0-9]))`: `redacted`,
|
|
|
|
// image hashes and BOM refs
|
|
`sha256:[A-Za-z0-9]{64}`: `sha256:redacted`,
|
|
|
|
// serial numbers and BOM refs
|
|
`(serialNumber|bom-ref)="[^"]+"`: `$1="redacted"`,
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestSupportedVersions(t *testing.T) {
|
|
encs := defaultFormatEncoders()
|
|
require.NotEmpty(t, encs)
|
|
|
|
versions := SupportedVersions()
|
|
require.Equal(t, len(versions), len(encs))
|
|
|
|
subject := testutil.DirectoryInput(t, t.TempDir())
|
|
dec := NewFormatDecoder()
|
|
|
|
for _, enc := range encs {
|
|
t.Run(enc.Version(), func(t *testing.T) {
|
|
require.Contains(t, versions, enc.Version())
|
|
|
|
var buf bytes.Buffer
|
|
require.NoError(t, enc.Encode(&buf, subject))
|
|
|
|
id, version := dec.Identify(bytes.NewReader(buf.Bytes()))
|
|
require.Equal(t, enc.ID(), id)
|
|
require.Equal(t, enc.Version(), version)
|
|
|
|
var s *sbom.SBOM
|
|
var err error
|
|
s, id, version, err = dec.Decode(bytes.NewReader(buf.Bytes()))
|
|
require.NoError(t, err)
|
|
require.Equal(t, enc.ID(), id)
|
|
require.Equal(t, enc.Version(), version)
|
|
|
|
require.NotEmpty(t, s.Artifacts.Packages.PackageCount())
|
|
|
|
assert.Equal(t, len(subject.Relationships), len(s.Relationships), "mismatched relationship count")
|
|
|
|
if !assert.Equal(t, subject.Artifacts.Packages.PackageCount(), s.Artifacts.Packages.PackageCount(), "mismatched package count") {
|
|
t.Logf("expected: %d", subject.Artifacts.Packages.PackageCount())
|
|
for _, p := range subject.Artifacts.Packages.Sorted() {
|
|
t.Logf(" - %s", p.String())
|
|
}
|
|
t.Logf("actual: %d", s.Artifacts.Packages.PackageCount())
|
|
for _, p := range s.Artifacts.Packages.Sorted() {
|
|
t.Logf(" - %s", p.String())
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func defaultFormatEncoders() []sbom.FormatEncoder {
|
|
var encs []sbom.FormatEncoder
|
|
for _, version := range SupportedVersions() {
|
|
enc, err := NewFormatEncoderWithConfig(EncoderConfig{Version: version})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
encs = append(encs, enc)
|
|
}
|
|
return encs
|
|
}
|