Skip to content

Commit 281866d

Browse files
authored
fix #264: restore v version prefix (#267)
1 parent 3a62d04 commit 281866d

File tree

4 files changed

+23
-19
lines changed

4 files changed

+23
-19
lines changed

packages/dep.go

+1-7
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
package packages
1818

1919
import (
20-
"strings"
21-
2220
"github.com/Masterminds/semver"
2321
"github.com/golang/dep"
2422
)
@@ -28,11 +26,7 @@ func ExtractPurlsUsingDep(project *dep.Project) ([]string, []string) {
2826
var purls []string
2927
var invalidPurls []string
3028
for _, lockedProject := range lockedProjects {
31-
var version string
32-
i := lockedProject.Version().String()
33-
34-
version = strings.Replace(i, "v", "", -1)
35-
29+
version := lockedProject.Version().String()
3630
if len(version) > 0 { // There must be a version we can use
3731
name := lockedProject.Ident().String()
3832
packageName := convertGopkgNameToPurl(name)

packages/dep_int_test.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ func TestExtractPurlsFromManifestUsingDep(t *testing.T) {
5656
assertPurlFound("pkg:golang/golang.org/x/sync@master", invalidPurls, t)
5757
assertPurlFound("pkg:golang/golang.org/x/sys@master", invalidPurls, t)
5858

59-
assertPurlFound("pkg:golang/github.com/go-yaml/yaml@2", purls, t)
60-
assertPurlFound("pkg:golang/github.com/Masterminds/vcs@1.11.1", purls, t)
61-
assertPurlFound("pkg:golang/github.com/boltdb/bolt@1.3.1", purls, t)
62-
assertPurlFound("pkg:golang/github.com/golang/protobuf@1.0.0", purls, t)
63-
assertPurlFound("pkg:golang/github.com/jmank88/nuts@0.3.0", purls, t)
64-
assertPurlFound("pkg:golang/github.com/pelletier/go-toml@1.2.0", purls, t)
65-
assertPurlFound("pkg:golang/github.com/pkg/errors@0.8.0", purls, t)
59+
assertPurlFound("pkg:golang/github.com/go-yaml/yaml@v2", purls, t)
60+
assertPurlFound("pkg:golang/github.com/Masterminds/vcs@v1.11.1", purls, t)
61+
assertPurlFound("pkg:golang/github.com/boltdb/bolt@v1.3.1", purls, t)
62+
assertPurlFound("pkg:golang/github.com/golang/protobuf@v1.0.0", purls, t)
63+
assertPurlFound("pkg:golang/github.com/jmank88/nuts@v0.3.0", purls, t)
64+
assertPurlFound("pkg:golang/github.com/pelletier/go-toml@v1.2.0", purls, t)
65+
assertPurlFound("pkg:golang/github.com/pkg/errors@v0.8.0", purls, t)
6666
}
6767

6868
func assertPurlFound(expectedPurl string, result []string, t *testing.T) {

packages/mod.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,8 @@ type Mod struct {
3030
func (m Mod) ExtractPurlsFromManifest() (purls []string) {
3131
for _, s := range m.ProjectList.Projects {
3232
if len(s.Version) > 0 { // There must be a version we can use
33-
// OSS Index no likey v before version, IQ does though, comment left so I will never forget.
34-
// go-sona-types library now takes care of querying both ossi and iq with reformatted purls as needed (to v or not to v).
35-
version := strings.Replace(s.Version, "v", "", -1)
36-
version = strings.Replace(version, "+incompatible", "", -1)
33+
// remove "+incompatible" from version string if it exists
34+
version := strings.Replace(s.Version, "+incompatible", "", -1)
3735
var purl = "pkg:" + convertGopkgNameToPurl(s.Name) + "@" + version
3836
purls = append(purls, purl)
3937
}

packages/mod_test.go

+13-1
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,15 @@
1717
package packages
1818

1919
import (
20+
"github.com/stretchr/testify/assert"
2021
"testing"
2122

2223
"github.com/sonatype-nexus-community/nancy/types"
2324
)
2425

26+
const versionFormatDateHash = "v0.0.0-20201221181555-eec23a3978ad"
27+
const versionFormatIncompatible = "v2.0.3+incompatible"
28+
2529
// Simulate calling parse.GopkgLock()
2630
func getProjectList() (projectList types.ProjectList) {
2731
appendProject("github.com/AndreasBriese/bbloom", "", &projectList)
@@ -34,6 +38,8 @@ func getProjectList() (projectList types.ProjectList) {
3438
appendProject("github.com/shopspring/decimal", "1.1.0", &projectList)
3539
appendProject("golang.org/x/net", "", &projectList)
3640
appendProject("golang.org/x/sys", "", &projectList)
41+
appendProject("golang/golang.org/x/crypto", versionFormatDateHash, &projectList)
42+
appendProject("github.com/logrusorgru/aurora", versionFormatIncompatible, &projectList)
3743

3844
return projectList
3945
}
@@ -66,9 +72,15 @@ func TestModExtractPurlsFromManifest(t *testing.T) {
6672
mod.ProjectList = getProjectList()
6773

6874
result := mod.ExtractPurlsFromManifest()
69-
if len(result) != 5 {
75+
if len(result) != 7 {
7076
t.Error(result)
7177
}
78+
79+
// verify version format with date and hashcode is not altered
80+
assert.Equal(t, "pkg:golang/golang/golang.org/x/crypto@"+versionFormatDateHash, result[5])
81+
82+
// verify version format with '+incompatible' has that string removed
83+
assert.Equal(t, "pkg:golang/github.com/logrusorgru/[email protected]", result[6])
7284
}
7385

7486
func TestModExtractPurlsFromManifestDuplicates(t *testing.T) {

0 commit comments

Comments
 (0)