-
Notifications
You must be signed in to change notification settings - Fork 665
Expand file tree
/
Copy pathRequestOptionsTests.cs
More file actions
263 lines (209 loc) · 7.56 KB
/
RequestOptionsTests.cs
File metadata and controls
263 lines (209 loc) · 7.56 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
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
using System.Text.Json;
using System.Text.Json.Nodes;
using ModelContextProtocol.Protocol;
namespace ModelContextProtocol.Tests;
public static class RequestOptionsTests
{
[Fact]
public static void DefaultConstructor_AllPropertiesNull()
{
RequestOptions options = new();
Assert.Null(options.Meta);
Assert.Null(options.ProgressToken);
Assert.Null(options.JsonSerializerOptions);
}
[Fact]
public static void Meta_GetSet_RoundTrips()
{
RequestOptions options = new();
JsonObject meta = new() { ["key"] = "value" };
for (int i = 0; i < 2; i++)
{
options.Meta = meta;
Assert.Same(meta, options.Meta);
Assert.Null(options.ProgressToken);
options.Meta = null;
Assert.Null(options.Meta);
Assert.Null(options.ProgressToken);
}
}
[Fact]
public static void ProgressToken_GetSet_RoundTrips()
{
RequestOptions options = new();
ProgressToken token = new("my-token");
for (int i = 0; i < 2; i++)
{
options.ProgressToken = token;
Assert.Equal(token, options.ProgressToken);
Assert.Null(options.Meta);
options.ProgressToken = null;
Assert.Null(options.ProgressToken);
Assert.Null(options.Meta);
}
}
[Fact]
public static void ProgressToken_DoesNotAffectMeta()
{
RequestOptions options = new() { Meta = new JsonObject { ["existing"] = "data" } };
options.ProgressToken = new ProgressToken("my-token");
Assert.False(options.Meta.ContainsKey("progressToken"));
Assert.Equal("data", options.Meta["existing"]?.ToString());
}
[Fact]
public static void Meta_DoesNotAffectProgressToken()
{
RequestOptions options = new() { ProgressToken = new ProgressToken("original") };
options.Meta = new JsonObject { ["progressToken"] = "in-meta" };
Assert.Equal("original", options.ProgressToken?.ToString());
}
[Fact]
public static void JsonSerializerOptions_GetSet_RoundTrips()
{
RequestOptions options = new();
JsonSerializerOptions serializerOptions = new() { WriteIndented = true };
for (int i = 0; i < 2; i++)
{
options.JsonSerializerOptions = serializerOptions;
Assert.Same(serializerOptions, options.JsonSerializerOptions);
options.JsonSerializerOptions = null;
Assert.Null(options.JsonSerializerOptions);
}
}
[Fact]
public static void GetMetaForRequest_BothNull_ReturnsNull()
{
RequestOptions options = new();
var actual = options.GetMetaForRequest();
Assert.Null(actual);
}
[Fact]
public static void GetMetaForRequest_OnlyMetaSet_ReturnsMeta()
{
JsonObject meta = new() { ["key"] = "value" };
RequestOptions options = new() { Meta = meta };
var actual = options.GetMetaForRequest();
Assert.Same(meta, actual);
}
[Fact]
public static void GetMetaForRequest_OnlyProgressTokenSet_ReturnsNewObjectWithToken()
{
RequestOptions options = new() { ProgressToken = new ProgressToken("my-token") };
var actual = options.GetMetaForRequest();
Assert.NotNull(actual);
Assert.Single(actual);
Assert.Equal("my-token", actual["progressToken"]?.ToString());
Assert.NotSame(actual, options.Meta);
Assert.NotSame(actual, options.GetMetaForRequest());
}
[Fact]
public static void GetMetaForRequest_OnlyProgressTokenSetAsLong_ReturnsNewObjectWithToken()
{
RequestOptions options = new() { ProgressToken = new ProgressToken(42L) };
var actual = options.GetMetaForRequest();
Assert.NotNull(actual);
Assert.Single(actual);
Assert.Equal("42", actual["progressToken"]?.ToString());
Assert.NotSame(actual, options.Meta);
Assert.NotSame(actual, options.GetMetaForRequest());
}
[Fact]
public static void GetMetaForRequest_BothSet_ReturnsCloneWithProgressToken()
{
JsonObject meta = new() { ["custom"] = "data" };
RequestOptions options = new()
{
Meta = meta,
ProgressToken = new ProgressToken("my-token")
};
var actual = options.GetMetaForRequest();
Assert.NotNull(actual);
Assert.NotSame(meta, actual);
Assert.Equal("data", actual["custom"]?.ToString());
Assert.Equal("my-token", actual["progressToken"]?.ToString());
Assert.NotSame(actual, options.Meta);
Assert.NotSame(actual, options.GetMetaForRequest());
}
[Fact]
public static void GetMetaForRequest_BothSet_DoesNotModifyOriginalMeta()
{
JsonObject meta = new() { ["custom"] = "data" };
RequestOptions options = new()
{
Meta = meta,
ProgressToken = new ProgressToken("my-token")
};
_ = options.GetMetaForRequest();
Assert.False(meta.ContainsKey("progressToken"));
Assert.Single(meta);
}
[Fact]
public static void GetMetaForRequest_MetaHasProgressToken_OverwrittenByProperty()
{
JsonObject meta = new()
{
["custom"] = "data",
["progressToken"] = "meta-token"
};
RequestOptions options = new()
{
Meta = meta,
ProgressToken = new ProgressToken("property-token")
};
var actual = options.GetMetaForRequest();
Assert.Equal("property-token", actual!["progressToken"]?.ToString());
Assert.Equal("data", actual["custom"]?.ToString());
}
[Fact]
public static void GetMetaForRequest_MetaHasProgressToken_NoPropertyToken_PreservesMetaToken()
{
JsonObject meta = new()
{
["custom"] = "data",
["progressToken"] = "meta-token"
};
RequestOptions options = new() { Meta = meta };
var actual = options.GetMetaForRequest();
Assert.Same(meta, actual);
Assert.Equal("meta-token", actual!["progressToken"]?.ToString());
}
[Fact]
public static void GetMetaForRequest_CalledMultipleTimes_ReturnsNewCloneEachTime()
{
RequestOptions options = new()
{
Meta = new JsonObject { ["key"] = "value" },
ProgressToken = new ProgressToken("token")
};
var actual1 = options.GetMetaForRequest();
var actual2 = options.GetMetaForRequest();
Assert.NotSame(actual1, actual2);
Assert.Equal(actual1!.ToJsonString(), actual2!.ToJsonString());
}
[Fact]
public static void GetMetaForRequest_OnlyMeta_SameInstanceOnMultipleCalls()
{
JsonObject meta = new() { ["key"] = "value" };
RequestOptions options = new() { Meta = meta };
var actual1 = options.GetMetaForRequest();
var actual2 = options.GetMetaForRequest();
Assert.Same(actual1, actual2);
Assert.Same(meta, actual1);
}
[Fact]
public static void AllProperties_CanBeSetIndependently()
{
JsonObject meta = new() { ["field"] = "value" };
ProgressToken token = new("independent");
JsonSerializerOptions serializerOptions = new() { WriteIndented = true };
RequestOptions options = new()
{
Meta = meta,
ProgressToken = token,
JsonSerializerOptions = serializerOptions
};
Assert.Same(meta, options.Meta);
Assert.Equal(token, options.ProgressToken);
Assert.Same(serializerOptions, options.JsonSerializerOptions);
}
}