|
1 | 1 | package main
|
2 | 2 |
|
3 | 3 | import (
|
4 |
| - "github.com/stretchr/testify/assert" |
| 4 | + "encoding/json" |
| 5 | + "io" |
| 6 | + "net/http" |
| 7 | + "net/http/httptest" |
5 | 8 | "os"
|
6 | 9 | "testing"
|
7 | 10 | )
|
@@ -104,28 +107,64 @@ func TestExtractGPTJson(t *testing.T) {
|
104 | 107 | }
|
105 | 108 | }
|
106 | 109 |
|
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, |
112 | 145 | }
|
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) |
121 | 153 | }
|
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) |
129 | 168 | }
|
130 | 169 | }
|
131 | 170 |
|
|
0 commit comments