-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathutil_test.go
More file actions
206 lines (195 loc) · 4.29 KB
/
util_test.go
File metadata and controls
206 lines (195 loc) · 4.29 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
package main
import (
"reflect"
"testing"
"github.com/Azure/azure-sdk-for-go/sdk/ai/azopenai"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/policy"
)
func Test_getGitDiff(t *testing.T) {
tests := []struct {
name string
want string
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := getGitDiff()
if (err != nil) != tt.wantErr {
t.Errorf("getGitDiff() error = %v, wantErr %v", err, tt.wantErr)
return
}
if got != tt.want {
t.Errorf("getGitDiff() = %v, want %v", got, tt.want)
}
})
}
}
func Test_calculateTimeSaved(t *testing.T) {
type args struct {
numCommits int
wordCount int
}
tests := []struct {
name string
args args
want float64
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := calculateTimeSaved(tt.args.numCommits, tt.args.wordCount); got != tt.want {
t.Errorf("calculateTimeSaved() = %v, want %v", got, tt.want)
}
})
}
}
func Test_getCommitStats(t *testing.T) {
tests := []struct {
name string
want int
want1 int
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1, err := getCommitStats()
if (err != nil) != tt.wantErr {
t.Errorf("getCommitStats() error = %v, wantErr %v", err, tt.wantErr)
return
}
if got != tt.want {
t.Errorf("getCommitStats() got = %v, want %v", got, tt.want)
}
if got1 != tt.want1 {
t.Errorf("getCommitStats() got1 = %v, want %v", got1, tt.want1)
}
})
}
}
func Test_getDiffPrompt(t *testing.T) {
type args struct {
diff string
}
tests := []struct {
name string
args args
want []azopenai.ChatMessage
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := getDiffPrompt(tt.args.diff); !reflect.DeepEqual(got, tt.want) {
t.Errorf("getDiffPrompt() = %v, want %v", got, tt.want)
}
})
}
}
func Test_getPrompt(t *testing.T) {
type args struct {
message string
}
tests := []struct {
name string
args args
want []azopenai.ChatMessage
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := getPrompt(tt.args.message); !reflect.DeepEqual(got, tt.want) {
t.Errorf("getPrompt() = %v, want %v", got, tt.want)
}
})
}
}
func Test_getChatCompletionResponse(t *testing.T) {
type args struct {
messages []azopenai.ChatMessage
}
tests := []struct {
name string
args args
want string
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := getChatCompletionResponse(tt.args.messages)
if (err != nil) != tt.wantErr {
t.Errorf("getChatCompletionResponse() error = %v, wantErr %v", err, tt.wantErr)
return
}
if got != tt.want {
t.Errorf("getChatCompletionResponse() = %v, want %v", got, tt.want)
}
})
}
}
func Test_getUserName(t *testing.T) {
tests := []struct {
name string
}{
{
name: "Test_getUserName",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
getUserName()
})
}
}
func Test_formatResponse(t *testing.T) {
type args struct {
response string
}
tests := []struct {
name string
args args
want string
}{
{
name: "Test with pattern1",
args: args{
response: "```Hello World```",
},
want: "Hello World",
},
{
name: "Test with pattern2",
args: args{
response: "```bashHello World```",
},
want: "Hello World",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := formatResponse(tt.args.response); got != tt.want {
t.Errorf("formatResponse() = %v, want %v", got, tt.want)
}
})
}
}
func Test_azureClientOptionsSetAPIVersion(t *testing.T) {
// Test that Azure client creation includes proper API version
// This test verifies the fix for o4-mini model compatibility
clientOptions := &azopenai.ClientOptions{
ClientOptions: policy.ClientOptions{
APIVersion: "2024-12-01-preview",
},
}
// Verify the API version is set correctly
if clientOptions.ClientOptions.APIVersion != "2024-12-01-preview" {
t.Errorf("Expected API version to be '2024-12-01-preview', got '%s'", clientOptions.ClientOptions.APIVersion)
}
}