-
Notifications
You must be signed in to change notification settings - Fork 513
Expand file tree
/
Copy pathChatQueryCodingTests.swift
More file actions
179 lines (159 loc) · 5.29 KB
/
ChatQueryCodingTests.swift
File metadata and controls
179 lines (159 loc) · 5.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
//
// ChatQueryCodingTests.swift
// OpenAI
//
// Created by Oleksii Nezhyborets on 20.05.2025.
//
import Testing
@testable import OpenAI
import Foundation
struct ChatQueryCodingTests {
@Test func encodeUserMessageWithImageContentParts() async throws {
let query = ChatQuery(
messages: [
.user(.init(
content: .contentParts([
.text(.init(text: "What is in this image?")),
.image(.init(
imageUrl: .init(
url: "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg",
detail: nil
)
)),
])
))
],
model: .gpt4_1
)
let expected = """
{
"model": "gpt-4.1",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "What is in this image?"
},
{
"type": "image_url",
"image_url": {
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg"
}
}
]
}
],
"stream": false
}
"""
let encodedQuery = try encodedAndComparable(query)
let decodedExpectation = try decodedAndComparable(expected)
#expect(encodedQuery == decodedExpectation)
}
@Test func encodePredictionWithTextContent() async throws {
let query = ChatQuery(
messages: [],
model: .gpt4_o,
prediction: .staticContent(.init(content: .textContent("text_content")))
)
let expected = """
{
"model": "gpt-4o",
"messages": [],
"prediction": {
"type": "content",
"content": "text_content"
},
"stream": false
}
"""
#expect(try equal(query, expected))
}
@Test func encodeServiceTier() throws {
let query = ChatQuery(messages: [], model: .gpt4_o, serviceTier: .flexTier)
let expected = """
{
"model": "gpt-4o",
"messages": [],
"service_tier": "flex",
"stream": false
}
"""
#expect(try equal(query, expected))
}
@Test func encodeReasoningContent() throws {
let query = ChatQuery(
messages: [
.assistant(.init(content: .textContent("Content"), reasoningContent: "Reasoning"))
],
model: .gpt4_o
)
let expected = """
{
"model": "gpt-4o",
"messages": [
{
"role": "assistant",
"content": "Content",
"reasoning_content": "Reasoning"
}
],
"stream": false
}
"""
#expect(try equal(query, expected))
}
@Test func encodeWebSearchOptions() throws {
let query = ChatQuery(
messages: [],
model: .gpt4_o,
webSearchOptions: .init(
userLocation: .init(
approximate: .init(
country: "Ukraine",
region: "Oblast",
city: "Kyiv",
timezone: "EET"
)
),
searchContextSize: .medium
)
)
let expected = """
{
"model": "gpt-4o",
"messages": [],
"web_search_options": {
"user_location": {
"type": "approximate",
"approximate": {
"country": "Ukraine",
"region": "Oblast",
"city": "Kyiv",
"timezone": "EET"
}
},
"search_context_size": "medium"
},
"stream": false
}
"""
#expect(try equal(query, expected))
}
private func equal(_ query: Codable, _ expected: String) throws -> Bool {
let encodedQuery = try encodedAndComparable(query)
let decodedExpectation = try decodedAndComparable(expected)
return encodedQuery == decodedExpectation
}
private func encodedAndComparable(_ candidate: Codable) throws -> NSDictionary {
try jsonDataAsNSDictionary(try JSONEncoder().encode(candidate))
}
private func decodedAndComparable(_ candidate: String) throws -> NSDictionary {
try jsonDataAsNSDictionary(candidate.data(using: .utf8)!)
}
private func jsonDataAsNSDictionary(_ data: Data) throws -> NSDictionary {
NSDictionary(dictionary: try JSONSerialization.jsonObject(with: data, options: []) as! [String: Any])
}
}