-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
fine_tunes_test.go
81 lines (67 loc) · 2.11 KB
/
fine_tunes_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package openai_test
import (
"context"
"encoding/json"
"fmt"
"net/http"
"testing"
"github.com/sashabaranov/go-openai"
"github.com/sashabaranov/go-openai/internal/test/checks"
)
const testFineTuneID = "fine-tune-id"
// TestFineTunes Tests the fine tunes endpoint of the API using the mocked server.
func TestFineTunes(t *testing.T) {
client, server, teardown := setupOpenAITestServer()
defer teardown()
server.RegisterHandler(
"/v1/fine-tunes",
func(w http.ResponseWriter, r *http.Request) {
var resBytes []byte
if r.Method == http.MethodGet {
resBytes, _ = json.Marshal(openai.FineTuneList{})
} else {
resBytes, _ = json.Marshal(openai.FineTune{})
}
fmt.Fprintln(w, string(resBytes))
},
)
server.RegisterHandler(
"/v1/fine-tunes/"+testFineTuneID+"/cancel",
func(w http.ResponseWriter, _ *http.Request) {
resBytes, _ := json.Marshal(openai.FineTune{})
fmt.Fprintln(w, string(resBytes))
},
)
server.RegisterHandler(
"/v1/fine-tunes/"+testFineTuneID,
func(w http.ResponseWriter, r *http.Request) {
var resBytes []byte
if r.Method == http.MethodDelete {
resBytes, _ = json.Marshal(openai.FineTuneDeleteResponse{})
} else {
resBytes, _ = json.Marshal(openai.FineTune{})
}
fmt.Fprintln(w, string(resBytes))
},
)
server.RegisterHandler(
"/v1/fine-tunes/"+testFineTuneID+"/events",
func(w http.ResponseWriter, _ *http.Request) {
resBytes, _ := json.Marshal(openai.FineTuneEventList{})
fmt.Fprintln(w, string(resBytes))
},
)
ctx := context.Background()
_, err := client.ListFineTunes(ctx)
checks.NoError(t, err, "ListFineTunes error")
_, err = client.CreateFineTune(ctx, openai.FineTuneRequest{})
checks.NoError(t, err, "CreateFineTune error")
_, err = client.CancelFineTune(ctx, testFineTuneID)
checks.NoError(t, err, "CancelFineTune error")
_, err = client.GetFineTune(ctx, testFineTuneID)
checks.NoError(t, err, "GetFineTune error")
_, err = client.DeleteFineTune(ctx, testFineTuneID)
checks.NoError(t, err, "DeleteFineTune error")
_, err = client.ListFineTuneEvents(ctx, testFineTuneID)
checks.NoError(t, err, "ListFineTuneEvents error")
}