-
Notifications
You must be signed in to change notification settings - Fork 587
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Unmarshal Syft JSON with missing metadata (#1338)
- Loading branch information
Showing
4 changed files
with
67 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ package cyclonedxhelpers | |
|
||
import ( | ||
"fmt" | ||
"reflect" | ||
"testing" | ||
|
||
"github.com/CycloneDX/cyclonedx-go" | ||
|
@@ -200,6 +201,7 @@ func Test_decodeComponent(t *testing.T) { | |
component cyclonedx.Component | ||
wantLanguage pkg.Language | ||
wantMetadataType pkg.MetadataType | ||
wantMetadata interface{} | ||
}{ | ||
{ | ||
name: "derive language from pURL if missing", | ||
|
@@ -213,7 +215,7 @@ func Test_decodeComponent(t *testing.T) { | |
wantLanguage: pkg.Java, | ||
}, | ||
{ | ||
name: "handle existing RpmdbMetadata type", | ||
name: "handle RpmdbMetadata type without properties", | ||
component: cyclonedx.Component{ | ||
Name: "acl", | ||
Version: "2.2.53-1.el8", | ||
|
@@ -228,6 +230,31 @@ func Test_decodeComponent(t *testing.T) { | |
}, | ||
}, | ||
wantMetadataType: pkg.RpmMetadataType, | ||
wantMetadata: pkg.RpmMetadata{}, | ||
}, | ||
{ | ||
name: "handle RpmdbMetadata type with properties", | ||
component: cyclonedx.Component{ | ||
Name: "acl", | ||
Version: "2.2.53-1.el8", | ||
PackageURL: "pkg:rpm/centos/[email protected]?arch=x86_64&upstream=acl-2.2.53-1.el8.src.rpm&distro=centos-8", | ||
Type: "library", | ||
BOMRef: "pkg:rpm/centos/[email protected]?arch=x86_64&upstream=acl-2.2.53-1.el8.src.rpm&distro=centos-8", | ||
Properties: &[]cyclonedx.Property{ | ||
{ | ||
Name: "syft:package:metadataType", | ||
Value: "RpmMetadata", | ||
}, | ||
{ | ||
Name: "syft:metadata:release", | ||
Value: "some-release", | ||
}, | ||
}, | ||
}, | ||
wantMetadataType: pkg.RpmMetadataType, | ||
wantMetadata: pkg.RpmMetadata{ | ||
Release: "some-release", | ||
}, | ||
}, | ||
} | ||
|
||
|
@@ -240,6 +267,9 @@ func Test_decodeComponent(t *testing.T) { | |
if tt.wantMetadataType != "" { | ||
assert.Equal(t, tt.wantMetadataType, p.MetadataType) | ||
} | ||
if tt.wantMetadata != nil { | ||
assert.Truef(t, reflect.DeepEqual(tt.wantMetadata, p.Metadata), "metadata should match: %+v != %+v", tt.wantMetadata, p.Metadata) | ||
} | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters