refactor: consolidate usage of GetURI (#674)
Signed-off-by: mudler <mudler@localai.io>renovate/github.com-imdario-mergo-1.x
parent
d18f85df46
commit
78f3c3da48
@ -0,0 +1,36 @@ |
||||
package utils_test |
||||
|
||||
import ( |
||||
. "github.com/go-skynet/LocalAI/pkg/utils" |
||||
. "github.com/onsi/ginkgo/v2" |
||||
. "github.com/onsi/gomega" |
||||
) |
||||
|
||||
var _ = Describe("Gallery API tests", func() { |
||||
Context("URI", func() { |
||||
It("parses github with a branch", func() { |
||||
Expect( |
||||
GetURI("github:go-skynet/model-gallery/gpt4all-j.yaml", func(url string, i []byte) error { |
||||
Expect(url).To(Equal("https://raw.githubusercontent.com/go-skynet/model-gallery/main/gpt4all-j.yaml")) |
||||
return nil |
||||
}), |
||||
).ToNot(HaveOccurred()) |
||||
}) |
||||
It("parses github without a branch", func() { |
||||
Expect( |
||||
GetURI("github:go-skynet/model-gallery/gpt4all-j.yaml@main", func(url string, i []byte) error { |
||||
Expect(url).To(Equal("https://raw.githubusercontent.com/go-skynet/model-gallery/main/gpt4all-j.yaml")) |
||||
return nil |
||||
}), |
||||
).ToNot(HaveOccurred()) |
||||
}) |
||||
It("parses github with urls", func() { |
||||
Expect( |
||||
GetURI("https://raw.githubusercontent.com/go-skynet/model-gallery/main/gpt4all-j.yaml", func(url string, i []byte) error { |
||||
Expect(url).To(Equal("https://raw.githubusercontent.com/go-skynet/model-gallery/main/gpt4all-j.yaml")) |
||||
return nil |
||||
}), |
||||
).ToNot(HaveOccurred()) |
||||
}) |
||||
}) |
||||
}) |
@ -0,0 +1,13 @@ |
||||
package utils_test |
||||
|
||||
import ( |
||||
"testing" |
||||
|
||||
. "github.com/onsi/ginkgo/v2" |
||||
. "github.com/onsi/gomega" |
||||
) |
||||
|
||||
func TestUtils(t *testing.T) { |
||||
RegisterFailHandler(Fail) |
||||
RunSpecs(t, "Utils test suite") |
||||
} |
Loading…
Reference in new issue