forked from dotnet/extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFunctionCallContentTests..cs
328 lines (284 loc) · 12.6 KB
/
FunctionCallContentTests..cs
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text.Json;
using System.Text.Json.Nodes;
using System.Threading;
using System.Threading.Tasks;
using Xunit;
namespace Microsoft.Extensions.AI;
public class FunctionCallContentTests
{
[Fact]
public void Constructor_PropsDefault()
{
FunctionCallContent c = new("callId1", "name");
Assert.Null(c.RawRepresentation);
Assert.Null(c.AdditionalProperties);
Assert.Equal("callId1", c.CallId);
Assert.Equal("name", c.Name);
Assert.Null(c.Arguments);
Assert.Null(c.Exception);
}
[Fact]
public void Constructor_ArgumentsRoundtrip()
{
Dictionary<string, object?> args = [];
FunctionCallContent c = new("id", "name", args);
Assert.Null(c.RawRepresentation);
Assert.Null(c.AdditionalProperties);
Assert.Equal("name", c.Name);
Assert.Equal("id", c.CallId);
Assert.Same(args, c.Arguments);
}
[Fact]
public void Constructor_PropsRoundtrip()
{
FunctionCallContent c = new("callId1", "name");
Assert.Null(c.RawRepresentation);
object raw = new();
c.RawRepresentation = raw;
Assert.Same(raw, c.RawRepresentation);
Assert.Null(c.AdditionalProperties);
AdditionalPropertiesDictionary props = new() { { "key", "value" } };
c.AdditionalProperties = props;
Assert.Same(props, c.AdditionalProperties);
Assert.Equal("callId1", c.CallId);
Assert.Null(c.Arguments);
AdditionalPropertiesDictionary args = new() { { "key", "value" } };
c.Arguments = args;
Assert.Same(args, c.Arguments);
Assert.Null(c.Exception);
Exception e = new();
c.Exception = e;
Assert.Same(e, c.Exception);
}
[Fact]
public void ItShouldBeSerializableAndDeserializableWithException()
{
// Arrange
var ex = new InvalidOperationException("hello", new NullReferenceException("bye"));
var sut = new FunctionCallContent("callId1", "functionName", new Dictionary<string, object?> { ["key"] = "value" }) { Exception = ex };
// Act
var json = JsonSerializer.SerializeToNode(sut, TestJsonSerializerContext.Default.Options);
var deserializedSut = JsonSerializer.Deserialize<FunctionCallContent>(json, TestJsonSerializerContext.Default.Options);
// Assert
Assert.NotNull(deserializedSut);
Assert.Equal("callId1", deserializedSut.CallId);
Assert.Equal("functionName", deserializedSut.Name);
Assert.NotNull(deserializedSut.Arguments);
Assert.Single(deserializedSut.Arguments);
Assert.Null(deserializedSut.Exception);
}
[Fact]
public async Task AIFunctionFactory_ObjectValues_Converted()
{
Dictionary<string, object?> arguments = new()
{
["a"] = new DayOfWeek[] { DayOfWeek.Monday, DayOfWeek.Tuesday, DayOfWeek.Wednesday },
["b"] = 123.4M,
["c"] = "072c2d93-7cf6-4d0d-aebc-acc51e6ee7ee",
["d"] = new ReadOnlyDictionary<string, string>((new Dictionary<string, string>
{
["p1"] = "42",
["p2"] = "43",
})),
};
AIFunction function = AIFunctionFactory.Create((DayOfWeek[] a, double b, Guid c, Dictionary<string, string> d) => b, serializerOptions: TestJsonSerializerContext.Default.Options);
var result = await function.InvokeAsync(arguments);
AssertExtensions.EqualFunctionCallResults(123.4, result);
}
[Fact]
public async Task AIFunctionFactory_JsonElementValues_ValuesDeserialized()
{
Dictionary<string, object?> arguments = JsonSerializer.Deserialize<Dictionary<string, object?>>("""
{
"a": ["Monday", "Tuesday", "Wednesday"],
"b": 123.4,
"c": "072c2d93-7cf6-4d0d-aebc-acc51e6ee7ee",
"d": {
"property1": "42",
"property2": "43",
"property3": "44"
}
}
""", TestJsonSerializerContext.Default.Options)!;
Assert.All(arguments.Values, v => Assert.IsType<JsonElement>(v));
AIFunction function = AIFunctionFactory.Create((DayOfWeek[] a, double b, Guid c, Dictionary<string, string> d) => b, serializerOptions: TestJsonSerializerContext.Default.Options);
var result = await function.InvokeAsync(arguments);
AssertExtensions.EqualFunctionCallResults(123.4, result);
}
[Fact]
public void AIFunctionFactory_WhenTypesUnknownByContext_Throws()
{
var ex = Assert.Throws<NotSupportedException>(() => AIFunctionFactory.Create((CustomType arg) => { }, serializerOptions: TestJsonSerializerContext.Default.Options));
Assert.Contains("JsonTypeInfo metadata", ex.Message);
Assert.Contains(nameof(CustomType), ex.Message);
ex = Assert.Throws<NotSupportedException>(() => AIFunctionFactory.Create(() => new CustomType(), serializerOptions: TestJsonSerializerContext.Default.Options));
Assert.Contains("JsonTypeInfo metadata", ex.Message);
Assert.Contains(nameof(CustomType), ex.Message);
}
[Fact]
public async Task AIFunctionFactory_JsonDocumentValues_ValuesDeserialized()
{
var arguments = JsonSerializer.Deserialize<Dictionary<string, JsonDocument>>("""
{
"a": ["Monday", "Tuesday", "Wednesday"],
"b": 123.4,
"c": "072c2d93-7cf6-4d0d-aebc-acc51e6ee7ee",
"d": {
"property1": "42",
"property2": "43",
"property3": "44"
}
}
""", TestJsonSerializerContext.Default.Options)!.ToDictionary(k => k.Key, k => (object?)k.Value);
AIFunction function = AIFunctionFactory.Create((DayOfWeek[] a, double b, Guid c, Dictionary<string, string> d) => b, serializerOptions: TestJsonSerializerContext.Default.Options);
var result = await function.InvokeAsync(arguments);
AssertExtensions.EqualFunctionCallResults(123.4, result);
}
[Fact]
public async Task AIFunctionFactory_JsonNodeValues_ValuesDeserialized()
{
var arguments = JsonSerializer.Deserialize<Dictionary<string, JsonNode>>("""
{
"a": ["Monday", "Tuesday", "Wednesday"],
"b": 123.4,
"c": "072c2d93-7cf6-4d0d-aebc-acc51e6ee7ee",
"d": {
"property1": "42",
"property2": "43",
"property3": "44"
}
}
""", TestJsonSerializerContext.Default.Options)!.ToDictionary(k => k.Key, k => (object?)k.Value);
AIFunction function = AIFunctionFactory.Create((DayOfWeek[] a, double b, Guid c, Dictionary<string, string> d) => b, serializerOptions: TestJsonSerializerContext.Default.Options);
var result = await function.InvokeAsync(arguments);
AssertExtensions.EqualFunctionCallResults(123.4, result);
}
[Fact]
public async Task TypelessAIFunction_JsonDocumentValues_AcceptsArguments()
{
var arguments = JsonSerializer.Deserialize<Dictionary<string, JsonDocument>>("""
{
"a": "string",
"b": 123.4,
"c": true,
"d": false,
"e": ["Monday", "Tuesday", "Wednesday"],
"f": null
}
""", TestJsonSerializerContext.Default.Options)!.ToDictionary(k => k.Key, k => (object?)k.Value);
var result = await NetTypelessAIFunction.Instance.InvokeAsync(arguments);
Assert.Same(result, arguments);
}
[Fact]
public async Task TypelessAIFunction_JsonElementValues_AcceptsArguments()
{
Dictionary<string, object?> arguments = JsonSerializer.Deserialize<Dictionary<string, object?>>("""
{
"a": "string",
"b": 123.4,
"c": true,
"d": false,
"e": ["Monday", "Tuesday", "Wednesday"],
"f": null
}
""", TestJsonSerializerContext.Default.Options)!;
var result = await NetTypelessAIFunction.Instance.InvokeAsync(arguments);
Assert.Same(result, arguments);
}
[Fact]
public async Task TypelessAIFunction_JsonNodeValues_AcceptsArguments()
{
var arguments = JsonSerializer.Deserialize<Dictionary<string, JsonNode>>("""
{
"a": "string",
"b": 123.4,
"c": true,
"d": false,
"e": ["Monday", "Tuesday", "Wednesday"],
"f": null
}
""", TestJsonSerializerContext.Default.Options)!.ToDictionary(k => k.Key, k => (object?)k.Value);
var result = await NetTypelessAIFunction.Instance.InvokeAsync(arguments);
Assert.Same(result, arguments);
}
private sealed class CustomType;
private sealed class NetTypelessAIFunction : AIFunction
{
public static NetTypelessAIFunction Instance { get; } = new NetTypelessAIFunction();
public override string Name => "NetTypeless";
public override string Description => "AIFunction with parameters that lack .NET types";
protected override Task<object?> InvokeCoreAsync(
IEnumerable<KeyValuePair<string, object?>>? arguments,
IServiceProvider? services,
CancellationToken cancellationToken) =>
Task.FromResult<object?>(arguments);
}
[Fact]
public static void CreateFromParsedArguments_ObjectJsonInput_ReturnsElementArgumentDictionary()
{
var content = FunctionCallContent.CreateFromParsedArguments(
"""{"Key1":{}, "Key2":null, "Key3" : [], "Key4" : 42, "Key5" : true }""",
"callId",
"functionName",
argumentParser: static json => JsonSerializer.Deserialize<Dictionary<string, object?>>(json));
Assert.NotNull(content);
Assert.Null(content.Exception);
Assert.NotNull(content.Arguments);
Assert.Equal(5, content.Arguments.Count);
Assert.Collection(content.Arguments,
kvp =>
{
Assert.Equal("Key1", kvp.Key);
Assert.True(kvp.Value is JsonElement { ValueKind: JsonValueKind.Object });
},
kvp =>
{
Assert.Equal("Key2", kvp.Key);
Assert.Null(kvp.Value);
},
kvp =>
{
Assert.Equal("Key3", kvp.Key);
Assert.True(kvp.Value is JsonElement { ValueKind: JsonValueKind.Array });
},
kvp =>
{
Assert.Equal("Key4", kvp.Key);
Assert.True(kvp.Value is JsonElement { ValueKind: JsonValueKind.Number });
},
kvp =>
{
Assert.Equal("Key5", kvp.Key);
Assert.True(kvp.Value is JsonElement { ValueKind: JsonValueKind.True });
});
}
[Theory]
[InlineData(typeof(JsonException))]
[InlineData(typeof(InvalidOperationException))]
[InlineData(typeof(NotSupportedException))]
public static void CreateFromParsedArguments_ParseException_HasExpectedHandling(Type exceptionType)
{
var exc = (Exception)Activator.CreateInstance(exceptionType)!;
var content = FunctionCallContent.CreateFromParsedArguments(exc, "callId", "functionName", ThrowingParser);
Assert.Equal("functionName", content.Name);
Assert.Equal("callId", content.CallId);
Assert.Null(content.Arguments);
Assert.IsType<InvalidOperationException>(content.Exception);
Assert.Same(exc, content.Exception.InnerException);
static Dictionary<string, object?> ThrowingParser(Exception ex) => throw ex;
}
[Fact]
public static void CreateFromParsedArguments_NullInput_ThrowsArgumentNullException()
{
Assert.Throws<ArgumentNullException>("encodedArguments", () => FunctionCallContent.CreateFromParsedArguments((string)null!, "callId", "functionName", _ => null));
Assert.Throws<ArgumentNullException>("callId", () => FunctionCallContent.CreateFromParsedArguments("{}", null!, "functionName", _ => null));
Assert.Throws<ArgumentNullException>("name", () => FunctionCallContent.CreateFromParsedArguments("{}", "callId", null!, _ => null));
Assert.Throws<ArgumentNullException>("argumentParser", () => FunctionCallContent.CreateFromParsedArguments("{}", "callId", "functionName", null!));
}
}