-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathBatchExecuteKeyPreservationTests.cs
More file actions
235 lines (209 loc) · 8.92 KB
/
BatchExecuteKeyPreservationTests.cs
File metadata and controls
235 lines (209 loc) · 8.92 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
using NUnit.Framework;
using UnityEngine;
using UnityEngine.Events;
using UnityEditor;
using Newtonsoft.Json.Linq;
using MCPForUnity.Editor.Tools;
using TestNamespace;
namespace MCPForUnityTests.Editor.Tools
{
/// <summary>
/// Verifies that batch_execute only normalizes top-level parameter keys (snake_case → camelCase)
/// and preserves nested value keys (e.g. Unity serialized property paths like m_PersistentCalls).
/// </summary>
public class BatchExecuteKeyPreservationTests
{
private GameObject testGo;
[OneTimeSetUp]
public void OneTimeSetUp()
{
CommandRegistry.Initialize();
}
[SetUp]
public void SetUp()
{
testGo = new GameObject("BatchKeyTestGO");
}
[TearDown]
public void TearDown()
{
if (testGo != null)
Object.DestroyImmediate(testGo);
}
[Test]
public void NestedValueKeys_WithUnderscores_ArePreservedThroughBatch()
{
testGo.AddComponent<UnityEventTestComponent>();
int targetId = testGo.GetInstanceID();
var batchParams = new JObject
{
["commands"] = new JArray
{
new JObject
{
["tool"] = "manage_components",
["params"] = new JObject
{
["action"] = "set_property",
["target"] = testGo.name,
["search_method"] = "by_name",
["component_type"] = "UnityEventTestComponent",
["property"] = "onSimpleEvent",
["value"] = JObject.Parse(@"{
""m_PersistentCalls"": {
""m_Calls"": [
{
""m_Target"": { ""instanceID"": " + targetId + @" },
""m_TargetAssemblyTypeName"": ""UnityEngine.GameObject, UnityEngine"",
""m_MethodName"": ""SetActive"",
""m_Mode"": 6,
""m_Arguments"": { ""m_BoolArgument"": true },
""m_CallState"": 2
}
]
}
}")
}
}
}
};
var result = BatchExecute.HandleCommand(batchParams).GetAwaiter().GetResult();
var resultObj = JObject.FromObject(result);
Assert.IsTrue(resultObj.Value<bool>("success"), $"Batch should succeed: {resultObj}");
// Verify the nested m_PersistentCalls keys were preserved (not mangled to mPersistentCalls)
var comp = testGo.GetComponent<UnityEventTestComponent>();
var so = new SerializedObject(comp);
var callsProp = so.FindProperty("onSimpleEvent.m_PersistentCalls.m_Calls");
Assert.IsNotNull(callsProp, "m_Calls property should exist");
Assert.AreEqual(1, callsProp.arraySize, "Should have 1 persistent call");
Assert.AreEqual("SetActive",
callsProp.GetArrayElementAtIndex(0).FindPropertyRelative("m_MethodName").stringValue);
}
[Test]
public void TopLevelParameterKeys_AreStillNormalized()
{
testGo.AddComponent<AudioSource>();
// Use snake_case top-level keys: search_method, component_type
var batchParams = new JObject
{
["commands"] = new JArray
{
new JObject
{
["tool"] = "manage_components",
["params"] = new JObject
{
["action"] = "set_property",
["target"] = testGo.name,
["search_method"] = "by_name",
["component_type"] = "AudioSource",
["property"] = "volume",
["value"] = 0.42f
}
}
}
};
var result = BatchExecute.HandleCommand(batchParams).GetAwaiter().GetResult();
var resultObj = JObject.FromObject(result);
Assert.IsTrue(resultObj.Value<bool>("success"),
$"Batch with snake_case top-level keys should succeed: {resultObj}");
Assert.AreEqual(0.42f, testGo.GetComponent<AudioSource>().volume, 0.001f);
}
[Test]
public void Regression_CreateGameObject_StillWorksViaBatch()
{
string goName = "BatchCreatedGO_" + System.Guid.NewGuid().ToString("N").Substring(0, 8);
GameObject created = null;
try
{
var batchParams = new JObject
{
["commands"] = new JArray
{
new JObject
{
["tool"] = "manage_gameobject",
["params"] = new JObject
{
["action"] = "create",
["name"] = goName,
["primitive_type"] = "Cube"
}
}
}
};
var result = BatchExecute.HandleCommand(batchParams).GetAwaiter().GetResult();
var resultObj = JObject.FromObject(result);
Assert.IsTrue(resultObj.Value<bool>("success"), $"Batch create GO should succeed: {resultObj}");
created = GameObject.Find(goName);
Assert.IsNotNull(created, $"GameObject '{goName}' should exist in scene");
}
finally
{
if (created != null)
Object.DestroyImmediate(created);
}
}
[Test]
public void StructuredJsonStrings_InCommandParams_AreParsedBeforeDispatch()
{
var light = testGo.AddComponent<Light>();
testGo.name = "BatchStructuredJson_" + System.Guid.NewGuid().ToString("N").Substring(0, 8);
var batchParams = new JObject
{
["commands"] = new JArray
{
new JObject
{
["tool"] = "manage_components",
["params"] = new JObject
{
["action"] = "set_property",
["target"] = testGo.name,
["search_method"] = "by_name",
["component_type"] = "Light",
["property"] = "color",
["value"] = "[0.0, 1.0, 1.0, 1.0]"
}
}
}
};
var result = BatchExecute.HandleCommand(batchParams).GetAwaiter().GetResult();
var resultObj = JObject.FromObject(result);
Assert.IsTrue(resultObj.Value<bool>("success"), $"Batch should succeed: {resultObj}");
Assert.AreEqual(new Color(0f, 1f, 1f, 1f), light.color);
}
[Test]
public void PlainStrings_InCommandParams_ArePreserved()
{
testGo.AddComponent<CustomComponent>();
var batchParams = new JObject
{
["commands"] = new JArray
{
new JObject
{
["tool"] = "manage_components",
["params"] = new JObject
{
["action"] = "set_property",
["target"] = testGo.name,
["search_method"] = "by_name",
["component_type"] = "CustomComponent",
["property"] = "customText",
["value"] = "Player One"
}
}
}
};
var result = BatchExecute.HandleCommand(batchParams).GetAwaiter().GetResult();
var resultObj = JObject.FromObject(result);
Assert.IsTrue(resultObj.Value<bool>("success"), $"Batch should succeed: {resultObj}");
Assert.AreEqual("Player One",
testGo.GetComponent<CustomComponent>()
.GetType()
.GetField("customText", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
?.GetValue(testGo.GetComponent<CustomComponent>()) as string);
}
}
}