-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
178 lines (151 loc) · 4.16 KB
/
main_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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
package main
import (
"context"
"fmt"
"net/http"
"net/http/httptest"
"os"
"testing"
"time"
"golang-ai-stream/config"
"golang-ai-stream/handlers"
"golang-ai-stream/middleware"
"github.com/gorilla/mux"
"github.com/sashabaranov/go-openai"
"github.com/stretchr/testify/assert"
)
type mockStream struct {
closed bool
}
func (s *mockStream) Recv() (*openai.ChatCompletionStreamResponse, error) {
return &openai.ChatCompletionStreamResponse{}, nil
}
func (s *mockStream) Close() {
s.closed = true
}
type mockClient struct {
stream *mockStream
}
func (m *mockClient) CreateChatCompletionStream(ctx context.Context, req openai.ChatCompletionRequest) (handlers.ChatCompletionStreamer, error) {
if m.stream == nil {
m.stream = &mockStream{}
}
return m.stream, nil
}
func TestCreateServer(t *testing.T) {
// Set test environment variables
os.Setenv("PORT", ":8081")
os.Setenv("API_KEY", "test-key")
os.Setenv("BASE_URL", "http://test.com")
os.Setenv("RATE_LIMIT", "10")
defer func() {
os.Unsetenv("PORT")
os.Unsetenv("API_KEY")
os.Unsetenv("BASE_URL")
os.Unsetenv("RATE_LIMIT")
}()
// Load configuration
cfg, err := config.LoadConfig()
assert.NoError(t, err)
// Create router
r := mux.NewRouter()
r.Use(middleware.Logger)
r.Use(middleware.SecurityHeaders)
r.Use(middleware.CORS)
r.Use(middleware.RateLimit(middleware.NewRateLimiter(cfg.RateLimit)))
// Add health endpoint
r.HandleFunc("/health", func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
w.Write([]byte("OK"))
}).Methods("GET")
// Create server
srv := &http.Server{
Addr: cfg.Port,
Handler: r,
ReadTimeout: time.Duration(cfg.ReadTimeoutSecs) * time.Second,
WriteTimeout: time.Duration(cfg.WriteTimeoutSecs) * time.Second,
IdleTimeout: time.Duration(cfg.IdleTimeoutSecs) * time.Second,
}
// Start server in a goroutine
go func() {
if err := srv.ListenAndServe(); err != nil && err != http.ErrServerClosed {
t.Errorf("Server failed to start: %v", err)
}
}()
// Wait for server to start
time.Sleep(100 * time.Millisecond)
// Test health endpoint
resp, err := http.Get(fmt.Sprintf("http://localhost%s/health", cfg.Port))
assert.NoError(t, err)
assert.Equal(t, http.StatusOK, resp.StatusCode)
// Graceful shutdown
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
assert.NoError(t, srv.Shutdown(ctx))
}
func TestRoutes(t *testing.T) {
// Set test environment variables
os.Setenv("PORT", ":8082")
os.Setenv("API_KEY", "test-key")
os.Setenv("BASE_URL", "http://test.com")
os.Setenv("RATE_LIMIT", "10")
defer func() {
os.Unsetenv("PORT")
os.Unsetenv("API_KEY")
os.Unsetenv("BASE_URL")
os.Unsetenv("RATE_LIMIT")
}()
// Load configuration
cfg, err := config.LoadConfig()
assert.NoError(t, err)
// Create router
r := mux.NewRouter()
r.Use(middleware.Logger)
r.Use(middleware.SecurityHeaders)
r.Use(middleware.CORS)
r.Use(middleware.RateLimit(middleware.NewRateLimiter(cfg.RateLimit)))
// Add routes
chatHandler := handlers.NewChatHandler(&mockClient{}, cfg)
r.HandleFunc("/chat", chatHandler.HandleChat).Methods("POST", "OPTIONS")
r.HandleFunc("/health", func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
w.Write([]byte("OK"))
}).Methods("GET")
// Test routes
tests := []struct {
name string
method string
path string
expectedStatus int
}{
{
name: "health check",
method: "GET",
path: "/health",
expectedStatus: http.StatusOK,
},
{
name: "chat options",
method: "OPTIONS",
path: "/chat",
expectedStatus: http.StatusOK,
},
{
name: "not found",
method: "GET",
path: "/notfound",
expectedStatus: http.StatusNotFound,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
req, err := http.NewRequest(tt.method, tt.path, nil)
assert.NoError(t, err)
// Add request ID to context
req = req.WithContext(context.WithValue(req.Context(), middleware.RequestIDKey, "test-id"))
rr := httptest.NewRecorder()
r.ServeHTTP(rr, req)
assert.Equal(t, tt.expectedStatus, rr.Code)
})
}
}