routes_list_test.go 1.41 KB
Newer Older
mashun1's avatar
v1  
mashun1 committed
1
2
3
4
5
6
7
8
9
package server

import (
	"encoding/json"
	"fmt"
	"net/http"
	"slices"
	"testing"

xuxzh1's avatar
init  
xuxzh1 committed
10
11
	"github.com/gin-gonic/gin"

mashun1's avatar
v1  
mashun1 committed
12
13
14
15
	"github.com/ollama/ollama/api"
)

func TestList(t *testing.T) {
xuxzh1's avatar
init  
xuxzh1 committed
16
17
	gin.SetMode(gin.TestMode)

mashun1's avatar
v1  
mashun1 committed
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
	t.Setenv("OLLAMA_MODELS", t.TempDir())

	expectNames := []string{
		"mistral:7b-instruct-q4_0",
		"zephyr:7b-beta-q5_K_M",
		"apple/OpenELM:latest",
		"boreas:2b-code-v1.5-q6_K",
		"notus:7b-v1-IQ2_S",
		// TODO: host:port currently fails on windows (#4107)
		// "localhost:5000/library/eurus:700b-v0.5-iq3_XXS",
		"mynamespace/apeliotes:latest",
		"myhost/mynamespace/lips:code",
	}

	var s Server
	for _, n := range expectNames {
		createRequest(t, s.CreateModelHandler, api.CreateRequest{
			Name:      n,
xuxzh1's avatar
init  
xuxzh1 committed
36
			Modelfile: fmt.Sprintf("FROM %s", createBinFile(t, nil, nil)),
mashun1's avatar
v1  
mashun1 committed
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
		})
	}

	w := createRequest(t, s.ListModelsHandler, nil)
	if w.Code != http.StatusOK {
		t.Fatalf("expected status code 200, actual %d", w.Code)
	}

	var resp api.ListResponse
	if err := json.NewDecoder(w.Body).Decode(&resp); err != nil {
		t.Fatal(err)
	}

	if len(resp.Models) != len(expectNames) {
		t.Fatalf("expected %d models, actual %d", len(expectNames), len(resp.Models))
	}

	actualNames := make([]string, len(resp.Models))
	for i, m := range resp.Models {
		actualNames[i] = m.Name
	}

	slices.Sort(actualNames)
	slices.Sort(expectNames)

	if !slices.Equal(actualNames, expectNames) {
		t.Fatalf("expected slices to be equal %v", actualNames)
	}
}