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
using OpenTap.Addin.Util;
using OpenTap;
using System;
 
namespace AddInPlugin
{
    [Display("Break", Group: "流程控制", Order: 0)]
    [AllowAsChildIn(typeof(CanBreakBase))]
    public class BreakStep : TestStep
    {
        private string condition;
        [Display("条件")]
        public string Condition
        {
            get => condition;
            set
            {
                condition = value;
                OnPropertyChanged(nameof(Condition));
            }
        }
 
        public BreakStep() : base()
        {
            Rules.Add(() => GetParent<CanBreakBase>() != null, "必须在CanBreak中", Name);
        }
 
        protected override void RunDetail()
        {
            try
            {
                bool needBreak = false;
                if (string.IsNullOrEmpty(Condition))
                {
                    needBreak = true;
                }
                else
                {
                    var sb = PlanRun.Resolve(this, Condition);
                    needBreak = sb;
                }
                if (needBreak)
                {
                    var target = this.GetParent<CanBreakBase>();
                    if (target == null)
                    {
                        throw new Exception("Structure Error");
                    }
                    target.IsBreaked = true;
                    UpgradeVerdict(Verdict.NotSet);
                }
            }
            catch (Exception ex)
            {
                Log.Error("For Run error. {0}", ex);
                UpgradeVerdict(Verdict.Error);
            }
        }
 
        public override void PostPlanRun()
        {
        }
    }
}