启用控件的编码的 UI 测试
如果实现对编码的 UI 测试框架的支持,则可以更轻松地测试您的控件。您能够以增量方式增加支持级别。您可以先从支持录制、播放和属性验证开始。在此基础上,您可以允许编码的 UI 测试生成器识别控件的自定义属性,并提供自定义类以便从生成的代码访问这些属性。您还可以帮助编码的 UI 测试生成器,使之以一种与所录制操作的目的更为接近的方法来捕获操作。
本主题内容:
通过实现辅助功能来支持录制和播放以及属性验证
编码的 UI 测试生成器可捕获与它在录制期间所遇到的控件有关的信息,然后生成代码以重播该会话。如果控件不支持辅助功能,则编码的 UI 测试生成器将使用屏幕坐标来捕获操作(例如,鼠标单击)。播放测试时,生成的代码将在同一屏幕坐标释放这些鼠标单击操作。在播放测试时,如果控件出现在屏幕上的其他位置,则生成的代码将无法对控件执行该操作。如果在不同的屏幕配置下、在不同的环境中,或者在 UI 布局发生更改之后播放测试,则这可能会导致失败。
不过,如果实现辅助功能,则它在录制测试并生成代码时,将使用这一辅助功能来捕获有关控件的信息。然后,当您运行测试时,生成的代码将针对您的控件重播这些事件,即使它位于用户界面中的其他位置。测试作者还可以使用控件的基本属性创建断言。
支持录制和播放、属性验证以及 Windows 窗体控件的导航
根据以下过程中的概述和 AccessibleObject 中的详细介绍,为您的控件实现辅助功能。
实现一个从 ControlAccessibleObject 派生的类,并重写 AccessibilityObject 属性以便返回类的对象。
public partial class ChartControl : UserControl { // Overridden to return the custom AccessibleObject for the control. protected override AccessibleObject CreateAccessibilityInstance() { return new ChartControlAccessibleObject(this); } // Inner class ChartControlAccessibleObject represents accessible information // associated with the ChartControl and is used when recording tests. public class ChartControlAccessibleObject : ControlAccessibleObject { ChartControl myControl; public ChartControlAccessibleObject(ChartControl ctrl) : base(ctrl) { myControl = ctrl; } } }
重写可访问对象的 Role、State、GetChild 属性和 GetChildCount 方法。
实现子控件的另一个辅助功能对象并重写子控件的 AccessibilityObject 属性,以便返回该辅助功能对象。
重写子控件辅助功能对象的 Bounds、Name、Parent、Role、State、Navigate 和 Select 属性及方法。
说明 |
---|
本主题在此过程中从 AccessibleObject 辅助功能示例开始,然后在此基础上完成剩余过程。如果要创建辅助功能示例的可行版本,请创建一个控制台应用程序,然后用示例代码替换 Program.cs 中的代码。您需要添加对辅助功能、System.Drawing 和 System.Windows.Forms 的引用。您应将辅助功能的“嵌入互操作类型”更改为“False”,以便消除生成警告。您可以将项目的输出类型从“控制台应用程序”更改为“Windows 应用程序”,以便在运行应用程序时不显示控制台窗口。 |
通过实现属性提供程序来支持自定义属性验证
在实现对录制、播放和属性验证的基本支持后,您可以通过实现 UITestPropertyProvider 插件,使控件的自定义属性可供编码的 UI 测试使用。例如,下面的过程将创建一个属性提供程序,该程序允许编码的 UI 测试访问图表控件 CurveLegend 子控件的 State 属性。
支持自定义属性验证
重写曲线图例可访问对象的 Description 属性,以便传递说明字符串中丰富的属性值,并通过分号 (;) 与主说明分隔开来(如果要实现多个属性,则每个属性之间也相互分隔)。
public class CurveLegendAccessibleObject : AccessibleObject { // add the state property value to the description public override string Description { get { // Add “;” and the state value to the end // of the curve legend’s description return "CurveLegend; " + State.ToString(); } } }
通过创建一个类库项目并添加对辅助功能、Microsoft.VisualStudio.TestTools.UITesting、Microsoft.VisualStudio.TestTools.UITest.Common 和 Microsoft.VisualStudio.TestTools.Extension 的引用,为您的控件创建一个 UI 测试扩展包。将辅助功能的“嵌入互操作类型”更改为“False”。
添加一个从 UITestPropertyProvider 派生的属性提供程序类。
using System; using System.Collections.Generic; using Accessibility; using Microsoft.VisualStudio.TestTools.UITesting; using Microsoft.VisualStudio.TestTools.UITest.Extension; using Microsoft.VisualStudio.TestTools.UITesting.WinControls; using Microsoft.VisualStudio.TestTools.UITest.Common; namespace ChartControlExtensionPackage { public class ChartControlPropertyProvider : UITestPropertyProvider { } }
通过将属性名称和属性描述符放在 Dictionary 中,实施此属性提供程序。
// Define a map of property descriptors for CurveLegend private static Dictionary<string, UITestPropertyDescriptor> curveLegendPropertiesMap = null; private static Dictionary<string, UITestPropertyDescriptor> CurveLegendPropertiesMap { get { if (curveLegendPropertiesMap == null) { UITestPropertyAttributes read = UITestPropertyAttributes.Readable | UITestPropertyAttributes.DoNotGenerateProperties; curveLegendPropertiesMap = new Dictionary<string, UITestPropertyDescriptor> (StringComparer.OrdinalIgnoreCase); curveLegendPropertiesMap.Add("State", new UITestPropertyDescriptor(typeof(string), read)); } return curveLegendPropertiesMap; } } // return the property descriptor public override UITestPropertyDescriptor GetPropertyDescriptor(UITestControl uiTestControl, string propertyName) { return CurveLegendPropertiesMap[propertyName]; } // return the property names public override ICollection<string> GetPropertyNames(UITestControl uiTestControl) { if (uiTestControl.ControlType.NameEquals("Chart") || uiTestControl.ControlType.NameEquals("Text")) { // the keys of the property map are the collection of property names return CurveLegendPropertiesMap.Keys; } // this is not my control throw new NotSupportedException(); } // Get the property value by parsing the accessible description public override object GetPropertyValue(UITestControl uiTestControl, string propertyName) { if (String.Equals(propertyName, "State", StringComparison.OrdinalIgnoreCase)) { object[] native = uiTestControl.NativeElement as object[]; IAccessible acc = native[0] as IAccessible; string[] descriptionTokens = acc.accDescription.Split(new char[] { ';' }); return descriptionTokens[1]; } // this is not my control throw new NotSupportedException(); }
重写 UITestPropertyProvider.GetControlSupportLevel,指明您的程序集为控件及其子控件提供特定于控件的支持。
public override int GetControlSupportLevel(UITestControl uiTestControl) { // For MSAA, check the control type if (string.Equals(uiTestControl.TechnologyName, "MSAA", StringComparison.OrdinalIgnoreCase) && (uiTestControl.ControlType == "Chart"||uiTestControl.ControlType == "Text")) { return (int)ControlSupport.ControlSpecificSupport; } // This is not my control, so return NoSupport return (int)ControlSupport.NoSupport; }
重写 UITestPropertyProvider 的剩余抽象方法。
public override string[] GetPredefinedSearchProperties(Type specializedClass) { throw new NotImplementedException(); } public override Type GetSpecializedClass(UITestControl uiTestControl) { throw new NotImplementedException(); } public override Type GetPropertyNamesClassType(UITestControl uiTestControl) { throw new NotImplementedException(); } public override void SetPropertyValue(UITestControl uiTestControl, string propertyName, object value) { throw new NotImplementedException(); } public override string GetPropertyForAction(UITestControl uiTestControl, UITestAction action) { throw new NotImplementedException(); } public override string[] GetPropertyForControlState(UITestControl uiTestControl, ControlStates uiState, out bool[] stateValues) { throw new NotImplementedException(); }
添加一个从 UITestExtensionPackage 派生的扩展包类。
using System; using Microsoft.VisualStudio.TestTools.UITesting; using Microsoft.VisualStudio.TestTools.UITest.Extension; using Microsoft.VisualStudio.TestTools.UITest.Common; namespace ChartControlExtensionPackage { internal class ChartControlExtensionPackage : UITestExtensionPackage { } }
定义程序集的 UITestExtensionPackage 特性。
[assembly: Microsoft.VisualStudio.TestTools.UITest.Extension.UITestExtensionPackage( "ChartControlExtensionPackage", typeof(ChartControlExtensionPackage.ChartControlExtensionPackage))] namespace ChartControlExtensionPackage { …
在扩展包类中,重写 UITestExtensionPackage.GetService,以便在请求属性提供程序时返回属性提供程序类。
internal class ChartControlExtensionPackage : UITestExtensionPackage { public override object GetService(Type serviceType) { if (serviceType == typeof(UITestPropertyProvider)) { if (propertyProvider == null) { propertyProvider = new ChartControlPropertyProvider(); } return propertyProvider; } return null; } private UITestPropertyProvider propertyProvider = null; }
重写 UITestExtensionPackage 的剩余抽象方法和属性。
public override void Dispose() { } public override string PackageDescription { get { return "Supports coded UI testing of ChartControl"; } } public override string PackageName { get { return "ChartControl Test Extension"; } } public override string PackageVendor { get { return "Microsoft (sample)"; } } public override Version PackageVersion { get { return new Version(1, 0); } } public override Version VSVersion { get { return new Version(10, 0); } }
生成你的二进制文件并将其复制到 %ProgramFiles%\Common Files\Microsoft Shared\VSTT\10.0\UITestExtensionPackages。
说明 |
---|
此扩展包将应用于类型为“Text”的所有控件。如果测试同一类型的多个控件,则需要分别进行测试,并管理在录制测试时要部署哪些扩展包。 |
通过实现类以访问自定义属性来支持代码生成
当编码的 UI 测试时生成器生成会话录制的代码时,它将使用 UITestControl 类来访问您的控件。
UITestControl uIAText = this.UIItemWindow.UIChartControlWindow.UIAText;
Assert.AreEqual(this.AssertMethod3ExpectedValues.UIATextState, uIAText.GetProperty("State").ToString());
如果已实现一个属性提供程序来访问控件的自定义属性,则可以添加一个用于访问这些属性的专用化类,以便简化所生成的代码。
ControlLegend uIAText = this.UIItemWindow.UIChartControlWindow.UIAText;
Assert.AreEqual(this.AssertMethod3ExpectedValues.UIATextState, uIAText.State);
添加专用类以访问您的控件
实现从 WinControl 派生的类,并将控件的类型添加到构造函数中的搜索属性集合。
public class CurveLegend:WinControl { public CurveLegend(UITestControl c) : base(c) { // The curve legend control is a “text” type of control SearchProperties.Add( UITestControl.PropertyNames.ControlType, "Text"); } }
实现控件的自定义属性,作为类的属性。
public virtual string State { get { return (string)GetProperty("State"); } }
重写属性提供程序的 UITestPropertyProvider.GetSpecializedClass 方法,以便返回曲线图例子控件的新类的类型。
public override Type GetSpecializedClass(UITestControl uiTestControl) { if (uiTestControl.ControlType.NameEquals("Text")) { // This is text type of control. For my control, // that means it’s a curve legend control. return typeof(CurveLegend); } // this is not a curve legend control return null; }
重写属性提供程序的 GetPropertyNamesClassType 方法,以便返回新类的 PropertyNames 方法的类型。
public override Type GetPropertyNamesClassType(UITestControl uiTestControl) { if (uiTestControl.ControlType.NameEquals("Text")) { // This is text type of control. For my control, // that means it’s a curve legend control. return typeof(CurveLegend.PropertyNames); } // this is not a curve legend control return null; }
通过实现操作筛选器来支持目的感知操作
当 Visual Studio 录制测试时,它会捕获鼠标和键盘事件。但是,在某些情况下,在一系列鼠标和键盘事件中可能会丢失操作的目的。例如,如果控件支持自动完成,则在其他环境中播放测试时,同一组鼠标和键盘事件可能会产生不同的值。您可以添加一个操作筛选器插件,将一系列键盘和鼠标事件替换为单一操作。这样一来,您就可以将结果为选择某一值的一系列鼠标和键盘事件替换为设置值的单一操作。当从一个环境转到另一个环境时,这样可以保护编码的 UI 测试,使之不受自动完成差异的影响。
支持目的感知操作
实现从 UITestActionFilter 派生的操作筛选器类,并重写属性 ApplyTimeout、Category、Enabled、FilterType、Group 和 Name。
internal class MyActionFilter : UITestActionFilter { // If the user actions we are aggregating exceeds the time allowed, // this filter is not applied. (The timeout is configured when the // test is run.) public override bool ApplyTimeout { get { return true; } } // Gets the category of this filter. Categories of filters // are applied in priority order. public override UITestActionFilterCategory Category { get { return UITestActionFilterCategory.PostSimpleToCompoundActionConversion; } } public override bool Enabled { get { return true; } } public override UITestActionFilterType FilterType { // This action filter operates on a single action get { return UITestActionFilterType.Unary; } } // Gets the name of the group to which this filter belongs. // A group can be enabled/disabled using configuration file. public override string Group { get { return "ChartControlActionFilters"; } } // Gets the name of this filter. public override string Name { get { return "Convert Double-Click to Single-Click"; } }
重写 ProcessRule。这里的示例将一个双击操作替换成了单击操作。
public override bool ProcessRule(IUITestActionStack actionStack) { if (actionStack.Count > 0) { MouseAction lastAction = actionStack.Peek() as MouseAction; if (lastAction != null) { if (lastAction.UIElement.ControlTypeName.Equals( ControlType.Text.ToString(), StringComparison.OrdinalIgnoreCase)) { if(lastAction.ActionType == MouseActionType.DoubleClick) { // Convert to single click lastAction.ActionType = MouseActionType.Click; } } } } // Do not stop aggregation return false; }
将操作筛选器添加到扩展包的 GetService 方法。
public override object GetService(Type serviceType) { if (serviceType == typeof(UITestPropertyProvider)) { if (propertyProvider == null) { propertyProvider = new PropertyProvider(); } return propertyProvider; } else if (serviceType == typeof(UITestActionFilter)) { if (actionFilter == null) { actionFilter = new RadGridViewActionFilter(); } return actionFilter; } return null; }
生成您的二进制文件并将其复制到 %ProgramFiles%\Common Files\Microsoft Shared\VSTT\10.0\UITestExtensionPackages。
说明 |
---|
操作筛选器不依赖于辅助功能实现或属性提供程序。 |
调试您的属性提供程序或操作筛选器
您的属性提供程序和操作筛选器在一个扩展包中实现,此扩展包在一个与应用程序分离的进程中,由编码的 UI 测试生成器来加载和运行。
调试属性提供程序或操作筛选器
生成扩展包的调试版本,将 .dll 和 .pdb 文件复制到 %ProgramFiles%\Common Files\Microsoft Shared\VSTT\10.0\UITestExtensionPackages。
运行您的应用程序(不在调试器中)。
运行编码的 UI 测试生成器。
codedUITestBuilder.exe /standalone
将调试器附加到 codedUITestBuilder 进程。
在代码中设置断点。
在编码的 UI 测试生成器中,创建断言以执行您的属性提供程序,并录制操作以运用您的操作筛选器。
外部资源
指导
使用 Visual Studio 2012 对连续交付进行测试 – 第 2 章:单元测试:测试内部