forked from boostsecurityio/poutine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpurl_test.go
137 lines (125 loc) · 3.12 KB
/
purl_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package models
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestNewPurl(t *testing.T) {
cases := []struct {
purl string
expected string
}{
{
purl: "pkg:githubactions/Actions/Checkout@v4",
expected: "pkg:githubactions/actions/checkout@v4",
},
{
purl: "pkg:githubactions/github/codeql-action/Analyze@v4",
expected: "pkg:githubactions/github/codeql-action@v4#Analyze",
},
{
purl: "pkg:githubactions/Actions/Checkout@v4#dir/SubPath",
expected: "pkg:githubactions/actions/checkout@v4#dir/SubPath",
},
}
for _, c := range cases {
p, err := NewPurl(c.purl)
assert.Nil(t, err)
p.Normalize()
assert.Equal(t, c.expected, p.String())
}
}
func TestPurlFromGithubActions(t *testing.T) {
cases := []struct {
uses string
sourceGitRepo string
sourceGitRef string
expected string
error bool
}{
{
uses: "actions/checkout@v4",
expected: "pkg:githubactions/actions/checkout@v4",
},
{
uses: "github/codeql-action/Analyze@v4",
expected: "pkg:githubactions/github/codeql-action@v4#Analyze",
},
{
uses: "docker://alpine:latest",
expected: "pkg:docker/alpine%3Alatest",
},
{
uses: "docker://ghcr.io/org/owner/image:tag",
expected: "pkg:docker/ghcr.io/org/owner/image%3Atag",
},
{
uses: "docker://ghcr.io/org/owner/image@sha256:digest",
expected: "pkg:docker/ghcr.io/org/owner/image@sha256%3Adigest",
},
{
uses: "",
error: true,
},
{
uses: "invalid",
error: true,
},
{
uses: "./.github/workflows/trigger_dep_builds.yml",
sourceGitRepo: "FasterXML/jackson-databind",
sourceGitRef: "2.18",
expected: "pkg:githubactions/fasterxml/[email protected]#.github/workflows/trigger_dep_builds.yml",
},
{
uses: "./../action/init",
error: true,
},
}
for _, c := range cases {
p, err := PurlFromGithubActions(c.uses, c.sourceGitRepo, c.sourceGitRef)
if !c.error {
assert.Nil(t, err)
assert.Equal(t, c.expected, p.String())
} else {
assert.NotNil(t, err)
}
}
}
func TestPurlLink(t *testing.T) {
cases := []struct {
name string
purl string
expected string
}{
// GitHub
{
name: "github.com default",
purl: "pkg:githubactions/actions/checkout@v4",
expected: "https://github.com/actions/checkout",
},
{
name: "github custom base ",
purl: "pkg:githubactions/actions/checkout@v4?repository_url=github.example.com",
expected: "https://github.example.com/actions/checkout",
},
// GitLab
{
name: "gitlab.com default",
purl: "pkg:gitlab/include/remote?download_url=https%3A%2F%2Fexample.com%2F.gitlab-ci.yml",
expected: "https://gitlab.com/include/remote",
},
{
name: "gitlab custom base",
purl: "pkg:gitlab/include/remote?download_url=https%3A%2F%2Fexample.com%2F.gitlab-ci.yml&repository_url=gitlab.example.com",
expected: "https://gitlab.example.com/include/remote",
},
}
for _, c := range cases {
t.Run(c.name, func(t *testing.T) {
p, err := NewPurl(c.purl)
assert.Nil(t, err)
link := p.Link()
assert.Equal(t, c.expected, link)
})
}
}