NAnt, MbUnit, CruiseControl, Selenium - passing settings to the test assembly - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T23:11:09Zhttp://stackoverflow.com/feeds/question/240263http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/240263/nant-mbunit-cruisecontrol-selenium-passing-settings-to-the-test-assembly1NAnt, MbUnit, CruiseControl, Selenium - passing settings to the test assemblyTim Peel2008-10-27T15:17:09Z2009-01-15T12:49:22Z
<p>Hello,</p>
<p>I am putting together some ideas for our automated testing platform and have been looking at Selenium for the test runner.</p>
<p>I am wrapping the recorded Selenium C# scripts in an MbUnit test, which is being triggered via the MbUnit NAnt task. The Selenium test client is created as follows:</p>
<pre><code>selenium = new DefaultSelenium("host", 4444, "*iexplore", "http://[url]/");
</code></pre>
<p>How can I pass the host, port and url settings into the test so their values can be controlled via the NAnt task?</p>
<p>For example, I may have multiple Selenium RC servers listening and I want to use the same test code passing in each server address instead of embedding the settings within the tests themselves.</p>
<p>I have an approach mocked up using a custom NAnt task I have written but it is not the most elegant solution at present and I wondered if there was an easier way to accomplish what I want to do.</p>
<p>Many thanks if anyone can help.</p>
http://stackoverflow.com/questions/240263/nant-mbunit-cruisecontrol-selenium-passing-settings-to-the-test-assembly/240295#2402950Answer by Scott Saad for NAnt, MbUnit, CruiseControl, Selenium - passing settings to the test assemblyScott Saad2008-10-27T15:25:07Z2008-10-27T23:55:46Z<p>Anytime I need to integrate with an external entity using NAnt I either end up using the <strong>exec task</strong> or writing a <strong>custom task</strong>. Given the information you posted it would seem that writing your own would indeed be a good solution, However you state you're not happy with it. Can you elaborate a bit on why you don't think you current solution is an <em>elegant</em> one?</p>
<h2>Update</h2>
<p>Not knowing <em>internal</em> details it seems like you've solved it pretty well with a custom task. From what I've heard, that's how I would have done it. </p>
<p>Maybe a new solution will show itself in time, but for now be light on yourself! </p>
http://stackoverflow.com/questions/240263/nant-mbunit-cruisecontrol-selenium-passing-settings-to-the-test-assembly/240300#2403000Answer by Alex for NAnt, MbUnit, CruiseControl, Selenium - passing settings to the test assemblyAlex2008-10-27T15:26:35Z2008-10-27T15:26:35Z<p>For MSBuild I use environment variables, I create those in my CC.NET config then they would be available in the script. I think this would work for you too.</p>
http://stackoverflow.com/questions/240263/nant-mbunit-cruisecontrol-selenium-passing-settings-to-the-test-assembly/240326#2403260Answer by Tim Peel for NAnt, MbUnit, CruiseControl, Selenium - passing settings to the test assemblyTim Peel2008-10-27T15:36:19Z2008-10-27T15:36:19Z<p>Thanks for the responses so far.</p>
<p>Environment variables could work, however, we could be running parallel tests via a single test assembly so I wouldn't want settings to be overwritten during execution, which could break another test. Interesting line of thought though, thanks, I reckon I could use that in other areas.</p>
<p>My current solution involves a custom NAnt task build on top of the MbUnit task, which allows me to specify the additional host, port, url settings as attributes. These are then saved as a config file within the build directory and then read in by the test assemblies. This feels a bit "clunky" to me as my tests need to inherit from a specific class. Not too bad but I'd like to have less dependencies and concentrate on the testing.</p>
<p>Maybe I am worrying too much!!</p>
http://stackoverflow.com/questions/240263/nant-mbunit-cruisecontrol-selenium-passing-settings-to-the-test-assembly/446606#4466061Answer by Igor Brejc for NAnt, MbUnit, CruiseControl, Selenium - passing settings to the test assemblyIgor Brejc2009-01-15T12:49:22Z2009-01-15T12:49:22Z<p>I have a base class for all test fixtures which has the following setup code:</p>
<pre><code> [FixtureSetUp]
public virtual void TestFixtureSetup ()
{
BrowserType = (BrowserType) Enum.Parse (typeof (BrowserType),
System.Configuration.ConfigurationManager.AppSettings["BrowserType"],
true);
testMachine = System.Configuration.ConfigurationManager.AppSettings["TestMachine"];
seleniumPort = int.Parse (System.Configuration.ConfigurationManager.AppSettings["SeleniumPort"],
System.Globalization.CultureInfo.InvariantCulture);
seleniumSpeed = System.Configuration.ConfigurationManager.AppSettings["SeleniumSpeed"];
browserUrl = System.Configuration.ConfigurationManager.AppSettings["BrowserUrl"];
targetUrl = new Uri (System.Configuration.ConfigurationManager.AppSettings["TargetUrl"]);
string browserExe;
switch (BrowserType)
{
case BrowserType.InternetExplorer:
browserExe = "*iexplore";
break;
case BrowserType.Firefox:
browserExe = "*firefox";
break;
default:
throw new NotSupportedException ();
}
selenium = new DefaultSelenium (testMachine, seleniumPort, browserExe, browserUrl);
selenium.Start ();
System.Console.WriteLine ("Started Selenium session (browser type={0})",
browserType);
// sets the speed of execution of GUI commands
if (false == String.IsNullOrEmpty (seleniumSpeed))
selenium.SetSpeed (seleniumSpeed);
}
</code></pre>
<p>I then simply supply the test runner with a config. file:
</p>