mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
fix: dotnet PURL types are invalid (#1649)
Signed-off-by: Keith Zantow <kzantow@gmail.com>
This commit is contained in:
parent
c4cbe211a3
commit
304be4a5a1
@ -45,7 +45,17 @@ func packageURL(m pkg.DotnetDepsMetadata) string {
|
|||||||
var qualifiers packageurl.Qualifiers
|
var qualifiers packageurl.Qualifiers
|
||||||
|
|
||||||
return packageurl.NewPackageURL(
|
return packageurl.NewPackageURL(
|
||||||
packageurl.TypeDotnet,
|
// This originally was packageurl.TypeDotnet, but this isn't a valid PURL type, according to:
|
||||||
|
// https://github.com/package-url/purl-spec/blob/master/PURL-TYPES.rst
|
||||||
|
// Some history:
|
||||||
|
// https://github.com/anchore/packageurl-go/pull/8 added the type to Anchore's fork
|
||||||
|
// due to this PR: https://github.com/anchore/syft/pull/951
|
||||||
|
// There were questions about "dotnet" being the right purlType at the time, but it was
|
||||||
|
// acknowledged that scanning a dotnet file does not necessarily mean the packages found
|
||||||
|
// are nuget packages and so the alternate type was added. Since this is still an invalid
|
||||||
|
// PURL type, however, we will use TypeNuget and revisit at such time there is a better
|
||||||
|
// official PURL type available.
|
||||||
|
packageurl.TypeNuget,
|
||||||
"",
|
"",
|
||||||
m.Name,
|
m.Name,
|
||||||
m.Version,
|
m.Version,
|
||||||
|
|||||||
@ -16,7 +16,7 @@ func TestParseDotnetDeps(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Name: "AWSSDK.Core",
|
Name: "AWSSDK.Core",
|
||||||
Version: "3.7.10.6",
|
Version: "3.7.10.6",
|
||||||
PURL: "pkg:dotnet/AWSSDK.Core@3.7.10.6",
|
PURL: "pkg:nuget/AWSSDK.Core@3.7.10.6",
|
||||||
Locations: fixtureLocationSet,
|
Locations: fixtureLocationSet,
|
||||||
Language: pkg.Dotnet,
|
Language: pkg.Dotnet,
|
||||||
Type: pkg.DotnetPkg,
|
Type: pkg.DotnetPkg,
|
||||||
@ -32,7 +32,7 @@ func TestParseDotnetDeps(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Name: "Microsoft.Extensions.DependencyInjection.Abstractions",
|
Name: "Microsoft.Extensions.DependencyInjection.Abstractions",
|
||||||
Version: "6.0.0",
|
Version: "6.0.0",
|
||||||
PURL: "pkg:dotnet/Microsoft.Extensions.DependencyInjection.Abstractions@6.0.0",
|
PURL: "pkg:nuget/Microsoft.Extensions.DependencyInjection.Abstractions@6.0.0",
|
||||||
Locations: fixtureLocationSet,
|
Locations: fixtureLocationSet,
|
||||||
Language: pkg.Dotnet,
|
Language: pkg.Dotnet,
|
||||||
Type: pkg.DotnetPkg,
|
Type: pkg.DotnetPkg,
|
||||||
@ -48,7 +48,7 @@ func TestParseDotnetDeps(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Name: "Microsoft.Extensions.DependencyInjection",
|
Name: "Microsoft.Extensions.DependencyInjection",
|
||||||
Version: "6.0.0",
|
Version: "6.0.0",
|
||||||
PURL: "pkg:dotnet/Microsoft.Extensions.DependencyInjection@6.0.0",
|
PURL: "pkg:nuget/Microsoft.Extensions.DependencyInjection@6.0.0",
|
||||||
Locations: fixtureLocationSet,
|
Locations: fixtureLocationSet,
|
||||||
Language: pkg.Dotnet,
|
Language: pkg.Dotnet,
|
||||||
Type: pkg.DotnetPkg,
|
Type: pkg.DotnetPkg,
|
||||||
@ -64,7 +64,7 @@ func TestParseDotnetDeps(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Name: "Microsoft.Extensions.Logging.Abstractions",
|
Name: "Microsoft.Extensions.Logging.Abstractions",
|
||||||
Version: "6.0.0",
|
Version: "6.0.0",
|
||||||
PURL: "pkg:dotnet/Microsoft.Extensions.Logging.Abstractions@6.0.0",
|
PURL: "pkg:nuget/Microsoft.Extensions.Logging.Abstractions@6.0.0",
|
||||||
Locations: fixtureLocationSet,
|
Locations: fixtureLocationSet,
|
||||||
Language: pkg.Dotnet,
|
Language: pkg.Dotnet,
|
||||||
Type: pkg.DotnetPkg,
|
Type: pkg.DotnetPkg,
|
||||||
@ -80,7 +80,7 @@ func TestParseDotnetDeps(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Name: "Microsoft.Extensions.Logging",
|
Name: "Microsoft.Extensions.Logging",
|
||||||
Version: "6.0.0",
|
Version: "6.0.0",
|
||||||
PURL: "pkg:dotnet/Microsoft.Extensions.Logging@6.0.0",
|
PURL: "pkg:nuget/Microsoft.Extensions.Logging@6.0.0",
|
||||||
Locations: fixtureLocationSet,
|
Locations: fixtureLocationSet,
|
||||||
Language: pkg.Dotnet,
|
Language: pkg.Dotnet,
|
||||||
Type: pkg.DotnetPkg,
|
Type: pkg.DotnetPkg,
|
||||||
@ -97,7 +97,7 @@ func TestParseDotnetDeps(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Name: "Microsoft.Extensions.Options",
|
Name: "Microsoft.Extensions.Options",
|
||||||
Version: "6.0.0",
|
Version: "6.0.0",
|
||||||
PURL: "pkg:dotnet/Microsoft.Extensions.Options@6.0.0",
|
PURL: "pkg:nuget/Microsoft.Extensions.Options@6.0.0",
|
||||||
Locations: fixtureLocationSet,
|
Locations: fixtureLocationSet,
|
||||||
Language: pkg.Dotnet,
|
Language: pkg.Dotnet,
|
||||||
Type: pkg.DotnetPkg,
|
Type: pkg.DotnetPkg,
|
||||||
@ -113,7 +113,7 @@ func TestParseDotnetDeps(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Name: "Microsoft.Extensions.Primitives",
|
Name: "Microsoft.Extensions.Primitives",
|
||||||
Version: "6.0.0",
|
Version: "6.0.0",
|
||||||
PURL: "pkg:dotnet/Microsoft.Extensions.Primitives@6.0.0",
|
PURL: "pkg:nuget/Microsoft.Extensions.Primitives@6.0.0",
|
||||||
Locations: fixtureLocationSet,
|
Locations: fixtureLocationSet,
|
||||||
Language: pkg.Dotnet,
|
Language: pkg.Dotnet,
|
||||||
Type: pkg.DotnetPkg,
|
Type: pkg.DotnetPkg,
|
||||||
@ -129,7 +129,7 @@ func TestParseDotnetDeps(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Name: "Newtonsoft.Json",
|
Name: "Newtonsoft.Json",
|
||||||
Version: "13.0.1",
|
Version: "13.0.1",
|
||||||
PURL: "pkg:dotnet/Newtonsoft.Json@13.0.1",
|
PURL: "pkg:nuget/Newtonsoft.Json@13.0.1",
|
||||||
Locations: fixtureLocationSet,
|
Locations: fixtureLocationSet,
|
||||||
Language: pkg.Dotnet,
|
Language: pkg.Dotnet,
|
||||||
Type: pkg.DotnetPkg,
|
Type: pkg.DotnetPkg,
|
||||||
@ -145,7 +145,7 @@ func TestParseDotnetDeps(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Name: "Serilog.Sinks.Console",
|
Name: "Serilog.Sinks.Console",
|
||||||
Version: "4.0.1",
|
Version: "4.0.1",
|
||||||
PURL: "pkg:dotnet/Serilog.Sinks.Console@4.0.1",
|
PURL: "pkg:nuget/Serilog.Sinks.Console@4.0.1",
|
||||||
Locations: fixtureLocationSet,
|
Locations: fixtureLocationSet,
|
||||||
Language: pkg.Dotnet,
|
Language: pkg.Dotnet,
|
||||||
Type: pkg.DotnetPkg,
|
Type: pkg.DotnetPkg,
|
||||||
@ -161,7 +161,7 @@ func TestParseDotnetDeps(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Name: "Serilog",
|
Name: "Serilog",
|
||||||
Version: "2.10.0",
|
Version: "2.10.0",
|
||||||
PURL: "pkg:dotnet/Serilog@2.10.0",
|
PURL: "pkg:nuget/Serilog@2.10.0",
|
||||||
Locations: fixtureLocationSet,
|
Locations: fixtureLocationSet,
|
||||||
Language: pkg.Dotnet,
|
Language: pkg.Dotnet,
|
||||||
Type: pkg.DotnetPkg,
|
Type: pkg.DotnetPkg,
|
||||||
@ -177,7 +177,7 @@ func TestParseDotnetDeps(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Name: "System.Diagnostics.DiagnosticSource",
|
Name: "System.Diagnostics.DiagnosticSource",
|
||||||
Version: "6.0.0",
|
Version: "6.0.0",
|
||||||
PURL: "pkg:dotnet/System.Diagnostics.DiagnosticSource@6.0.0",
|
PURL: "pkg:nuget/System.Diagnostics.DiagnosticSource@6.0.0",
|
||||||
Locations: fixtureLocationSet,
|
Locations: fixtureLocationSet,
|
||||||
Language: pkg.Dotnet,
|
Language: pkg.Dotnet,
|
||||||
Type: pkg.DotnetPkg,
|
Type: pkg.DotnetPkg,
|
||||||
@ -193,7 +193,7 @@ func TestParseDotnetDeps(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Name: "System.Runtime.CompilerServices.Unsafe",
|
Name: "System.Runtime.CompilerServices.Unsafe",
|
||||||
Version: "6.0.0",
|
Version: "6.0.0",
|
||||||
PURL: "pkg:dotnet/System.Runtime.CompilerServices.Unsafe@6.0.0",
|
PURL: "pkg:nuget/System.Runtime.CompilerServices.Unsafe@6.0.0",
|
||||||
Locations: fixtureLocationSet,
|
Locations: fixtureLocationSet,
|
||||||
Language: pkg.Dotnet,
|
Language: pkg.Dotnet,
|
||||||
Type: pkg.DotnetPkg,
|
Type: pkg.DotnetPkg,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user