Fix for broken Azure Threads url (#668)
This commit is contained in:
@@ -93,3 +93,86 @@ func TestThread(t *testing.T) {
|
||||
_, err = client.DeleteThread(ctx, threadID)
|
||||
checks.NoError(t, err, "DeleteThread error")
|
||||
}
|
||||
|
||||
// TestAzureThread Tests the thread endpoint of the API using the Azure mocked server.
|
||||
func TestAzureThread(t *testing.T) {
|
||||
threadID := "thread_abc123"
|
||||
client, server, teardown := setupAzureTestServer()
|
||||
defer teardown()
|
||||
|
||||
server.RegisterHandler(
|
||||
"/openai/threads/"+threadID,
|
||||
func(w http.ResponseWriter, r *http.Request) {
|
||||
switch r.Method {
|
||||
case http.MethodGet:
|
||||
resBytes, _ := json.Marshal(openai.Thread{
|
||||
ID: threadID,
|
||||
Object: "thread",
|
||||
CreatedAt: 1234567890,
|
||||
})
|
||||
fmt.Fprintln(w, string(resBytes))
|
||||
case http.MethodPost:
|
||||
var request openai.ThreadRequest
|
||||
err := json.NewDecoder(r.Body).Decode(&request)
|
||||
checks.NoError(t, err, "Decode error")
|
||||
|
||||
resBytes, _ := json.Marshal(openai.Thread{
|
||||
ID: threadID,
|
||||
Object: "thread",
|
||||
CreatedAt: 1234567890,
|
||||
})
|
||||
fmt.Fprintln(w, string(resBytes))
|
||||
case http.MethodDelete:
|
||||
fmt.Fprintln(w, `{
|
||||
"id": "thread_abc123",
|
||||
"object": "thread.deleted",
|
||||
"deleted": true
|
||||
}`)
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
server.RegisterHandler(
|
||||
"/openai/threads",
|
||||
func(w http.ResponseWriter, r *http.Request) {
|
||||
if r.Method == http.MethodPost {
|
||||
var request openai.ModifyThreadRequest
|
||||
err := json.NewDecoder(r.Body).Decode(&request)
|
||||
checks.NoError(t, err, "Decode error")
|
||||
|
||||
resBytes, _ := json.Marshal(openai.Thread{
|
||||
ID: threadID,
|
||||
Object: "thread",
|
||||
CreatedAt: 1234567890,
|
||||
Metadata: request.Metadata,
|
||||
})
|
||||
fmt.Fprintln(w, string(resBytes))
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
ctx := context.Background()
|
||||
|
||||
_, err := client.CreateThread(ctx, openai.ThreadRequest{
|
||||
Messages: []openai.ThreadMessage{
|
||||
{
|
||||
Role: openai.ThreadMessageRoleUser,
|
||||
Content: "Hello, World!",
|
||||
},
|
||||
},
|
||||
})
|
||||
checks.NoError(t, err, "CreateThread error")
|
||||
|
||||
_, err = client.RetrieveThread(ctx, threadID)
|
||||
checks.NoError(t, err, "RetrieveThread error")
|
||||
|
||||
_, err = client.ModifyThread(ctx, threadID, openai.ModifyThreadRequest{
|
||||
Metadata: map[string]interface{}{
|
||||
"key": "value",
|
||||
},
|
||||
})
|
||||
checks.NoError(t, err, "ModifyThread error")
|
||||
|
||||
_, err = client.DeleteThread(ctx, threadID)
|
||||
checks.NoError(t, err, "DeleteThread error")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user