server: more support for mixed-case model names (#8017)

Fixes #7944
This commit is contained in:
Blake Mizerany 2024-12-11 15:29:59 -08:00 committed by GitHub
parent 36d111e788
commit b1fd7fef86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 123 additions and 38 deletions

View file

@ -1,7 +1,6 @@
package server
import (
"errors"
"os"
"path/filepath"
"testing"
@ -155,10 +154,3 @@ func TestParseModelPath(t *testing.T) {
})
}
}
func TestInsecureModelpath(t *testing.T) {
mp := ParseModelPath("../../..:something")
if _, err := mp.GetManifestPath(); !errors.Is(err, errModelPathInvalid) {
t.Errorf("expected error: %v", err)
}
}