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
using AddInPlugin;
using AddInPlugin.Setting;
using CommunityToolkit.Mvvm.ComponentModel;
using Microsoft.Win32;
using OpenTap;
using OpenTap.Addin;
using OpenTap.Addin.Listener;
using OpenTap.Addin.Util;
using OpenTap.Plugins.BasicSteps;
using SeqEditor.Util;
using System.Collections.ObjectModel;
using System.Windows;
using System.Windows.Controls;
 
namespace OpenTapEditor;
/// <summary>
/// Interaction logic for SequencePanel.xaml
/// </summary>
[ObservableObject]
public partial class ExecutionPanel : UserControl, ITabItem, IStepRunStatus
{
    private TestPlan Plan;
    private TestPlanRun PlanRun;
    private TapThread testPlanThread;
    private string startedSeqName;
 
    [ObservableProperty]
    private ITestStep selectedTestStep;
 
    [ObservableProperty]
    private bool isRunning = false;
 
    [ObservableProperty]
    private bool hasChanged = false;
 
    public string TabName
    {
        get
        {
            return $"Execution-{Plan?.Name}";
        }
        set
        {
        }
    }
 
    [ObservableProperty]
    private RuningMode runingMode = RuningMode.Stop;
 
    private ManualResetEvent SingleStepHandle = new ManualResetEvent(true);
 
    public event EventHandler RunningFinished;
 
    public ExecutionPanel(TestPlan plan, string seqName)
    {
        this.Plan = plan;
        this.startedSeqName = seqName;
 
        InitializeComponent();
        treeView.Plan = plan;
    }
 
    private void VariableControl_SequenceChanged(object? sender, EventArgs e)
    {
        HasChanged = true;
    }
 
    private void ChildTestSteps_ChildStepsChanged(TestStepList senderList, TestStepList.ChildStepsChangedAction Action, ITestStep Object, int Index)
    {
        HasChanged = true;
    }
 
    private void ChildTestSteps_CollectionChanged(object? sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
    {
        HasChanged = true;
    }
 
    private void Button_Click(object sender, RoutedEventArgs e)
    {
        var btn = (Button)sender;
        switch (btn.Tag)
        {
            case "运行":
                RunBtn();
                break;
            case "调试":
                RunTestPlan(RuningMode.RunningInDebugMode);
                break;
            case "单步运行":
                StepRuning();
                break;
            case "停止":
                StopRunTestPlan();
                break;
            default:
                break;
        }
    }
 
    private void RunBtn()
    {
        if (IsRunning)
        {
            if (RuningMode == RuningMode.RunningInStepMode)
            {
                RuningMode = RuningMode.Running;
                SingleStepHandle.Set();
                return;
            }
 
            if (RuningMode == RuningMode.RunningInDebugModeButStep)
            {
                RuningMode = RuningMode.RunningInDebugMode;
                SingleStepHandle.Set();
                return;
            }
 
            if (RuningMode == RuningMode.RunningInDebugMode)
            {
                SingleStepHandle.Set();
                return;
            }
        }
        else
        {
            RunTestPlan(RuningMode.Running);
        }
    }
 
    public void RunTestPlan(RuningMode mode)
    {
        try
        {
            /// 保存一下StationGlobals变量
            try
            {
                StationGlobalsManager.WriteToLocal(UIStationGlobalsManager.Instance.Datasource);
            }
            catch (Exception ex)
            {
 
            }
            IsRunning = true;
            RuningMode = mode;
            treeView.ComplatedIds.Clear();
            treeView.UpdateStepStatus();
            RunVars = null;
            RunVarContext = null;
 
            handledPlan.Clear();
            handledPlan.Add(Plan);
            Plan.BreakOffered += Plan_BreakOffered;
            settingView.CanEdit = false;
            runVariableControl.Visibility = Visibility.Visible;
            var uiListener = new UIListener(SeqEditorUI.Instance.logControl, this);
 
            testPlanThread = TapThread.Start(() =>
            {
                try
                {
                    var s = ResultSettings.Current;
                    ResultSettings.Current.Add(uiListener);
                    if (StationSettings.Current.ReportType == ReportType.TXT)
                    {
                        ResultSettings.Current.Add(new TxtReportListener("Report"));
                    }
                    else
                    {
                        ResultSettings.Current.Add(new HtmlReportListener("Report"));
                    }
                    var res = ResultSettings.Current;
                    var run = Plan.Execute(startedSeqName, res, null, null, null);
                }
                catch (Exception ex)
                {
                    SeqEditorUI.Log.Error("Start TestPlan Error. {0}", ex);
                }
                finally
                {
                    ResultSettings.Current.Remove(uiListener);
                    RunVarContext?.Release();
                    Dispatcher.BeginInvoke(() =>
                    {
                        RunningFinished?.Invoke(this, new EventArgs());
                        RuningMode = RuningMode.Stop;
                        Plan.BreakOffered -= Plan_BreakOffered;
                        treeView.DebugStepId = Guid.Empty;
                        treeView.RunningStepId = Guid.Empty;
                        settingView.CanEdit = true;
                        IsRunning = false;
                        foreach (var handled in handledPlan)
                        {
                            handled.BreakOffered -= Plan_BreakOffered;
                        }
                        handledPlan.Clear();
                    });
                }
            }, "UI_Start");
        }
        catch (Exception ex)
        {
            SeqEditorUI.Log.Error("Run TestPlan Error. {0}", ex);
        }
    }
 
    [ObservableProperty]
    private RunningVarContext runVarContext;
 
    [ObservableProperty]
    private ObservableCollection<RunningVar> runVars;
 
    private readonly List<TestPlan> handledPlan = new List<TestPlan>();
 
 
    private string currentSeqId = null;
 
    private void Plan_BreakOffered(object? sender, BreakOfferedEventArgs e)
    {
        try
        {
            var stepRun = e.TestStepRun;
            var planRun = stepRun.testPlanRun;
            var step = stepRun.CurrentStep;
            var plan = step.Root;
            var seqId = $"{plan.VisualPath}_{planRun.RunningSeqName}";
            TestStepList list = plan.GetStepsByName(planRun.RunningSeqName);
 
            Dispatcher.BeginInvoke(() =>
            {
                treeView.DebugStepId = e.TestStepRun.TestStepId;
                if (RunVarContext == null)
                {
                    RunVarContext = new RunningVarContext()
                    {
                        PlanRun = planRun
                    };
                    RunVarContext.Children = RunningVar.FromTest(RunVarContext, null, false, new ObservableCollection<TestVariable>() {
                    new TestVariable(){
                        Name = "Locals",
                        Type = TestVariableType.Container,
                        Children = list.Variables
                    },
                    new TestVariable(){
                        Name = "Parameters",
                        Type = TestVariableType.Container,
                        Children = list.Parameters
                    },
                    new TestVariable(){
                        Name = "FileGlobals",
                        Type = TestVariableType.Container,
                        Children = plan.Variables
                    },
                    new TestVariable(){
                        Name = "StationGlobals",
                        Type = TestVariableType.Container,
                        Children = UIStationGlobalsManager.Instance.Datasource,
                    }});
                    RunVars = RunVarContext.Children;
                }
 
                RunVarContext.Children[0].ContextName = list.SequenceName;
                RunVarContext.Children[1].ContextName = list.SequenceName;
                RunVarContext.Children[2].ContextName = plan.VisualPath;
 
                if (currentSeqId != seqId)
                {
                    RunVarContext.RefreshPlan(planRun, plan, list);
                    treeView.Datasource = list;
                    currentSeqId = seqId;
                }
            }).Wait();
 
            if (step is SequenceCallStep scs)
            {
                //if (lastChildPlan != null)
                //{
                //    lastChildPlan.BreakOffered -= Plan_BreakOffered;
                //}
                if (!handledPlan.Contains(scs.runningPlan))
                {
                    scs.runningPlan.BreakOffered += Plan_BreakOffered;
                    handledPlan.Add(scs.runningPlan);
                }
            }
 
            if (RuningMode == RuningMode.RunningInStepMode || RuningMode == RuningMode.RunningInDebugModeButStep)
            {
                SingleStepHandle.Reset();
                WaitHandle.WaitAny(new[] { SingleStepHandle, testPlanThread.AbortToken.WaitHandle });
            }
            else if (RuningMode == RuningMode.RunningInDebugMode)
            {
                if (treeView.NeedBreak(e.TestStepRun.TestStepId))
                {
                    SingleStepHandle.Reset();
                    WaitHandle.WaitAny(new[] { SingleStepHandle, testPlanThread.AbortToken.WaitHandle });
                }
            }
        }
        catch (Exception ex)
        {
            SeqEditorUI.Log.Error($"Plan_BreakOffered Error: {ex}");
        }
    }
 
    private void StepRuning()
    {
        if (IsRunning && RuningMode != RuningMode.Running)
        {
            if (RuningMode == RuningMode.RunningInDebugMode)
            {
                RuningMode = RuningMode.RunningInDebugModeButStep;
            }
            SingleStepHandle.Set();
        }
        else
        {
            RunTestPlan(RuningMode.RunningInStepMode);
        }
    }
 
    public void StopRunTestPlan()
    {
        testPlanThread?.Abort();
    }
 
    public bool TrySaveTestStep(Func<string, bool> check)
    {
        if (!string.IsNullOrEmpty(Plan.Path))
        {
            Plan.Save(Plan.Path);
            HasChanged = false;
            OnPropertyChanged(nameof(TabName));
            return true;
        }
        return TrySaveAs(check);
    }
 
    public bool TrySaveAs(Func<string, bool> check)
    {
        SaveFileDialog sfd = new SaveFileDialog()
        {
            Filter = "Test Plan|*.TapPlan",
            DefaultExt = ".TapPlan"
        };
        if (sfd.ShowDialog() == true)
        {
            if (check.Invoke(sfd.FileName))
            {
                Plan.Save(sfd.FileName);
                HasChanged = false;
                OnPropertyChanged(nameof(TabName));
                return true;
            }
        }
        return false;
    }
 
    private void treeView_SelectedItemChanged(object sender, RoutedPropertyChangedEventArgs<object> e)
    {
        if (e.NewValue != null)
        {
            settingView.UpdateSource((ITestStep)e.NewValue);
            SelectedTestStep = (ITestStep)e.NewValue;
        }
    }
 
    private void variableControl_SelectedSequenceChanged(object sender, TestStepList e)
    {
        treeView.Datasource = e;
        settingView.Seq = e;
    }
 
    public void ComplatedStepId(Guid id)
    {
        Dispatcher.BeginInvoke(() =>
        {
            treeView.ComplatedIds[id] = true;
            treeView.UpdateStepStatus();
        });
    }
 
    public void CurrentStepId(Guid id)
    {
        Dispatcher.BeginInvoke(() =>
        {
            treeView.ComplatedIds.TryRemove(id, out _);
            treeView.UpdateStepStatus();
            treeView.RunningStepId = id;
        });
    }
 
    public void Close()
    {
        RunVarContext = null;
        RunVars = null;
        settingView = null;
        Plan = null;
        PlanRun = null;
        treeView.Unload();
    }
}