Merge pull request #110 from mxandeco/add_support_for_uppercase_plugin

change plugin name regex to case-insensitive.
This commit is contained in:
Tomasz Sęk 2019-09-19 13:22:01 +02:00 committed by GitHub
commit 00a44035a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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")): {