Skip to content

Commit 6fedf98

Browse files
committedMay 11, 2023
Finish implementing unit tests for aiUtils.go
1 parent 93f32be commit 6fedf98

File tree

1 file changed

+60
-21
lines changed

1 file changed

+60
-21
lines changed
 

‎aiUtils_test.go

+60-21
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
package main
22

33
import (
4-
"github.com/stretchr/testify/assert"
4+
"encoding/json"
5+
"io"
6+
"net/http"
7+
"net/http/httptest"
58
"os"
69
"testing"
710
)
@@ -104,28 +107,64 @@ func TestExtractGPTJson(t *testing.T) {
104107
}
105108
}
106109

107-
func Test_makeChatGPTAPIRequest(t *testing.T) {
108-
type args struct {
109-
chatGPTRequestData CompletionCreateArgs
110-
openaiAPIURL string
111-
apiKey string
110+
type Response struct {
111+
ID string `json:"id"`
112+
Object string `json:"object"`
113+
}
114+
115+
// TestMakeChatGPTAPIRequest This function tests that the makeChatGPTAPIRequest()
116+
// function is sending a readable request with an accurate response. It sets up a
117+
// test server that returns a dummy response, creates a dummy
118+
// CompletionCreateArgs struct, and calls the makeChatGPTAPIRequest function with
119+
// the test server's URL and a dummy API key. The test function then checks if
120+
// there were any errors and if the returned response matches the expected
121+
// values.
122+
func TestMakeChatGPTAPIRequest(t *testing.T) {
123+
// Create a test server that returns a dummy response
124+
testServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
125+
response := Response{
126+
ID: "test_id",
127+
Object: "test_object",
128+
}
129+
jsonResponse, _ := json.Marshal(response)
130+
w.Header().Set("Content-Type", "application/json")
131+
w.WriteHeader(http.StatusOK)
132+
_, err := io.WriteString(w, string(jsonResponse))
133+
if err != nil {
134+
return
135+
}
136+
}))
137+
defer testServer.Close()
138+
139+
// Create a dummy CompletionCreateArgs
140+
chatGPTRequestData := CompletionCreateArgs{
141+
Model: "text-davinci-003",
142+
Prompt: "Test prompt",
143+
MaxTokens: 10,
144+
Temperature: 0,
112145
}
113-
tests := []struct {
114-
name string
115-
args args
116-
want []byte
117-
want1 string
118-
want2 bool
119-
}{
120-
// TODO: Add test cases.
146+
147+
// Call the function with the test server URL and a dummy API key
148+
chatGPTResponseBody, errorString, apiRequestError := makeChatGPTAPIRequest(chatGPTRequestData, testServer.URL, "dummy_key")
149+
150+
// Check if there was an error
151+
if apiRequestError {
152+
t.Errorf("Expected no error, got error: %s", errorString)
121153
}
122-
for _, tt := range tests {
123-
t.Run(tt.name, func(t *testing.T) {
124-
got, got1, got2 := makeChatGPTAPIRequest(tt.args.chatGPTRequestData, tt.args.openaiAPIURL, tt.args.apiKey)
125-
assert.Equalf(t, tt.want, got, "makeChatGPTAPIRequest(%v, %v, %v)", tt.args.chatGPTRequestData, tt.args.openaiAPIURL, tt.args.apiKey)
126-
assert.Equalf(t, tt.want1, got1, "makeChatGPTAPIRequest(%v, %v, %v)", tt.args.chatGPTRequestData, tt.args.openaiAPIURL, tt.args.apiKey)
127-
assert.Equalf(t, tt.want2, got2, "makeChatGPTAPIRequest(%v, %v, %v)", tt.args.chatGPTRequestData, tt.args.openaiAPIURL, tt.args.apiKey)
128-
})
154+
155+
// Unmarshal the response and check if it matches the expected values
156+
var response Response
157+
err := json.Unmarshal(chatGPTResponseBody, &response)
158+
if err != nil {
159+
t.Errorf("Error unmarshaling JSON: %s", err)
160+
}
161+
162+
if response.ID != "test_id" {
163+
t.Errorf("Expected ID 'test_id', got '%s'", response.ID)
164+
}
165+
166+
if response.Object != "test_object" {
167+
t.Errorf("Expected Object 'test_object', got '%s'", response.Object)
129168
}
130169
}
131170

0 commit comments

Comments
 (0)
Please sign in to comment.