summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
Diffstat (limited to 'model')
-rw-r--r--model/manifest.go3
-rw-r--r--model/manifest_test.go3
2 files changed, 6 insertions, 0 deletions
diff --git a/model/manifest.go b/model/manifest.go
index d6a064d4e..d494df466 100644
--- a/model/manifest.go
+++ b/model/manifest.go
@@ -9,6 +9,7 @@ import (
"io/ioutil"
"os"
"path/filepath"
+ "strings"
"gopkg.in/yaml.v2"
)
@@ -201,6 +202,7 @@ func FindManifest(dir string) (manifest *Manifest, path string, err error) {
return
}
manifest = &parsed
+ manifest.Id = strings.ToLower(manifest.Id)
return
}
@@ -220,5 +222,6 @@ func FindManifest(dir string) (manifest *Manifest, path string, err error) {
return
}
manifest = &parsed
+ manifest.Id = strings.ToLower(manifest.Id)
return
}
diff --git a/model/manifest_test.go b/model/manifest_test.go
index b63e388bc..0c55b5b66 100644
--- a/model/manifest_test.go
+++ b/model/manifest_test.go
@@ -27,9 +27,11 @@ func TestFindManifest(t *testing.T) {
{"foo", "bar", true, true},
{"plugin.json", "bar", true, false},
{"plugin.json", `{"id": "foo"}`, false, false},
+ {"plugin.json", `{"id": "FOO"}`, false, false},
{"plugin.yaml", `id: foo`, false, false},
{"plugin.yaml", "bar", true, false},
{"plugin.yml", `id: foo`, false, false},
+ {"plugin.yml", `id: FOO`, false, false},
{"plugin.yml", "bar", true, false},
} {
dir, err := ioutil.TempDir("", "mm-plugin-test")
@@ -54,6 +56,7 @@ func TestFindManifest(t *testing.T) {
if !tc.ExpectError {
require.NotNil(t, m, tc.Filename)
assert.NotEmpty(t, m.Id, tc.Filename)
+ assert.Equal(t, strings.ToLower(m.Id), m.Id)
}
}
}