0

負荷テストを実行しており、負荷テストが終了した後、webtest コンテキスト パラメーターをデータベース (バージョン) に挿入しようとしています。しかし、負荷テストでは、コンテキスト パラメーターが表示されません。これまでのところ、次のように loadtestplugins を作成しました。

[DisplayName("Build Version Processing")]

[Description("Add the build version for a load test")]
public class BuildVersion : ILoadTestPlugin
{

    [DisplayName("Comment")]
    [Description("What the plugin is for")]
    public string theComment { get; set; }


    [DisplayName("Test Type")]
    [Description("M for Manual or A for Automatic")]
    [DefaultValue("A")]
    public string connectionStr { get; set; }


    [DisplayName("Version Context Parameter")]
    [Description("The Context Parameter for the build version")]
    [DefaultValue("{{Param_ClientSoftwareVersion}}")]
    public string Version_param { get; set; }


    LoadTest m_loadTest;

    public void Initialize(LoadTest loadTest)
    {

        m_loadTest = loadTest;
        m_loadTest.LoadTestFinished += new EventHandler(m_loadTest_LoadTestFinished);

    }

    // Do it *after* the Load Test.
    //---------------------------------------------------------------------
    void m_loadTest_LoadTestFinished(object sender, System.EventArgs e)
    {

        String name=m_loadTest.Name;
        String version = Version_param;







    }
}

文字列バージョンは、webtest コンテキスト パラメーターを格納するために使用されます。しかし、それは見えていません。

webtest プラグインと負荷テスト プラグインで編集

[System.ComponentModel.DisplayName("GetVersion")]
[System.ComponentModel.Description("Get the Build No Version")]

public  class GetVersion : WebTestPlugin
{


    //Setting the version in the usercontext
    public override void PostWebTest(object sender, PostWebTestEventArgs e)
    {

        String version = e.WebTest.Context["Param_ClientSoftwareVersion"].ToString();


        LoadTestUserContext userContext = (LoadTestUserContext)e.WebTest.Context["$LoadTestUserContext"];

        userContext["version"] = version;


    }

}

/// Specify a name for use in the user interface.
/// The user sees this name in the Add Validation dialog box.
[DisplayName("Build Version Processing")]
/// Specify a description for use in the user interface.
/// The user sees this description in the Add Validation dialog box.
[Description("Add the build version for a load test")]
public  class BuildVersion : ILoadTestPlugin 
{




    [DisplayName("Comment")]
    [Description("What the plugin is for")]
    public string theComment { get; set; }


    [DisplayName("Test Type")]
    [Description("M for Manual or A for Automatic")]
    [DefaultValue("A")]
    public string connectionStr { get; set; }


    [DisplayName("Version Context Parameter")]
    [Description("The Context Parameter for the build version")]
    [DefaultValue("{{Param_ClientSoftwareVersion}}")]
    public string Version_param { get; set; }


    LoadTest m_loadTest;


    public void Initialize(LoadTest loadTest)
    {

        m_loadTest = loadTest;

        m_loadTest.LoadTestFinished += new EventHandler(m_loadTest_LoadTestFinished);

    }

    // Do it *after* the Load Test.
    //---------------------------------------------------------------------
    //Getting the version in the usercontext
    void m_loadTest_LoadTestFinished(object sender, System.EventArgs e)
    {



        LoadTestUserContext loadTestUserContext = this.m_loadTest.Context["$LoadTestUserContext"] as LoadTestUserContext;

        String name = m_loadTest.Name;
        String version = loadTestUserContext.Count.ToString();
        bool test = loadTestUserContext.ContainsKey("version");







    }
}

Webtest プラグインを使用して Webtest を実行すると、次のエラーが表示されます: WebTestContext に '$LoadTestUserContext' という名前のコンテキスト パラメータがありません

4

0 に答える 0