Udostępnij za pośrednictwem


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

Można utworzyć własne reguły ekstrakcji.Aby to zrobić, własne reguły pochodnymi klasy reguły ekstrakcji.Zasady ekstrakcji pochodzić od ExtractionRule klasa podstawowa.

Visual Studio Ultimatezawiera niektóre reguły wstępnie zdefiniowane ekstrakcji.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 sprawdzanie poprawności 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

Aby utworzyć regułę ekstrakcji niestandardowe

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

  2. (Opcjonalnie) Utworzenie oddzielnych projektu biblioteki klasy do przechowywania w regule ekstrakcji.

    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 ExtractionRule klasy.Wdrożenie Extract 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łę ekstrakcji niestandardowe.

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

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

    Dodaj regułę ekstrakcji 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 ekstrakcji niestandardowe, a następnie wybierz polecenie OK.

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

Przykład

Poniższy kod przedstawia implementacja reguły niestandardowe ekstrakcji.Ta reguła ekstrakcji wyodrębnia wartości z określonego pola wejściowego.Wykorzystać ten przykład jako punkt wyjścia dla reguł niestandardowych ekstrakcji.

using System;
using System.Collections.Generic;
using Microsoft.VisualStudio.TestTools.WebTesting;
using System.Globalization;

namespace ClassLibrary2
{
    //-------------------------------------------------------------------------
    // This class creates a custom extraction rule named "Custom Extract Input"
    // The user of the rule specifies the name of an input field, and the
    // rule attempts to extract the value of that input field.
    //-------------------------------------------------------------------------
    public class CustomExtractInput : ExtractionRule
    {
        /// Specify a name for use in the user interface.
        /// The user sees this name in the Add Extraction dialog box.
        //---------------------------------------------------------------------
        public override string RuleName
        {
            get { return "Custom Extract Input"; }
        }

        /// Specify a description for use in the user interface.
        /// The user sees this description in the Add Extraction dialog box.
        //---------------------------------------------------------------------
        public override string RuleDescription
        {
            get { return "Extracts the value from a specified input field"; }
        }

        // The name of the desired input field
        private string NameValue;
        public string Name
        {
            get { return NameValue; }
            set { NameValue = value; }
        }

        // The Extract method.  The parameter e contains the web performance test context.
        //---------------------------------------------------------------------
        public override void Extract(object sender, ExtractionEventArgs e)
        {
            if (e.Response.HtmlDocument != null)
            {
                foreach (HtmlTag tag in e.Response.HtmlDocument.GetFilteredHtmlTags(new string[] { "input" }))
                {
                    if (String.Equals(tag.GetAttributeValueAsString("name"), Name, StringComparison.InvariantCultureIgnoreCase))
                    {
                        string formFieldValue = tag.GetAttributeValueAsString("value");
                        if (formFieldValue == null)
                        {
                            formFieldValue = String.Empty;
                        }

                        // add the extracted value to the web performance test context
                        e.WebTest.Context.Add(this.ContextParameterName, formFieldValue);
                        e.Success = true;
                        return;
                    }
                }
            }
            // If the extraction fails, set the error text that the user sees
            e.Success = false;
            e.Message = String.Format(CultureInfo.CurrentCulture, "Not Found: {0}", Name);
        }
    }
}
Imports System
Imports System.Collections.Generic
Imports Microsoft.VisualStudio.TestTools.WebTesting
Imports System.Globalization

Namespace ClassLibrary2

    '-------------------------------------------------------------------------
    ' This class creates a custom extraction rule named "Custom Extract Input"
    ' The user of the rule specifies the name of an input field, and the
    ' rule attempts to extract the value of that input field.
    '-------------------------------------------------------------------------
    Public Class CustomExtractInput
        Inherits ExtractionRule

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

        ' Specify a description for use in the user interface.
        ' The user sees this description in the Add Extraction dialog box.
        '---------------------------------------------------------------------
        Public Overrides ReadOnly Property RuleDescription() As String
            Get
                Return "Extracts the value from a specified input field"
            End Get
        End Property

        ' The name of the desired input field
        Private NameValue As String
        Public Property Name() As String
            Get
                Return NameValue
            End Get
            Set(ByVal value As String)
                NameValue = value
            End Set
        End Property

        ' The Extract method.  The parameter e contains the web performance test context.
        '---------------------------------------------------------------------
        Public Overrides Sub Extract(ByVal sender As Object, ByVal e As ExtractionEventArgs)

            If Not e.Response.HtmlDocument Is Nothing Then

                For Each tag As HtmlTag In e.Response.HtmlDocument.GetFilteredHtmlTags(New String() {"input"})

                    If String.Equals(tag.GetAttributeValueAsString("name"), Name, StringComparison.InvariantCultureIgnoreCase) Then

                        Dim formFieldValue As String = tag.GetAttributeValueAsString("value")
                        If formFieldValue Is Nothing Then

                            formFieldValue = String.Empty
                        End If

                        ' add the extracted value to the web performance test context
                        e.WebTest.Context.Add(Me.ContextParameterName, formFieldValue)
                        e.Success = True
                        Return
                    End If
                Next
            End If
            ' If the extraction fails, set the error text that the user sees
            e.Success = False
            e.Message = String.Format(CultureInfo.CurrentCulture, "Not Found: {0}", Name)
        End Sub
    End Class
end namespace

Extract Metoda zawiera podstawowe funkcje reguły ekstrakcji.Extract Metoda w poprzednim przykładzie ExtractionEventArgs zapewnia odpowiedzi generowane przez żądanie dotyczy ta reguła ekstrakcji.Odpowiedź zawiera HtmlDocument zawierający wszystkie znaczniki w odpowiedzi.Znaczniki wejściowe są filtrowane z HtmlDocument.Każdy znacznik wejściowy jest badane dla atrybutu o nazwie Nazwa których wartość jest równa użytkownika dostarczonych wartość Nazwa właściwości.Jeśli znacznik ten atrybut pasujące zostanie znaleziony, podejmowana jest próba wyodrębnić wartości, który jest zawarty w wartość atrybutu, jeśli istnieje wartość atrybutu.Jeśli istnieje, nazwa i wartość znacznika są ekstrahowane i dodane do kontekstu test wydajności sieci web.Przekazuje reguły ekstrakcji.

Zobacz też

Zadania

Jak: Dodawanie reguły ekstrakcji 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 sprawdzania poprawności niestandardowe dla testu wydajności sieci Web

Informacje

ExtractionRule

Microsoft.VisualStudio.TestTools.WebTesting.Rules

ExtractAttributeValue

ExtractFormField

ExtractHttpHeader

ExtractRegularExpression

ExtractText

ExtractHiddenFields

Koncepcje

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