Skip to content

Commit

Permalink
fix: deterministic java purls (#2170)
Browse files Browse the repository at this point in the history
Previously, which PURL was generated depended on the order of key iteration
in maps. Also update an integ test that was apparently only passing because
of the previous issue.

Signed-off-by: Will Murphy <[email protected]>
  • Loading branch information
willmurphyscode authored Sep 25, 2023
1 parent 8314c0d commit e34adea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions syft/pkg/cataloger/common/cpe/java.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package cpe

import (
"sort"
"strings"

"github.com/scylladb/go-set/strset"
Expand Down Expand Up @@ -287,6 +288,7 @@ func GetManifestFieldGroupIDs(manifest *pkg.JavaManifest, fields []string) (grou
}
}
}
sort.Strings(groupIDs)

return groupIDs
}
Expand Down
1 change: 1 addition & 0 deletions syft/pkg/cataloger/common/cpe/java_groupid_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ var DefaultArtifactIDToGroupID = map[string]string{
"ant-weblogic": "org.apache.ant",
"ant-xz": "org.apache.ant",
"commons-codec": "commons-codec",
"commons-logging": "commons-logging", // see e.g. https://mvnrepository.com/artifact/commons-logging/commons-logging/1.1.1
"okhttp": "com.squareup.okhttp3",
"okio": "com.squareup.okio",
"spring": "org.springframework",
Expand Down
6 changes: 3 additions & 3 deletions test/integration/java_purl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ var expectedPURLs = map[string]string{
"[email protected]": "pkg:maven/org.jvnet.hudson/[email protected]",
"[email protected]": "pkg:maven/commons-lang/[email protected]",
"[email protected]": "pkg:maven/commons-lang/[email protected]",
"[email protected]": "pkg:maven/org.apache.commons.logging/[email protected]",
"[email protected]": "pkg:maven/org.apache.commons.logging/[email protected]",
"[email protected]": "pkg:maven/commons-logging/[email protected]",
"[email protected]": "pkg:maven/commons-logging/[email protected]", // see https://mvnrepository.com/artifact/commons-logging/commons-logging/1.0.4
"[email protected]": "pkg:maven/commons-logging/[email protected]", // see https://mvnrepository.com/artifact/commons-logging/commons-logging/1.1
"[email protected]": "pkg:maven/commons-logging/[email protected]", // see https://mvnrepository.com/artifact/commons-logging/commons-logging/1.1.1
"[email protected]": "pkg:maven/commons-pool/[email protected]",
"[email protected]": "pkg:maven/org.jvnet.hudson/[email protected]",
"[email protected]": "pkg:maven/org.jvnet.hudson.plugins/[email protected]",
Expand Down

0 comments on commit e34adea

Please sign in to comment.