mirror of
https://github.com/anchore/syft
synced 2024-11-10 14:24:12 +00:00
5743e32e02
Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
70 lines
1.6 KiB
Go
70 lines
1.6 KiB
Go
package internal
|
|
|
|
import (
|
|
"regexp"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestMatchCaptureGroups(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
input string
|
|
pattern string
|
|
expected map[string]string
|
|
}{
|
|
{
|
|
name: "go-case",
|
|
input: "match this thing",
|
|
pattern: `(?P<name>match).*(?P<version>thing)`,
|
|
expected: map[string]string{
|
|
"name": "match",
|
|
"version": "thing",
|
|
},
|
|
},
|
|
{
|
|
name: "only matches the first instance",
|
|
input: "match this thing batch another think",
|
|
pattern: `(?P<name>[mb]atch).*?(?P<version>thin[gk])`,
|
|
expected: map[string]string{
|
|
"name": "match",
|
|
"version": "thing",
|
|
},
|
|
},
|
|
{
|
|
name: "nested capture groups",
|
|
input: "cool something to match against",
|
|
pattern: `((?P<name>match) (?P<version>against))`,
|
|
expected: map[string]string{
|
|
"name": "match",
|
|
"version": "against",
|
|
},
|
|
},
|
|
{
|
|
name: "nested optional capture groups",
|
|
input: "cool something to match against",
|
|
pattern: `((?P<name>match) (?P<version>against))?`,
|
|
expected: map[string]string{
|
|
"name": "match",
|
|
"version": "against",
|
|
},
|
|
},
|
|
{
|
|
name: "nested optional capture groups with larger match",
|
|
input: "cool something to match against match never",
|
|
pattern: `.*?((?P<name>match) (?P<version>(against|never)))?`,
|
|
expected: map[string]string{
|
|
"name": "match",
|
|
"version": "against",
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
actual := MatchNamedCaptureGroups(regexp.MustCompile(test.pattern), test.input)
|
|
assert.Equal(t, test.expected, actual)
|
|
})
|
|
}
|
|
}
|