Udostępnij za pośrednictwem


Jak: Tworzenie reguły sprawdzania poprawności niestandardowe dla testu wydajności sieci Web

Można utworzyć reguły sprawdzania poprawności.Aby to zrobić, klasa reguły pochodnymi klasy reguły sprawdzania poprawności.Reguły sprawdzania poprawności pochodzić od ValidationRule klasa podstawowa.

Visual Studio Ultimatezawiera niektóre reguły sprawdzania poprawności wstępnie zdefiniowanych.Aby uzyskać więcej informacji, zobacz Za pomocą sprawdzanie poprawności i reguły ekstrakcji w sieci Web testów wydajności.

[!UWAGA]

Można również utworzyć niestandardowe ekstrakcji reguły.Aby uzyskać więcej informacji, zobacz Tworzenie i używanie niestandardowe dodatki typu plug-in dla obciążenia i testów wydajności sieci Web.

Wymagania

  • Visual Studio Ultimate

Do tworzenia reguł sprawdzania poprawności niestandardowe

  1. Otwórz projekt badania, zawierający testu wydajności sieci Web.

  2. (Opcjonalnie) Utworzyć osobny projekt biblioteki klas do przechowywania reguły sprawdzania.

    Ważna uwagaWażne

    W tym samym projekcie, że testy, można utworzyć klasy.Jednakże jeśli chcesz ponownie użyć reguły, lepiej jest utworzyć osobny projekt biblioteki klas do przechowywania w regule.Jeśli możesz stworzyć osobny projekt, należy wykonać opcjonalne kroki tej procedury.

  3. (Opcjonalnie) W projekcie biblioteki klas Dodaj odwołanie do biblioteki DLL Microsoft.VisualStudio.QualityTools.WebTestFramework.

  4. Tworzenie klasy, który wynika z ValidationRule klasy.Wdrożenie Validate i RuleName członków.

  5. (Opcjonalnie) Tworzenie nowego projektu biblioteki klas.

  6. (Opcjonalnie) W projekcie badania należy dodać odwołanie do klasy library project zawiera regułę poprawności niestandardowe.

  7. W projekcie badania, otwórz testu wydajności sieci Web w Edytor Test wydajności sieci Web.

  8. Aby dodać regułę poprawności niestandardowe żądanie test wydajności sieci Web, kliknij prawym przyciskiem żądanie i wybierz Dodaj regułę sprawdzania poprawności.

    Dodaj regułę sprawdzania poprawności pojawi się okno dialogowe.Zobaczysz reguły sprawdzania niestandardowe w Zaznacz regułę wykaz, wraz z reguły poprawności wstępnie zdefiniowanych.Wybierz reguły sprawdzania niestandardowe, a następnie wybierz polecenie OK.

  9. Czy uruchomić test wydajności sieci Web.

Przykład

Poniższy kod przedstawia implementacja reguły sprawdzania poprawności niestandardowe.Ta reguła sprawdzania poprawności naśladuje zachowanie wstępnie zdefiniowane reguły sprawdzania poprawności wymaganego tagu.Użyj w tym przykładzie jako punkt wyjścia dla reguł sprawdzania poprawności niestandardowe.

using System;
using System.Diagnostics;
using System.Globalization;
using Microsoft.VisualStudio.TestTools.WebTesting;

namespace SampleWebTestRules
{
    //-------------------------------------------------------------------------
    // This class creates a custom validation rule named "Custom Validate Tag"
    // The custom validation rule is used to check that an HTML tag with a 
    // particular name is found one or more times in the HTML response.
    // The user of the rule can specify the HTML tag to look for, and the 
    // number of times that it must appear in the response.
    //-------------------------------------------------------------------------
    public class CustomValidateTag : ValidationRule
    {
        /// Specify a name for use in the user interface.
        /// The user sees this name in the Add Validation dialog box.
        //---------------------------------------------------------------------
        public override string RuleName
        {
            get { return "Custom Validate Tag"; }
        }

        /// Specify a description for use in the user interface.
        /// The user sees this description in the Add Validation dialog box.
        //---------------------------------------------------------------------
        public override string RuleDescription
        {
            get { return "Validates that the specified tag exists on the page."; }
        }

        // The name of the required tag
        private string RequiredTagNameValue;
        public string RequiredTagName
        {
            get { return RequiredTagNameValue; }
            set { RequiredTagNameValue = value; }
        }

        // The minimum number of times the tag must appear in the response
        private int MinOccurrencesValue;
        public int MinOccurrences
        {
            get { return MinOccurrencesValue; }
            set { MinOccurrencesValue = value; }
        }

        // Validate is called with the test case Context and the request context.
        // These allow the rule to examine both the request and the response.
        //---------------------------------------------------------------------
        public override void Validate(object sender, ValidationEventArgs e)
        {
            bool validated = false;
            int numTagsFound = 0;

            foreach (HtmlTag tag in e.Response.HtmlDocument.GetFilteredHtmlTags(RequiredTagName))
            {
                Debug.Assert(string.Equals(tag.Name, RequiredTagName, StringComparison.InvariantCultureIgnoreCase));

                if (++numTagsFound >= MinOccurrences)
                {
                    validated = true;
                    break;
                }
            }

            e.IsValid = validated;

            // If the validation fails, set the error text that the user sees
            if (!validated)
            {
                if (numTagsFound > 0)
                {
                    e.Message = String.Format("Only found {0} occurences of the tag", numTagsFound);
                }
                else
                {
                    e.Message = String.Format("Did not find any occurences of tag '{0}'", RequiredTagName);
                }
            }
        }
    }
}
Imports System
Imports System.Diagnostics
Imports System.Globalization
Imports Microsoft.VisualStudio.TestTools.WebTesting

Namespace SampleWebTestRules

    '-------------------------------------------------------------------------
    ' This class creates a custom validation rule named "Custom Validate Tag"
    ' The custom validation rule is used to check that an HTML tag with a 
    ' particular name is found one or more times in the HTML response.
    ' The user of the rule can specify the HTML tag to look for, and the 
    ' number of times that it must appear in the response.
    '-------------------------------------------------------------------------
    Public Class CustomValidateTag
        Inherits Microsoft.VisualStudio.TestTools.WebTesting.ValidationRule

        ' Specify a name for use in the user interface.
        ' The user sees this name in the Add Validation dialog box.
        '---------------------------------------------------------------------
        Public Overrides ReadOnly Property RuleName() As String
            Get
                Return "Custom Validate Tag"
            End Get
        End Property

        ' Specify a description for use in the user interface.
        ' The user sees this description in the Add Validation dialog box.
        '---------------------------------------------------------------------
        Public Overrides ReadOnly Property RuleDescription() As String
            Get
                Return "Validates that the specified tag exists on the page."
            End Get
        End Property

        ' The name of the required tag
        Private RequiredTagNameValue As String
        Public Property RequiredTagName() As String
            Get
                Return RequiredTagNameValue
            End Get
            Set(ByVal value As String)
                RequiredTagNameValue = value
            End Set
        End Property

        ' The minimum number of times the tag must appear in the response
        Private MinOccurrencesValue As Integer
        Public Property MinOccurrences() As Integer
            Get
                Return MinOccurrencesValue
            End Get
            Set(ByVal value As Integer)
                MinOccurrencesValue = value
            End Set
        End Property

        ' Validate is called with the test case Context and the request context.
        ' These allow the rule to examine both the request and the response.
        '---------------------------------------------------------------------
        Public Overrides Sub Validate(ByVal sender As Object, ByVal e As ValidationEventArgs)

            Dim validated As Boolean = False
            Dim numTagsFound As Integer = 0

            For Each tag As HtmlTag In e.Response.HtmlDocument.GetFilteredHtmlTags(RequiredTagName)

                Debug.Assert(String.Equals(tag.Name, RequiredTagName, StringComparison.InvariantCultureIgnoreCase))

                numTagsFound += 1
                If numTagsFound >= MinOccurrences Then

                    validated = True
                    Exit For
                End If
            Next

            e.IsValid = validated

            ' If the validation fails, set the error text that the user sees
            If Not (validated) Then
                If numTagsFound > 0 Then
                    e.Message = String.Format("Only found {0} occurences of the tag", numTagsFound)
                Else
                    e.Message = String.Format("Did not find any occurences of tag '{0}'", RequiredTagName)
                End If
            End If
        End Sub
    End Class
End Namespace

Zobacz też

Zadania

Jak: Dodawanie reguły sprawdzania poprawności do testu wydajności sieci Web

Instruktaż: Dodawanie sprawdzania poprawności i reguły ekstrakcji do testu wydajności sieci Web

Jak: Tworzenie reguły ekstrakcji niestandardowe dla testu wydajności sieci Web

Informacje

ValidationRule

Microsoft.VisualStudio.TestTools.WebTesting.Rules

ValidateFormField

ValidationRuleFindText

ValidationRuleRequestTime

ValidationRuleRequiredAttributeValue

ValidationRuleRequiredTag

Koncepcje

Za pomocą sprawdzanie poprawności i reguły ekstrakcji w sieci Web testów wydajności