mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
60db5957d3
Signed-off-by: mudler <mudler@localai.io>
43 lines
1.4 KiB
Go
43 lines
1.4 KiB
Go
package gallery_test
|
|
|
|
import (
|
|
. "github.com/go-skynet/LocalAI/pkg/gallery"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
type example struct {
|
|
Name string `yaml:"name"`
|
|
}
|
|
|
|
var _ = Describe("Gallery API tests", func() {
|
|
|
|
Context("requests", func() {
|
|
It("parses github with a branch", func() {
|
|
req := GalleryModel{URL: "github:go-skynet/model-gallery/gpt4all-j.yaml@main"}
|
|
var e example
|
|
err := req.Get(&e)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(e.Name).To(Equal("gpt4all-j"))
|
|
})
|
|
It("parses github without a branch", func() {
|
|
req := GalleryModel{URL: "github:go-skynet/model-gallery/gpt4all-j.yaml@main"}
|
|
str, err := req.DecodeURL()
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(str).To(Equal("https://raw.githubusercontent.com/go-skynet/model-gallery/main/gpt4all-j.yaml"))
|
|
})
|
|
It("parses github without a branch", func() {
|
|
req := GalleryModel{URL: "github:go-skynet/model-gallery/gpt4all-j.yaml"}
|
|
str, err := req.DecodeURL()
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(str).To(Equal("https://raw.githubusercontent.com/go-skynet/model-gallery/main/gpt4all-j.yaml"))
|
|
})
|
|
It("parses URLS", func() {
|
|
req := GalleryModel{URL: "https://raw.githubusercontent.com/go-skynet/model-gallery/main/gpt4all-j.yaml"}
|
|
str, err := req.DecodeURL()
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(str).To(Equal("https://raw.githubusercontent.com/go-skynet/model-gallery/main/gpt4all-j.yaml"))
|
|
})
|
|
})
|
|
})
|