Quantcast
Channel: Category Name
Viewing all articles
Browse latest Browse all 10804

Supplying Run Time Parameters to Tests

$
0
0

Tests broadly classified as integration tests or functional tests are often in need to connect to external app resource (web application, API front end, or a DB tier) to drive validations. Maintaining lifecycle of such tests from the environment where it’s authored (dev machine with VS) to all the other places where they might be consumed (as part of Build/CI Tests, Build-Deploy-Test workflow, Release workflow) is quite challenging.

As a classic example, consider following piece of functional validation code:

 

 

To effectively reuse such tests throughout the lifecycle it’s important that we provide tooling flexibility for connecting tests to external app resources such as appUrl in the example above. In Visual Studio 2015, the TestRunParameters section in RunSettings file is defined to address this need.

 

 

This value can then be used in tests using TestContext.Properties. Currently, this functionality is only available in MSTest framework. 

 

 

For CI, BDT and Release workflows, we have added the ability to override the value of parameters declared in the runsettings file with those supplied at runtime. These values can be passed to the Visual Studio Test task or Visual Studio Test using Test Agent task using the Override TestRun Parameters field.

 

Figure 1: Specifying value of appUrl in the VSTest task

 

So as to not hardcode the value in the task itself, you can declare a Build variable and then use that at all places in the workflow where you need it.

 

Figure 2: Declaring "Deployment URL" as a Build variable

 

 

Figure 3: Using variable in ‘Visual Studio Test using Test Agent’ task for a BDT workflow

 

Viewing all articles
Browse latest Browse all 10804

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>