Share via


Description of Access methods in data sources

This blog post will discuss the access methods of data sources. Data sources are used when you want to bind a field in your web test to a database, csv file, xml file, etc. For example you might have a database that contains a list of users for your system. If you add this database to your web test, you can then bind the usernames and password to your web test. This way each iteration of the web test will use a different username and password. Here is a help link on adding data sources to a web test: https://msdn2.microsoft.com/en-us/library/ms404707(VS.80).aspx

 

The feature of data sources that I want to go over are the access methods. Access methods tell the web test how to fetch data from the data source. There are 3 access methods for data sources in web tests: Sequential, Random, and Unique. Here is a description of how each access method executes inside a load test.

 

Sequential – This is the default and tells the web test to start with the first row then fetch rows in order from the data source. When it reaches the end of the data source, loop back to the beginning and start again. Continue until the load test completes.

 

Random – This indicates to choose rows at random. Continue until the load test completes.

 

Unique – This indicates to start with the first row and fetch rows in order. Once every row is used, stop the web test. If this is the only web test in the load test, then the load test will stop.

 

This seems fairly straight forward when running the load test on a single machine. But what if you are running your load test on multiple agents? How is the data from the data source distributed if you are running on 3 agents?

 

Sequential – This works that same as if you are on one machine. Each agent receives a full copy of the data and each starts with row 1 in the data source. Then each agent will run through each row in the data source and continue looping until the load test completes.

 

Random – This also works the same as if you run the test on one machine. Each agent will receive a full copy of the data source and randomly select rows.

 

Unique – This one works a little differently. Each row in the data source will be used once. So if you have 3 agents, the data will be spread across the 3 agents and no row will be used more than once. As with one machine, once every row is used, the web test will stop executing.

 

I have seen a few posts indicating that they want to use the sequential access method, but don’t want each agent to execute all of the data. They would like to partition the data evenly across each agent. You can do this with a WebTestPlugin. Here is an example plugin which can be used to evenly distribute the data across the agents.

 

using Microsoft.VisualStudio.TestTools.WebTesting;

namespace Example

{

    public class DatasourcePlugin : WebTestPlugin

    {

        static int counter = 0;

        public override void PreWebTest(object sender, PreWebTestEventArgs e)

        {

            while ((counter++ % e.WebTest.Context.AgentCount) != (e.WebTest.Context.AgentId - 1))

            {

                e.WebTest.MoveDataTableCursor("DatasourceName", "TableName");

            }

        }

    }

}

 

In the above plug-in, I use some of the built in context parameters to move the data cursor to unique rows. I use the AgentCount and the AgentId to figure out which rows to use. This plugin performs modular division using the agent count and then compares that to the agent id. The modular division will return a value which is greater than or equal to 0 and less than the agent count. I then compare this to the agent id – 1. If these values are equal, then the plug-in returns. If the values are not equal, then I call MoveDataTableCursor. This method will move the data source to the next row. This loop continues until the modular division matches the agent id. The values passed into MoveDataTableCursor are the name of the data source and the name of the table in the data source.

 

Follow the steps in the following help link for creating a plugin: https://msdn2.microsoft.com/en-us/library/ms243191(VS.80).aspx

 

Once you add this to your web test, change the DatasourceName and TableName parameters to match your test. Then your data should be evenly spread across each of the agents in you rig.

 

Hopefully this explains how the different data access methods work.

Comments

  • Anonymous
    March 14, 2008
    The following blog post will discuss access methods in data sources and what happens when you run a load

  • Anonymous
    March 20, 2008
    Eugene Zakhareyev on Label scope revealed and Branching to desired target path is easy. The NWCadence...

  • Anonymous
    April 18, 2011
    Hi Sean, Thank you for sharing knowledge in this blog. It is very helpful. Quick question: If I would like to have a load test where it does (1) signing up accounts and (2) log in with these accounts. Would I be able to do that with 1 load test that has 2 web tests mixed in sequential order? Also, which access method should I use in this case? If I were to run a load test with the sequential web tests, would it use the same row for the two web tests or it will pick another row after the first test (let's say the signing up) is done? Regards, Patt

  • Anonymous
    February 05, 2014
    Didn't work for me.I implemented it correctly and tried to use all types of access methods (just because the first one didn't work), and it either didn't iterate at all or it didn't manage to split up the user load correctly between the agents.

  • Anonymous
    August 16, 2015
    Didn't work for me either, tried all methods still all agents have same copy of users is there any step missing, if anyone have workaround please share.