change plugin name regex to case-insensitive.

This commit is contained in:
Max Xandeco 2019-09-19 11:27:57 +01:00
parent 06be4cd42c
commit 63e442ac7a
2 changed files with 13 additions and 1 deletions

View File

@ -22,7 +22,7 @@ func (p Plugin) String() string {
}
var (
namePattern = regexp.MustCompile(`^[0-9a-z-_]+$`)
namePattern = regexp.MustCompile(`(?i)^[0-9a-z-_]+$`)
versionPattern = regexp.MustCompile(`^[0-9\\.]+$`)
)

View File

@ -44,6 +44,18 @@ func TestVerifyDependencies(t *testing.T) {
got := VerifyDependencies(basePlugins)
assert.Equal(t, true, got)
})
t.Run("happy, two plugin names with uppercase names", func(t *testing.T) {
basePlugins := map[Plugin][]Plugin{
Must(New("First-Root-Plugin:1.0.0")): {
Must(New("First_Plugin:0.0.1")),
},
Must(New("Second_Root_Plugin:1.0.0")): {
Must(New("First_Plugin:0.0.1")),
},
}
got := VerifyDependencies(basePlugins)
assert.Equal(t, true, got)
})
t.Run("fail, two root plugins have different versions", func(t *testing.T) {
basePlugins := map[Plugin][]Plugin{
Must(New("first-root-plugin:1.0.0")): {