-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathInputActionsEditorTests.cs
More file actions
283 lines (228 loc) · 11.6 KB
/
Copy pathInputActionsEditorTests.cs
File metadata and controls
283 lines (228 loc) · 11.6 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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
#if UNITY_EDITOR && UNITY_6000_0_OR_NEWER
using NUnit.Framework;
using System;
using System.Collections;
using UnityEditor;
using UnityEngine;
using UnityEngine.InputSystem;
using UnityEngine.InputSystem.Editor;
using UnityEngine.TestTools;
using UnityEngine.UIElements;
internal class InputActionsEditorTests : UIToolkitBaseTestWindow<InputActionsEditorWindow>
{
#region setup and teardown
InputActionAsset m_Asset;
public override void OneTimeSetUp()
{
base.OneTimeSetUp();
m_Asset = AssetDatabaseUtils.CreateAsset<InputActionAsset>();
m_Asset.AddControlScheme(new InputControlScheme("test"));
var actionMap = m_Asset.AddActionMap("First Name");
m_Asset.AddActionMap("Second Name");
m_Asset.AddActionMap("Third Name");
actionMap.AddAction("Action One");
actionMap.AddAction("Action Two");
}
public override void OneTimeTearDown()
{
AssetDatabaseUtils.Restore();
base.OneTimeTearDown();
}
public override IEnumerator UnitySetup()
{
m_Window = InputActionsEditorWindow.OpenEditor(m_Asset);
yield return base.UnitySetup();
}
#endregion
#region Helper methods
IEnumerator WaitForActionMapRename(int index, bool isActive, double timeoutSecs = kDefaultTimeoutSecs)
{
return WaitUntil(() =>
{
var actionMapItems = m_Window.rootVisualElement.Q("action-maps-container").Query<InputActionMapsTreeViewItem>().ToList();
if (actionMapItems.Count > index && actionMapItems[index].IsFocused == isActive)
{
return true;
}
return false;
}, $"WaitForActionMapRename {index} {isActive}", timeoutSecs);
}
IEnumerator WaitForActionRename(int index, bool isActive, double timeoutSecs = kDefaultTimeoutSecs)
{
return WaitUntil(() =>
{
var actionItems = m_Window.rootVisualElement.Q("actions-container").Query<InputActionsTreeViewItem>().ToList();
if (actionItems.Count > index && actionItems[index].IsFocused == isActive)
{
return true;
}
return false;
}, $"WaitForActionRename {index} {isActive}", timeoutSecs);
}
#endregion
[Test]
public void CanListActionMaps()
{
var actionMapsContainer = m_Window.rootVisualElement.Q("action-maps-container");
Assert.That(actionMapsContainer, Is.Not.Null);
var actionMapItem = actionMapsContainer.Query<InputActionMapsTreeViewItem>().ToList();
Assert.That(actionMapItem, Is.Not.Null);
Assert.That(actionMapItem.Count, Is.EqualTo(3));
Assert.That(m_Window.currentAssetInEditor.actionMaps[0].name, Is.EqualTo("First Name"));
Assert.That(m_Window.currentAssetInEditor.actionMaps[1].name, Is.EqualTo("Second Name"));
Assert.That(m_Window.currentAssetInEditor.actionMaps[2].name, Is.EqualTo("Third Name"));
}
[UnityTest]
public IEnumerator CanCreateActionMap()
{
var button = m_Window.rootVisualElement.Q<Button>("add-new-action-map-button");
Assume.That(button, Is.Not.Null);
SimulateClickOn(button);
// Wait for the focus to move out the button and start new ActionMaps editon
yield return WaitForActionMapRename(3, isActive: true);
// Rename the new action map
SimulateTypingText("New Name");
// wait for the edition to end
yield return WaitForActionMapRename(3, isActive: false);
// Check on the UI side
var actionMapsContainer = m_Window.rootVisualElement.Q("action-maps-container");
var actionMapItem = actionMapsContainer.Query<InputActionMapsTreeViewItem>().ToList();
Assert.That(actionMapItem, Is.Not.Null);
Assert.That(actionMapItem.Count, Is.EqualTo(4));
Assert.That(actionMapItem[3].Q<Label>("name").text, Is.EqualTo("New Name"));
// Check on the asset side
Assert.That(m_Window.currentAssetInEditor.actionMaps.Count, Is.EqualTo(4));
Assert.That(m_Window.currentAssetInEditor.actionMaps[3].name, Is.EqualTo("New Name"));
}
[UnityTest]
public IEnumerator CanRenameActionMap()
{
var actionMapsContainer = m_Window.rootVisualElement.Q("action-maps-container");
var actionMapItem = actionMapsContainer.Query<InputActionMapsTreeViewItem>().ToList();
Assume.That(actionMapItem[1].Q<Label>("name").text, Is.EqualTo("Second Name"));
// for the selection the prevent some instabilities with current ui intregration
m_Window.rootVisualElement.Q<ListView>("action-maps-list-view").Focus();
m_Window.rootVisualElement.Q<ListView>("action-maps-list-view").selectedIndex = 1;
// changing the selection triggers a state change, wait for the scheduler to process the frame
yield return WaitForSchedulerLoop();
yield return WaitForNotDirty();
yield return WaitForFocus(m_Window.rootVisualElement.Q("action-maps-list-view"));
// refetch the action map item since the ui may have refreshed.
actionMapItem = actionMapsContainer.Query<InputActionMapsTreeViewItem>().ToList();
// clic twice to start the rename
SimulateClickOn(actionMapItem[1]);
// in case of the item is already focused, don't click again
if (!actionMapItem[1].IsFocused)
{
SimulateClickOn(actionMapItem[1]);
}
yield return WaitForActionMapRename(1, isActive: true);
// Rename the new action map
SimulateTypingText("New Name");
// wait for the edition to end
yield return WaitForActionMapRename(1, isActive: false);
// Check on the UI side
actionMapsContainer = m_Window.rootVisualElement.Q("action-maps-container");
Assume.That(actionMapsContainer, Is.Not.Null);
actionMapItem = actionMapsContainer.Query<InputActionMapsTreeViewItem>().ToList();
Assert.That(actionMapItem, Is.Not.Null);
Assert.That(actionMapItem.Count, Is.EqualTo(3));
Assert.That(actionMapItem[1].Q<Label>("name").text, Is.EqualTo("New Name"));
// Check on the asset side
Assert.That(m_Window.currentAssetInEditor.actionMaps.Count, Is.EqualTo(3));
Assert.That(m_Window.currentAssetInEditor.actionMaps[1].name, Is.EqualTo("New Name"));
}
[UnityTest]
public IEnumerator CanDeleteActionMap()
{
var actionMapsContainer = m_Window.rootVisualElement.Q("action-maps-container");
var actionMapItem = actionMapsContainer.Query<InputActionMapsTreeViewItem>().ToList();
Assume.That(actionMapItem[1].Q<Label>("name").text, Is.EqualTo("Second Name"));
// Select the second element
SimulateClickOn(actionMapItem[1]);
yield return WaitForFocus(m_Window.rootVisualElement.Q("action-maps-list-view"));
SimulateDeleteCommand();
yield return WaitUntil(() => actionMapsContainer.Query<InputActionMapsTreeViewItem>().ToList().Count == 2, "wait for element to be deleted");
// Check on the UI side
actionMapItem = actionMapsContainer.Query<InputActionMapsTreeViewItem>().ToList();
Assert.That(actionMapItem.Count, Is.EqualTo(2));
Assert.That(actionMapItem[0].Q<Label>("name").text, Is.EqualTo("First Name"));
Assert.That(actionMapItem[1].Q<Label>("name").text, Is.EqualTo("Third Name"));
// Check on the asset side
Assert.That(m_Window.currentAssetInEditor.actionMaps.Count, Is.EqualTo(2));
Assert.That(m_Window.currentAssetInEditor.actionMaps[0].name, Is.EqualTo("First Name"));
Assert.That(m_Window.currentAssetInEditor.actionMaps[1].name, Is.EqualTo("Third Name"));
}
[UnityTest]
public IEnumerator ActionMapsList_WhenMapDeletedViaKeyboard_ListRetainsFocus()
{
var actionMapsContainer = m_Window.rootVisualElement.Q("action-maps-container");
var listView = m_Window.rootVisualElement.Q<ListView>("action-maps-list-view");
// Select an action map and make sure the list holds keyboard focus before deleting.
var actionMapItem = actionMapsContainer.Query<InputActionMapsTreeViewItem>().ToList();
SimulateClickOn(actionMapItem[1]);
yield return WaitForFocus(listView);
SimulateDeleteCommand();
yield return WaitUntil(() => actionMapsContainer.Query<InputActionMapsTreeViewItem>().ToList().Count == 2, "wait for element to be deleted");
// After the post-delete rebuild destroys the previously focused row, focus must be
// returned to the list so keyboard shortcuts keep flowing without an extra click.
yield return WaitForFocus(listView);
Assert.That(listView.focusController.focusedElement, Is.EqualTo(listView));
}
[UnityTest]
public IEnumerator CanRenameAction()
{
var actionContainer = m_Window.rootVisualElement.Q("actions-container");
var actionItem = actionContainer.Query<InputActionsTreeViewItem>().ToList();
Assume.That(actionItem[1].Q<Label>("name").text, Is.EqualTo("Action Two"));
m_Window.rootVisualElement.Q<TreeView>("actions-tree-view").Focus();
m_Window.rootVisualElement.Q<TreeView>("actions-tree-view").selectedIndex = 1;
// Selection change triggers a state change, wait for the scheduler to process the frame
yield return WaitForSchedulerLoop();
yield return WaitForNotDirty();
yield return WaitForFocus(m_Window.rootVisualElement.Q<TreeView>("actions-tree-view"));
// Re-fetch the actions since the UI may have refreshed.
actionItem = actionContainer.Query<InputActionsTreeViewItem>().ToList();
SimulateClickOn(actionItem[1]);
yield return WaitForNotDirty();
// If the item is already focused, don't click again
if (!actionItem[1].IsFocused)
{
SimulateClickOn(actionItem[1]);
}
yield return WaitForActionRename(1, isActive: true);
// Rename the action
SimulateTypingText("New Name");
// Wait for rename to end and focus to return from text field
yield return WaitForSchedulerLoop();
yield return WaitForFocus(m_Window.rootVisualElement.Q<TreeView>("actions-tree-view"));
// Check on the UI side
actionContainer = m_Window.rootVisualElement.Q("actions-container");
Assume.That(actionContainer, Is.Not.Null);
actionItem = actionContainer.Query<InputActionsTreeViewItem>().ToList();
Assert.That(actionItem, Is.Not.Null);
Assert.That(actionItem.Count, Is.EqualTo(2));
Assert.That(actionItem[1].Q<Label>("name").text, Is.EqualTo("New Name"));
// Check on the asset side
Assert.That(m_Window.currentAssetInEditor.actionMaps[0].actions[1].name, Is.EqualTo("New Name"));
}
/// <summary>
/// <see href="https://jira.unity3d.com/browse/ISXB-1607">ISXB-1607</see>
/// Fix an out of range exception when pressing undo after creating and editing a new control scheme.
/// </summary>
/// <returns></returns>
[UnityTest]
[Ignore("Currently this is difficult to test, Darren - re-visit once we have converted the advanced dropdown to UIToolkit")]
public IEnumerator CanUndoActionMap_ControlSchemeEdit()
{
var controlSchemeToolbarMenu = m_Window.rootVisualElement.Q("control-schemes-toolbar-menu");
// changing the selection triggers a state change, wait for the scheduler to process the frame
yield return WaitForSchedulerLoop();
yield return WaitForNotDirty();
SimulateClickOn(controlSchemeToolbarMenu);
yield return WaitForSchedulerLoop();
yield return WaitForNotDirty();
yield return WaitForFocus(m_Window.rootVisualElement.Q("control-schemes-toolbar-menu"));
}
}
#endif