mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
* rename npm metadata struct Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * improve os package URLs Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * improve language package URLs Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * wire up composer pURL method Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
148 lines
3.3 KiB
Go
148 lines
3.3 KiB
Go
package pkg
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/sergi/go-diff/diffmatchpatch"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestPomProperties_PkgTypeIndicated(t *testing.T) {
|
|
cases := []struct {
|
|
name string
|
|
pomProperties PomProperties
|
|
expectedType Type
|
|
}{
|
|
{
|
|
name: "regular Java package",
|
|
pomProperties: PomProperties{
|
|
Path: "some path",
|
|
Name: "some name",
|
|
GroupID: "some group ID",
|
|
ArtifactID: "some artifact ID",
|
|
Version: "1",
|
|
},
|
|
expectedType: JavaPkg,
|
|
},
|
|
{
|
|
name: "cloudbees jenkins plugin",
|
|
pomProperties: PomProperties{
|
|
Path: "some path",
|
|
Name: "some name",
|
|
GroupID: "com.cloudbees.jenkins.plugins",
|
|
ArtifactID: "some artifact ID",
|
|
Version: "1",
|
|
},
|
|
expectedType: JenkinsPluginPkg,
|
|
},
|
|
{
|
|
name: "jenkins.io plugin",
|
|
pomProperties: PomProperties{
|
|
Path: "some path",
|
|
Name: "some name",
|
|
GroupID: "io.jenkins.plugins",
|
|
ArtifactID: "some artifact ID",
|
|
Version: "1",
|
|
},
|
|
expectedType: JenkinsPluginPkg,
|
|
},
|
|
{
|
|
name: "jenkins-ci.io plugin",
|
|
pomProperties: PomProperties{
|
|
Path: "some path",
|
|
Name: "some name",
|
|
GroupID: "io.jenkins-ci.plugins",
|
|
ArtifactID: "some artifact ID",
|
|
Version: "1",
|
|
},
|
|
expectedType: JenkinsPluginPkg,
|
|
},
|
|
{
|
|
name: "jenkins-ci.org plugin",
|
|
pomProperties: PomProperties{
|
|
Path: "some path",
|
|
Name: "some name",
|
|
GroupID: "org.jenkins-ci.plugins",
|
|
ArtifactID: "some artifact ID",
|
|
Version: "1",
|
|
},
|
|
expectedType: JenkinsPluginPkg,
|
|
},
|
|
{
|
|
name: "jenkins.org plugin",
|
|
pomProperties: PomProperties{
|
|
Path: "some path",
|
|
Name: "some name",
|
|
GroupID: "org.jenkins.plugins",
|
|
ArtifactID: "some artifact ID",
|
|
Version: "1",
|
|
},
|
|
expectedType: JenkinsPluginPkg,
|
|
},
|
|
{
|
|
name: "jenkins plugin prefix",
|
|
pomProperties: PomProperties{
|
|
Path: "some path",
|
|
Name: "some name",
|
|
GroupID: "com.cloudbees.jenkins.plugins.bluesteel",
|
|
ArtifactID: "some artifact ID",
|
|
Version: "1",
|
|
},
|
|
expectedType: JenkinsPluginPkg,
|
|
},
|
|
{
|
|
name: "jenkins.plugin somewhere in group id",
|
|
pomProperties: PomProperties{
|
|
Path: "some path",
|
|
Name: "some name",
|
|
GroupID: "org.wagoodman.jenkins.plugins.something",
|
|
ArtifactID: "some artifact ID",
|
|
Version: "1",
|
|
},
|
|
expectedType: JenkinsPluginPkg,
|
|
},
|
|
}
|
|
|
|
for _, tc := range cases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
actual := tc.pomProperties.PkgTypeIndicated()
|
|
assert.Equal(t, tc.expectedType, actual)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestJavaMetadata_pURL(t *testing.T) {
|
|
tests := []struct {
|
|
metadata JavaMetadata
|
|
expected string
|
|
}{
|
|
{
|
|
metadata: JavaMetadata{
|
|
PomProperties: &PomProperties{
|
|
Path: "p",
|
|
Name: "n",
|
|
GroupID: "g.id",
|
|
ArtifactID: "a",
|
|
Version: "v",
|
|
},
|
|
},
|
|
expected: "pkg:maven/g.id/a@v",
|
|
},
|
|
{
|
|
metadata: JavaMetadata{},
|
|
expected: "",
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.expected, func(t *testing.T) {
|
|
actual := test.metadata.PackageURL(nil)
|
|
if actual != test.expected {
|
|
dmp := diffmatchpatch.New()
|
|
diffs := dmp.DiffMain(test.expected, actual, true)
|
|
t.Errorf("diff: %s", dmp.DiffPrettyText(diffs))
|
|
}
|
|
})
|
|
}
|
|
}
|