alielie
2026-09-10 9ec80cafc23f5ee3278cacce3c9f86f4087b435a
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
using AddInPlugin;
using AddInPlugin.Entity;
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using GongSolutions.Wpf.DragDrop;
using OpenTap;
using OpenTap.Plugins.BasicSteps;
using OpenTapEditor.UI;
using OpenTapEditor.Util;
using System.Collections.Concurrent;
using System.Collections.ObjectModel;
using System.IO;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using UILib;
 
namespace OpenTapEditor
{
    /// <summary>
    /// StepTree.xaml 的交互逻辑
    /// </summary>
    [ObservableObject]
    public partial class StepTree : UserControl
    {
        public event RoutedPropertyChangedEventHandler<object> SelectedItemChanged;
 
        [ObservableProperty]
        private TestStepList datasource;
 
        partial void OnDatasourceChanged(TestStepList value)
        {
            DebugIds.CollectionChanged -= DebugIds_CollectionChanged;
            DebugIds = value?.DebugIds ?? new ObservableCollection<Guid>();
            DebugIds.CollectionChanged += DebugIds_CollectionChanged;
        }
 
        private void DebugIds_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
        {
            OnPropertyChanged(nameof(DebugIds));
        }
 
        [ObservableProperty]
        ObservableCollection<Guid> debugIds = new ObservableCollection<Guid>();
 
        [ObservableProperty]
        private Guid debugStepId = Guid.Empty;
 
        [ObservableProperty]
        private Guid runningStepId = Guid.Empty;
 
        [ObservableProperty]
        private ConcurrentDictionary<Guid, bool> complatedIds = new ConcurrentDictionary<Guid, bool>();
 
        public void UpdateStepStatus()
        {
            OnPropertyChanged(nameof(ComplatedIds));
        }
 
        public TestPlan Plan { get; set; }
 
        public IDropTarget DragHandler { get; set; } = new StepTreeDragHandler();
 
        private ITestStep SelectedStep;
 
        [ObservableProperty]
        private TestStepList selectedSteps = new TestStepList();
 
        public StepTree()
        {
            DataContext = this;
            InitializeComponent();
        }
 
        [RelayCommand]
        public void CopyStep()
        {
            //if (SelectedStep != null)
            //{
            //    CopyStep(SelectedStep);
            //}
            CopyStep(null);
        }
 
        [RelayCommand]
        public void PasteStep()
        {
            PasteStep(SelectedStep);
        }
 
        [RelayCommand]
        public void DeleteStep()
        {
            if (SelectedStep != null)
            {
                DeleteStep(SelectedStep);
            }
        }
 
        public List<object> RefreshMenuItems(ITestStep selectedStep, bool addChild)
        {
            var allSteps = StepTypeLoader.Steps;
            var StepMenuItems = new List<object>(allSteps.Count);
            Dictionary<string, MenuItem> groupMap = new Dictionary<string, MenuItem>();
            Dictionary<string, MenuItem> groupAdapMap = new Dictionary<string, MenuItem>();
 
            foreach (ITypeData stepType in allSteps)
            {
                var display = stepType.GetAttribute<DisplayAttribute>();
                if (display == null)
                {
                    continue;
                }
                MenuItem groupItem = null;
 
                var groups = display.Group;
                if (groups.Length > 0)
                {
                    var group = groups[groups.Length - 1];
                    if (!string.IsNullOrEmpty(group))
                    {
                        if (!groupMap.ContainsKey(group))
                        {
                            groupMap[group] = new MenuItem() { Header = group };
                            StepMenuItems.Add(groupMap[group]);
                        }
                        groupItem = groupMap[group];
                    }
                }
 
 
                TypeData data = stepType as TypeData;
                StepTypeMenuItem menuItem = new StepTypeMenuItem();
                string des = string.IsNullOrEmpty(display.Description) ? "" : $"  ({display.Description})";
                menuItem.Header = $"{display.Name}{des}";
                menuItem.Click += addChild ? Add_Child_Step_Click : Add_Generaic_Step_Click;
                menuItem.TypeData = stepType;
                menuItem.Tag = selectedStep;
 
                if (!addChild)
                {
                    var parent = selectedStep?.Parent?.GetType() ?? typeof(TestPlan);
                    menuItem.IsEnabled = parent == null || TestStepList.AllowChild(parent, data.Type);
                }
                else
                {
                    menuItem.IsEnabled = (selectedStep != null && TestStepList.AllowChild(selectedStep.GetType(), data.Type));
                }
                if (groupItem != null)
                {
                    groupItem.Items.Add(menuItem);
                }
                else
                {
                    StepMenuItems.Add(menuItem);
                }
            }
 
            if (StepTypeLoader.CustomSteps != null && StepTypeLoader.CustomSteps.Count > 0)
            {
                StepMenuItems.Add(new Separator { });
 
                foreach (AdapterData stepType in StepTypeLoader.CustomSteps)
                {
                    MenuItem groupItem = null;
                    if (!string.IsNullOrEmpty(stepType.GroupBy))
                    {
                        if (!groupAdapMap.ContainsKey(stepType.GroupBy))
                        {
                            groupAdapMap[stepType.GroupBy] = new MenuItem
                            {
                                Header = stepType.GroupBy
                            };
                            StepMenuItems.Add(groupAdapMap[stepType.GroupBy]);
                        }
                        groupItem = groupAdapMap[stepType.GroupBy];
                    }
 
 
                    StepTypeMenuItem menuItem = new StepTypeMenuItem();
                    menuItem.Header = stepType.Name;
                    menuItem.Click += addChild ? Add_Child_Step_Click : Add_Generaic_Step_Click;
                    menuItem.TypeData = stepType;
                    menuItem.Tag = selectedStep;
 
                    menuItem.IsEnabled = !addChild || (selectedStep != null && TestStepList.AllowChild(selectedStep?.GetType(), typeof(AdapterData)));
 
                    if (groupItem != null)
                    {
                        groupItem.Items.Add(menuItem);
                    }
                    else
                    {
                        StepMenuItems.Add(menuItem);
                    }
                }
            }
            return StepMenuItems;
        }
 
        private void treeList_SelectedItemChanged(object sender, RoutedPropertyChangedEventArgs<object> e)
        {
        }
 
        /// <summary>
        /// 显示菜单
        /// </summary>
        /// <param name="positionItem"></param>
        private void CreateContextMenu(ITestStep obj)
        {
            ContextMenu contextMenu = new ContextMenu();
            MenuItem menuItem = new MenuItem();
            menuItem.SetValue(MenuItem.HeaderProperty, new DynamicResourceExtension("插入Step").ProvideValue(null));
            menuItem.Tag = obj;
            foreach (var item in RefreshMenuItems(obj, false))
            {
                menuItem.Items.Add(item);
            }
            contextMenu.Items.Add(menuItem);
 
            if (obj != null)
            {
                menuItem = new MenuItem();
                menuItem.SetValue(MenuItem.HeaderProperty, new DynamicResourceExtension("插入子Step").ProvideValue(null));
                menuItem.Tag = obj;
                foreach (var item in RefreshMenuItems(obj, true))
                {
                    menuItem.Items.Add(item);
                }
                contextMenu.Items.Add(menuItem);
            }
 
            if (obj != null)
            {
                menuItem = new MenuItem();
                menuItem.SetValue(MenuItem.HeaderProperty, new DynamicResourceExtension("复制").ProvideValue(null));
                menuItem.InputGestureText = "Ctrl + C";
                menuItem.Click += Copy_Step_Click;
                menuItem.Tag = obj;
                contextMenu.Items.Add(menuItem);
            }
 
            menuItem = new MenuItem();
            menuItem.SetValue(MenuItem.HeaderProperty, new DynamicResourceExtension("粘贴").ProvideValue(null));
            menuItem.InputGestureText = "Ctrl + V";
            menuItem.Click += Paste_Step_Click;
            menuItem.Tag = obj;
            contextMenu.Items.Add(menuItem);
 
            if (obj != null)
            {
                menuItem = new MenuItem();
                menuItem.SetValue(MenuItem.HeaderProperty, new DynamicResourceExtension("删除").ProvideValue(null));
                menuItem.InputGestureText = "Delete";
                menuItem.Click += Delete_Step_Click;
                menuItem.Tag = obj;
                contextMenu.Items.Add(menuItem);
            }
 
            this.treeList.ContextMenu = contextMenu;
        }
 
        private void AddStep2Plan(ITestStep newStep, ITestStep insertAfter, TestPlan plan)
        {
            if (insertAfter != null)
            {
                var parent = insertAfter.Parent;
                if (parent is TestPlan pplan)
                {
                    if (TestStepList.AllowChild(typeof(TestPlan), newStep.GetType()))
                    {
                        pplan.InsertStep(Datasource.SequenceName,
                        pplan.GetStepsByName(Datasource.SequenceName).IndexOf(insertAfter) + 1, newStep);
                    }
                }
                else if (parent != null && TestStepList.AllowChild(parent.GetType(), newStep.GetType()))
                {
                    parent.InsertStep(Datasource.SequenceName, parent.ChildTestSteps.IndexOf(insertAfter) + 1, newStep);
                }
            }
            else
            {
                if (TestStepList.AllowChild(typeof(TestPlan), newStep.GetType()))
                {
                    plan.AddStep(Datasource.SequenceName, newStep);
                }
            }
        }
 
 
        #region add
 
        /// <summary>
        /// 添加同级Step
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void Add_Generaic_Step_Click(object sender, RoutedEventArgs e)
        {
            ITestStep step = ((StepTypeMenuItem)sender).Tag as ITestStep;
            ITestStep newStep = null;
            if (((StepTypeMenuItem)sender).TypeData is ITypeData type)
            {
                newStep = type.CreateInstance() as ITestStep;
            }
            else if (((StepTypeMenuItem)sender).TypeData is AdapterData data)
            {
                newStep = new AdapterStep()
                {
                    Name = data.Name,
                    XmlString = data.Xml
                };
            }
            if (newStep != null)
            {
                AddStep2Plan(newStep, step, Plan);
            }
        }
 
        /// <summary>
        /// 添加子Step
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void Add_Child_Step_Click(object sender, RoutedEventArgs e)
        {
            ITestStep step = ((StepTypeMenuItem)sender).Tag as ITestStep;
            if (step == null)
            {
                return;
            }
            ITestStep newStep = null;
            if (((StepTypeMenuItem)sender).TypeData is ITypeData type)
            {
                newStep = type.CreateInstance() as ITestStep;
            }
            else if (((StepTypeMenuItem)sender).TypeData is AdapterData data)
            {
                newStep = new AdapterStep()
                {
                    Name = data.Name,
                    XmlString = data.Xml
                };
            }
            if (newStep != null)
            {
                step.AddStep(Datasource.SequenceName, newStep);
            }
        }
 
        private void DeleteStep(ITestStep step)
        {
            foreach (var child in SelectedSteps)
            {
                if (child.Parent is ITestStep)
                {
                    child.Parent.ChildTestSteps.Remove(child);
                }
                else
                {
                    Datasource.Remove(child);
                }
            }
            SelectedSteps.Clear();
            SelectedStep = null;
        }
 
        private void Delete_Step_Click(object sender, RoutedEventArgs e)
        {
            ITestStep step = ((MenuItem)sender).Tag as ITestStep;
            DeleteStep(step);
        }
 
        private void CopyStep(ITestStep step)
        {
            try
            {
                var target = new TestStepList();
                foreach (var child in Datasource.RecursivelyGetAllTestSteps(TestStepSearch.All))
                {
                    if (SelectedSteps.Contains(child))
                    {
                        target.Add(child);
                    }
                }
 
                TapSerializer serializer = new TapSerializer();
                using (var str = new MemoryStream())
                {
                    serializer.Serialize(str, target);
                    Clipboard.SetText(Encoding.UTF8.GetString(str.ToArray()));
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show($"{ex.Message}");
            }
        }
 
        private void Copy_Step_Click(object sender, RoutedEventArgs e)
        {
            ITestStep step = ((MenuItem)sender).Tag as ITestStep;
            CopyStep(step);
        }
 
        private void PasteStep(ITestStep targetStep)
        {
            try
            {
                TapSerializer serializer = new TapSerializer();
                TestStepList newSteps = (TestStepList)serializer.DeserializeFromString(Clipboard.GetText());
                if (newSteps == null)
                {
                    return;
                }
                var last = targetStep;
                foreach (var child in newSteps.RecursivelyGetAllTestSteps(TestStepSearch.All))
                {
                    child.Id = Guid.NewGuid();
                }
                foreach (var child in newSteps)
                {
                    AddStep2Plan(child, last, Plan);
                    last = child;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show($"粘贴错误: {ex.Message}", "错误");
            }
        }
 
        private void Paste_Step_Click(object sender, RoutedEventArgs e)
        {
            ITestStep step = ((MenuItem)sender).Tag as ITestStep;
            PasteStep(step);
        }
        #endregion
 
        private void DebuggerBtn_HandleClick(object sender, EventArgs e)
        {
            DebuggerBtn btn = (DebuggerBtn)sender;
            if (Datasource.DebugIds.Contains(btn.StepId))
            {
                Datasource.DebugIds.Remove(btn.StepId);
            }
            else
            {
                Datasource.DebugIds.Add(btn.StepId);
            }
        }
 
        public bool NeedBreak(Guid id)
        {
            if (Datasource == null) return false;
            return Datasource.DebugIds.Contains(id);
        }
 
        private void TreeViewItem_PreviewMouseDoubleClick(object sender, System.Windows.Input.MouseButtonEventArgs e)
        {
            DependencyObject current = e.OriginalSource as DependencyObject;
            while (current != null)
            {
                // 如果找到需要处理双击的控件(例如Button、TextBox等),则不阻止事件
                if (current is EditBox eb && eb.CanEdit)
                {
                    return; // 让事件继续传递
                }
                current = VisualTreeHelper.GetParent(current);
            }
            e.Handled = true;
        }
 
        private void treeList_MouseDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
        {
            TreeListViewItem item = FindControl<TreeListViewItem>(e.OriginalSource);
            if (item == null) return;
 
            ITestStep step = (ITestStep)item.DataContext;
            if ((Keyboard.Modifiers & ModifierKeys.Control) == ModifierKeys.Control)
            {
                if (SelectedSteps.Contains(step))
                {
                    SelectedSteps.Remove(step);
                }
                else
                {
                    var parents = step.GetParents();
                    foreach (var parent in parents)
                    {
                        if (parent is ITestStep pStep)
                        {
                            SelectedSteps.Remove(pStep);
                        }
                    }
                    foreach (var child in step.RecursivelyGetChildSteps(TestStepSearch.All))
                    {
                        SelectedSteps.Remove(child);
                    }
                    SelectedSteps.Add(step);
                }
                return;
            }
 
            var old = SelectedStep;
            SelectedStep = step;
            SelectedItemChanged?.Invoke(sender, new RoutedPropertyChangedEventArgs<object>(old, SelectedStep));
 
            SelectedSteps = new TestStepList { SelectedStep };
        }
 
        private void treeList_PreviewMouseRightButtonDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
        {
            TreeListViewItem item = FindControl<TreeListViewItem>(e.OriginalSource);
            if (item != null)
            {
                item.Focus();
                var step = item.DataContext as ITestStep;
                SelectedStep = step;
                if (!SelectedSteps.Contains(step))
                {
                    SelectedSteps = new TestStepList { SelectedStep };
                }
                CreateContextMenu(step);
            }
            else
            {
                CreateContextMenu(null);
            }
        }
 
        private T FindControl<T>(object obj)
        {
            if (obj == null)
            {
                return default(T);
            }
 
            if (obj is T target)
            {
                return target;
            }
            return FindControl<T>(VisualTreeHelper.GetParent((DependencyObject)obj));
        }
 
        public void Unload()
        {
            if (Datasource != null)
            {
                Datasource.DebugIds.CollectionChanged -= DebugIds_CollectionChanged;
            }
            Datasource = null;
        }
    }
}