User Peter Bernier - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:35:16Z http://stackoverflow.com/feeds/user/6112 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1202186/is-it-possible-to-mock-a-database-transaction-parameter 0 Is it possible to Mock a Database Transaction parameter? Peter Bernier 2009-07-29T18:34:01Z 2009-10-08T22:00:01Z <p>I'm trying to unit-test my implementation of an interface, and I'm having a little difficulty successfully mocking out a SqlTransaction parameter to one of the interface methods.</p> <p>Here's what the interface, and method under test that I'm interested in look like..</p> <pre><code>public class MyInterface { void MyMethod(SqlTransaction SharedTransaction, DateTime EventTime); } public class MyImplementation : MyInterface { public void MyMethod(SqlTransaction SharedTransaction, DateTime EventTime) { DateTime dtLastEventTime = DateTime.MinValue; using(SqlCommand comm = SharedTransaction.Connection.CreateCommand()) { comm.CommandText = SQL_GET_LAST_EVENTTIME_DEFINED_ELSEWHERE; comm.Parameters.AddWithValue("ParamName", 123); object oResult = comm.ExecuteScalar(); dtLastEventTime = DateTime.Parse(oResult.ToString()); } //Do something with dtLastEventTime } } </code></pre> <p>I've been using Moq and various syntax approaches to mock out the Database objects and not having much luck.. (I had to do some conversion to the System.Data.Common objects in order to be able to get a little further.. DbTransaction, DbConnection, DbCommand etc).</p> <p>What I'd like to know is primarily whether it's possible to mock out a transaction in this way, or whether I'm barking up the wrong tree here. Luckily I may be able to get the interface converted to use a generic DbTransaction parameter rather than the provider-specific SqlTransaction, but I'm not convinced that's why I'm having a hard time with the mocking.</p> <p>Here's (and this could be completely wrong, so please correct me or comment if i'm approaching this incorretly) what I've got so far for mocking code...</p> <pre><code> var mockParams = new Mock&lt;DbParameterCollection&gt;(); mockParams.Setup(p =&gt; p.Add(new SqlParameter("ParamName", 123))); var mockCommand = new Mock&lt;DbCommand&gt;(); mockCommand.Setup(p =&gt; p.Parameters).Returns(mockParams.Object); var mockConnection = new Mock&lt;DbConnection&gt;(); mockConnection.Setup(con =&gt; con.CreateCommand()).Returns(mockCommand.Object); var mockTrans = new Mock&lt;DbTransaction&gt;(); mockTrans.Setup(t =&gt; t.Connection).Returns(mockConnection.Object); </code></pre> <p>However, this seems to throw an ArgumentException on the mockCommand.Setup line.. (Invalid setup on a non-overridable member) </p> <p>Does anyone have any ideas or suggestions on how I might be able to correctly unit-test this method with a mocked SqlTransaction parameter?</p> http://stackoverflow.com/questions/59561/what-tools-techniques-can-benefit-a-solo-developer/59613#59613 15 Answer by Peter Bernier for What tools/techniques can benefit a solo developer? Peter Bernier 2008-09-12T17:48:20Z 2009-10-06T18:19:17Z <p>If you're on your own, your time is critical. Because of that, I'd highly suggest you look into writing some decent automated tests on your code.</p> <p>If you're doing web development, the quickest bang for your buck (IMO) is <a href="http://en.wikipedia.org/wiki/Selenium%5F%28software%29" rel="nofollow">Selenium</a>. It's a browser-based tool that basically uses JavaScript to perform user operations, inside a browser (works with multiple browsers and versions). </p> <p><a href="http://selenium.openqa.org/" rel="nofollow">http://selenium.openqa.org/</a></p> <p>The reason you want to be using automated tests is because you're the single point of failure. If you change something, you really don't have time to re-test everything. On the other hand, if you have even a half-way decent set of sanity test scripts, the risk of your change breaking something you're not aware of drops <em>significantly</em>!</p> <p>I'm in a similar situation and using Selenium has saved my bacon on more than one occasion.</p> http://stackoverflow.com/questions/803830/selenium-typekeys-strips-out-dot-from-the-string-being-typed/1074809#1074809 0 Answer by Peter Bernier for Selenium typeKeys strips out dot from the String being typed Peter Bernier 2009-07-02T14:42:17Z 2009-07-02T14:42:17Z <p>I'm also seeing this behaviour when using Selenium RC (C#), and with different characters ('y' for example which also seems to remove the character follow it from the typing action..)</p> <p>For some situations it is entirely possible to get around the issue by typing out the keys with the TypeKeys or KeyPress functions, but I haven't managed to find a solution that works when you want to type text in a field, enter control characters ([Enter] or a newline for example), and then type more text.. (using the 'Type' function in this case simply overwrites the field contents...).</p> <p>If anyone manages to find a reasonable solution to this issue, please add it to this question as it's starting to come up in google now and would probably help alot of people out.. (I'd start a bounty if I could..)</p> http://stackoverflow.com/questions/841572/getting-error-running-selenium-tests/1049537#1049537 0 Answer by Peter Bernier for Getting error running selenium tests Peter Bernier 2009-06-26T14:46:26Z 2009-06-26T14:46:26Z <p>Have you verified that the network server that you're trying to execute the tests on is running the Selenium Server? The error looks like the RC code is having trouble connecting to the server to start the tests...</p> <p>I'd suggest trying to execute the tests manually on the build machine at first in order to ensure that everything is configured properly.</p> http://stackoverflow.com/questions/826684/nullreferenceexception-problem-with-asp-net-mvc-textbox-htmlhelper/930710#930710 1 Answer by Peter Bernier for NullReferenceException Problem with ASP.NET MVC Textbox HtmlHelper Peter Bernier 2009-05-30T22:01:13Z 2009-05-30T22:01:13Z <p>I came across this as I was typing out a nearly identical question/problem. (ie, rendering my view was causing a mysterious NullReferenceException to to be thrown when the user's value failed validation on a particular field.</p> <p>A different work-around that I've found is explicitly generating the Html in the view rather than letting the HtmlHelper do the work. </p> <p>For instance : <code>&lt;%= Html.TextArea("FieldName", Model.FieldName) %&gt;</code> would throw an exception, but <code>&lt;textarea id="FieldName" name="FieldName"&gt;&lt;%= Model.FieldName &gt;&lt;/textarea&gt;</code> would work perfectly fine.</p> <p>Thank you for posting the original question since now I'll have to do some more looking into SetModelValue to see which of the two approaches is the better solution...</p> http://stackoverflow.com/questions/778772/how-can-i-unit-test-the-behaviour-of-the-handleerror-attribute-for-a-controller-m 0 How can I Unit-test the behaviour of the HandleError attribute for a controller method? Peter Bernier 2009-04-22T19:24:05Z 2009-04-30T18:36:47Z <p>I'm trying to verify the behaviour of my ASP.Net MVC app when an unexpected error occurs. Specifically, I'm trying to verify that the user is directed to the error page I've defined for my app. The problem I'm encountering is that I'm not able to verify the behaviour of the controller method as expected.</p> <p>For my normal behaviour tests, I create a mock business rule object and pass that to my controller and then verify the ViewResult from the controller method that I want to test. This works fine for my purposes when things work as expected. <strong>However</strong>, when I throw an exception from the business rule method, the exception is carried up <em>through the controller method result</em> rather than being handled (the controller method has the 'HandleError' attribute) by the controller so that an appropriate ViewResult for my error page being returned.</p> <p>Is there any way to verify the behaviour of the HandleError attribute in this fashion? Or am I going about this completely wrong? I realize I could use Selenium (in-browser testing which would hit the actual server) to verify the behaviour in an actual browser, but mocking these sort of tests lets me do this faster and with much less overhead...</p> <p>Sample Test Code :</p> <pre><code>// WidgetController.Index() makes a call to GetWidgets to retrieve a // List&lt;Widget&gt; instance. // this works as expected since the appropriate ViewResult is returned // by the controller public void TestWidgetControllerIndex_NoResultsFound() { var mockBR = new Mock&lt;IBusinessRules&gt; { CallBase = true }; mockBR.Setup(br=&gt;fr.GetWidgets()).Returns(new List&lt;Widget&gt;()); WidgetController controller = new WidgetController(mockBR.Object); ViewResult result = (ViewResult)controller.Index(); Assert.AreEqual("Index", result.ViewName); Assert.AreEqual(0, ((WidgetIndexViewData)result.ViewData.Model).Widgets.Count); } // this test is unable to reach the assertion statements due to the problem // outlined above. WidgetController.Index has the HandleError attribute // properly applied and the behaviour via the interface is as expected public void TestWidgetControllerIndex_BusinessRulesExceptionEncountered() { var mockBR = new Mock&lt;IBusinessRules&gt; { CallBase = true }; mockBR.Setup(br=&gt;fr.GetWidgets()).Throws&lt;ApplicationException&gt;(); WidgetController controller = new WidgetController(mockBR.Object); ViewResult result = (ViewResult)controller.Index(); // The ApplicationException thrown by the business rules object bubbles // up to the test through the line above. I was expecting this to be // caught and handled by the HandleError filter (which would then let // me verify the behaviour results via the assertion below).. Assert.AreEqual("Error", result.ViewName); } </code></pre> <p>I'd appreciate any suggestions as to what I might be doing wrong or whether I'm just approaching this from entirely the wrong direction. I'm making the assumption that testing at the controller method level is that appropriate way to go here since that's where the HandleError attribute is applied.. ( If I do need to test at the application level, is it possible to do that via similar instantiated objects rather than using something like Selenium? )</p> <p><em>Update</em> I've come to the conclusion that I shouldn't be testing the functionality related to the HandleError attribute on each controller action. I don't actually care about what it does, I just want to make sure that the error is handled (from my test perspective whether its custom code or the MVC libraries doesn't make a difference, it's the functionality that I want to verify).</p> <p>What I've ended up doing is wrapping my controller actions in try/catch blocks in order to force the Error view to be returned as a result of the method (rather than the ErrorHandler attribute catching the error as it leaves the method). This way I can assert in my unit tests that the error is properly handled with appropriate feedback. I'm not very pleased with the extra length that this adds to my controller methods, but it does let me provide a friendly, specific error message to the user (I'm using an extension method to display the feedback and perform logging). (So there are pros and cons to the try/catch approach for sure..)</p> <p>I'm not 100% positive that this is the cleanest way to go, but it achieves my goal of being able to verify that errors are handled via controller unit-tests (fast) rather than having to execute tests in a browser (slow). So basically it's <em>good enough</em> for now, until I can find a cleaner solution. I've decided to offer a bounty if anyone encounters a similar problem and has found a better solution..</p> http://stackoverflow.com/questions/393184/which-unit-test-framework-and-how-to-get-started-for-asp-net-mvc/798396#798396 0 Answer by Peter Bernier for Which Unit test framework and how to get started (for asp.net mvc) Peter Bernier 2009-04-28T14:55:59Z 2009-04-28T14:55:59Z <p>I'm using <a href="http://seleniumhq.org/documentation/remote-control/languages/dotnet.html" rel="nofollow">Selenium RC</a> and <a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a>. So far I haven't run into too many areas that I haven't been able to test and get good coverage for.</p> <p>Take a look at the <a href="http://svn.openqa.org/fisheye/viewrep/~raw,r=HEAD/selenium-rc/trunk/clients/dotnet/src/IntegrationTests/GoogleTest.cs" rel="nofollow">Selenium RC sample code</a>. It's pretty straight-forward and easy to follow...</p> http://stackoverflow.com/questions/249704/verify-sorting-in-selenium/798338#798338 0 Answer by Peter Bernier for Verify sorting in Selenium Peter Bernier 2009-04-28T14:44:06Z 2009-04-28T14:44:06Z <p>The way I approached this was to define the expected sorted results as an array and then iterate over the results returned from the sorted page to make sure they met my expectations. </p> <p>It's a little slow, but it does work. (We actually managed to find a few low-level sorting defects on multiple pages this way..)</p> http://stackoverflow.com/questions/376468/asp-net-resource-files/798334#798334 0 Answer by Peter Bernier for ASP.Net resource files Peter Bernier 2009-04-28T14:42:15Z 2009-04-28T14:42:15Z <p>Have you considered moving your GlobalResources into a separate assembly and then referencing that from both your web project and your test project? This is quite easy to do in VS 2008, and achievable but a little more difficult in VS 2005.</p> <p>I was able to solve a similar problem using that approach.</p> http://stackoverflow.com/questions/776433/what-attributes-do-you-use-for-selenium-testing/798263#798263 1 Answer by Peter Bernier for What attributes do you use for Selenium testing? Peter Bernier 2009-04-28T14:28:54Z 2009-04-28T14:28:54Z <p>I tend to favour XPath expressions looking for 'id' or 'name' attributes. </p> <p>However, if you execute your tests in IE6 regularly, beware of using XPath for locator expressions. XPath runs noticably slower in IE6 compares to later versions or Firefox. I've got a rather large SeleniumRC test suite that takes upwards of three hours to complete with IE6, compared to an hour with Firefox.. (all of that time isn't caused by the XPath, but it does contribute significantly).</p> http://stackoverflow.com/questions/171246/programming-on-the-asus-eee-pc-in-visual-studio/681392#681392 0 Answer by Peter Bernier for Programming on the Asus EEE Pc in Visual Studio Peter Bernier 2009-03-25T12:39:23Z 2009-03-25T12:39:23Z <p>Just a thought or alternative suggestion that might be applicable...</p> <p>I regularly use Visual Studio without any issues on my eeePC. The trick is that I simply access another machine running Visual Studio remotely in order to do this. This lets me have the convenience and portability of the netbook, along with the full-scale computing power of a real development environment.</p> <p>Obviously this won't work if you don't have connectivity, but for me its an ideal setup..</p> http://stackoverflow.com/questions/92362/has-anyone-found-a-way-to-run-c-selenium-rc-tests-in-parallel 7 Has anyone found a way to run C# Selenium RC tests in parallel? Peter Bernier 2008-09-18T13:07:41Z 2009-03-04T16:49:35Z <p><strong>Has anyone found a way to run Selenium RC / Selenium Grid tests, written in C# in parallel?</strong></p> <p>I've currently got a sizable test suite written using Selenium RC's C# driver. Running the entire test suite takes a little over an hour to complete. I normally don't have to run the entire suite so it hasn't been a concern up to now, but it's something that I'd like to be able to do more regularly (ie, as part of an automated build)</p> <p>I've been spending some time recently poking around with the Selenium Grid project whose purpose essentially is to allow those tests to run in parallel. Unfortunately, it seems that the TestDriven.net plugin that I'm using runs the tests serially (ie, one after another). I'm assuming that NUnit would execute the tests in a similar fashion, although I haven't actually tested this out. </p> <p>I've noticed that the NUnit 2.5 betas are starting to talk about running tests in parallel with pNUnit, but I haven't really familiarized myself enough with the project to know for sure whether this would work. </p> <p>Another option I'm considering is separating my test suite into different libraries which would let me run a test from each library concurrently, but I'd like to avoid that if possible since I'm not convinced this is a valid reason for splitting up the test suite.</p> http://stackoverflow.com/questions/558629/is-there-any-http-automation-tool-library-that-performs-http-requests-directly/579089#579089 0 Answer by Peter Bernier for Is there any http automation tool / library that performs http requests directly instead of automating a browser? Peter Bernier 2009-02-23T19:55:04Z 2009-02-23T19:55:04Z <p>I'm not familiar with a tool that will do what you're looking for that's .Net based, but if you can tolerate a Java UI, <a href="http://jakarta.apache.org/jmeter/" rel="nofollow">JMeter</a> will do exactly what you're looking for.</p> <p>It's basically a load-testing tool that functions at the transport (ie, Request/Response) level. It has record/playback/scripting functionality and supports a number of different protocols.</p> http://stackoverflow.com/questions/113395/how-can-i-test-for-an-expected-exception-with-a-specific-exception-message-from-a/563033#563033 0 Answer by Peter Bernier for How can I test for an expected exception with a specific exception message from a resource file in Visual Studio Test? Peter Bernier 2009-02-18T22:00:31Z 2009-02-18T22:00:31Z <p>I came across this question while trying to resolve a similar issue on my own. (I'll detail the solution that I settled on below.)</p> <p>I have to agree with Gishu's comments about internationalizing the exception messages being a code smell. </p> <p>I had done this initially in my own project so that I could have consistency between the error messages throw by my application and in my unit tests. ie, to only have to define my exception messages in one place and at the time, the Resource file seemed like a sensible place to do this since I was already using it for various labels and strings (and since it made sense to add a reference to it in my test code to verify that those same labels showed in the appropriate places).</p> <p>At one point I had considered (and tested) using try/catch blocks to avoid the requirement of a constant by the ExpectedException attribute, but this seemed like it would lead to quite a lot of extra code if applied on a large scale.</p> <p>In the end, the solution that I settled on was to create a static class in my Resource library and store my exception messages in that. This way there's no need to internationalize them (which I'll agree doesn't make sense) and they're made accessible anytime that a resource string would be accessible since they're in the same namespace. (This fits with my desire not to make verifying the exception text a complex process.)</p> <p>My test code then simply boils down to (pardon the mangling...):</p> <p>[Test, ExpectedException(typeof(System.ArgumentException), ExpectedException=ProductExceptionMessages.DuplicateProductName)] public void TestCreateDuplicateProduct() { _repository.CreateProduct("TestCreateDuplicateProduct"); _repository.CreateProduct("TestCreateDuplicateProduct"); } </p> http://stackoverflow.com/questions/466819/how-can-i-make-my-selenium-tests-less-brittle/488720#488720 0 Answer by Peter Bernier for How can I make my Selenium tests less brittle? Peter Bernier 2009-01-28T18:18:43Z 2009-01-28T18:18:43Z <p>I've found that using XPath expressions in Selenuium-RC adds alot to the robustness of a test.</p> <p>I write my tests in a similar manner. The first pass is often written via the IDE/Record to get most of my page-flow and click operations. Once I've got that, I begin stepping through the test via Selenium-RC adding assertions and changing absolute widget locators to more readable and friendly Xpath expressions. (as well as documenting the test! :) )</p> <p>One thing to be aware of.. if your tests are xpath-heavy, they may run a little slower in IE6 due to its poor javascript execution abilities. (I have some test suites that take almost an hour longer to execute under IE than under FF. It's managable, but just something to keep in mind when you're writing the tests.)</p> http://stackoverflow.com/questions/106956/is-the-unity-framework-any-good-for-inversion-of-control/208933#208933 3 Answer by Peter Bernier for Is the Unity Framework any good for Inversion of Control? Peter Bernier 2008-10-16T15:06:35Z 2008-10-16T15:06:35Z <p>I took a look at the Unity Framework, but found it to be a little 'too big' for my needs (no, I can't really quantify that, it just seemed to require much more knowledge that other frameworks that I've been playing with... this was a while ago so it's possible that that's changed as Unity's been developed/refined).</p> <p>My current IoC/Dependency Injection framework is <a href="http://www.ninject.org" rel="nofollow">Ninject</a>. It's quick, fast, and I was able to go from reading the tutorials (about 10 minutes) to using it in a pre-existing project in about two hours. </p> <p>If you're looking for a clean way to do dependency injection, I'd highly recommend checking it out.</p> http://stackoverflow.com/questions/140937/is-there-a-way-to-make-strongly-typed-resource-files-public-as-opposed-to-intern 2 Is there a way to make Strongly Typed Resource files public (as opposed to internal)? Peter Bernier 2008-09-26T17:51:15Z 2008-09-26T18:11:00Z <p>Here's what I'd like to do: </p> <p>I want to create a library project that contains my Resource files (ie, UI Labels and whatnot). I'd like to then use the resource library both in my UI and in my Tests. (Ie, basically have a common place for my resources that I reference from multiple projects.)</p> <p>Unfortunately, because the StronglyTypedResourceBuilder (the .Net class which generates the code for Resources) makes resource files internal by default, I can't reference my strongly typed resources in the library from another project (ie, my UI or tests), without jumping through hoops (ie, something similar to what is described <a href="http://www.codeproject.com/KB/dotnet/Localization.aspx" rel="nofollow">here</a>, or writing a public wrapper class/function).</p> <p>Unfortunately, both those solutions remove my ability to keep the references strongly-typed.</p> <p>Has anyone found a straight-forward way to create strongly typed .Net resources that can be referenced from multiple projects?</p> <p>I'd prefer to avoid having to use a build event in order to accomplish this (ie, to do something like replace all instances of 'internal' with 'public', but that's basically my fall-back plan if I can't find an answer..</p> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/59344#59344 20 Answer by Peter Bernier for Computer Language puns and jokes Peter Bernier 2008-09-12T15:39:03Z 2008-09-21T19:50:53Z <p>Overhead in an ASP.Net user's group meeting.. (poking fun at Java..)</p> <p><em>Knock Knock</em></p> <p>Who's there?</p> <p>...</p> <p>...</p> <p>... </p> <p>(wait about 30 seconds)</p> <p>"Java.."</p> http://stackoverflow.com/questions/2556/whats-the-best-online-payment-processing-solution/103972#103972 1 Answer by Peter Bernier for What's the best online payment processing solution? Peter Bernier 2008-09-19T17:39:52Z 2008-09-19T17:39:52Z <p>Google Check-out isn't available to non-US companies. I didn't realize this until the last stages of my research, so I found it quite annoying (considering it was very easy to work with and very well documented).</p> <p>Unfortunately in order to make things as convenient as possible for your end users, you're pretty much stuck with <i>having</i> to support Paypal. No one else comes close in terms of registered users.</p> http://stackoverflow.com/questions/99876/selenium-critique/103941#103941 6 Answer by Peter Bernier for Selenium Critique Peter Bernier 2008-09-19T17:35:44Z 2008-09-19T17:35:44Z <p>I'm using Selenium Remote Control in order to test ASP.Net apps (which is what I'm assuming you'll be targetting as well), and it works great.</p> <p>If you've never used Selenium, watch some of the <a href="http://wiki.openqa.org/download/attachments/400/Selenium+IDE.swf?version=1" rel="nofollow">screencasts</a>screencasts for using Selenium IDE. This will give you a good idea of how 'Selenium' works. The IDE is a firefox plugins that basically lets you develop quick record-and-play tests as you go. For larger test suites though, or for writing really maintainable tests though, I'd recommend Selenium Remote Control. (The IDE is terrific if you're just getting a start though.)</p> <p><a href="http://selenium-rc.openqa.org/" rel="nofollow">Selenium Remote Control</a> lets you use your favourite language and unit testing framework to drive a web browser in order to execute your tests. If you're most comfortable with C#/NUnit, you can write your tests that way and use all the NUnit goodies that you like. (For example, the Test-Driven.net plugin). Also, since your tests are written in a high level language, you're able to do things like inherit from a particular test class which you can use to make your actual test method code much cleaner. (Or at least thats the way I write my tests. It lets me test complex scenarios which keeping my test method line-count at a reasonable number.)</p> <p>You mention distributed testing. Unfortunately I haven't found a way to use the <a href="http://selenium-grid.openqa.org/" rel="nofollow">Selenium Grid</a> project with NUnit. Selenium Grid allows you to execute your test suite over a number different machines and browser instances. So rather than running through say 200 test methods one after another (ie, serially), you could spread the load out over say four Grid instances (ie, running in four different browsers instances at a time) on a single machine or multiple machines depending on how distributed you want to get. </p> <p>If you write your tests in Java or PHP though, you might have better luck. I'm expecting this to be available via NUnit with the release of NUnit2.5 which will include pNUnit for parallel testing.</p> <p>If you have any further questions about selenium, just clarify your original question and I'll be happy to try and help you out. (Selenium is just one of those tools that I use everyday so I enjoy helping to get new people started with it..)</p> http://stackoverflow.com/questions/99045/handling-browser-pop-up-windows-with-selenium/102184#102184 0 Answer by Peter Bernier for Handling browser pop-up windows with Selenium Peter Bernier 2008-09-19T14:18:36Z 2008-09-19T14:18:36Z <p>Try adding some wait statements around the calls that are causing you issues.</p> <p>I've had the same errors before and the only way I was able to <i>reliably</i> resolve them was by making calls to System.Threading.Thread.Sleep(5000)..</p> http://stackoverflow.com/questions/101774/what-is-your-bug-task-tracking-tool/102148#102148 6 Answer by Peter Bernier for What is your bug/task tracking tool? Peter Bernier 2008-09-19T14:14:30Z 2008-09-19T14:14:30Z <p>Here's another vote for <a href="http://www.mantisbt.org" rel="nofollow">Mantis</a>. </p> <p>@<a href="#102108" rel="nofollow">Camilo DR</a>, source-control integration is available. I've got my mantis setup so that every time I do a SVN commit, the patch file is attached to the relevant issue along with the SVN comments being added as a note. I find this provides excellent history and lets you easily tie how an issue is resolved from the business side, to how it's resolved in the actual implementation. Here's the <a href="http://alt-tag.com/blog/archives/2006/11/integrating-mantis-and-subversion/" rel="nofollow">Tutorial</a> that I used to get this up and running. (It's definitely worth the effort.)</p> http://stackoverflow.com/questions/94718/open-source-net-tools/95288#95288 1 Answer by Peter Bernier for Open source .NET tools Peter Bernier 2008-09-18T18:24:17Z 2008-09-18T18:24:17Z <p><a href="http://selenium.openqa.org" rel="nofollow">Selenium Remote Control</a></p> <p>Selenium is a test automation tool that provides a few different ways to automate testing of web applications. (via a GUI with Selenium IDE, or via NUnit with Selenium Remote Control).</p> http://stackoverflow.com/questions/7492/how-do-you-stress-test-a-web-application/92501#92501 9 Answer by Peter Bernier for How do you stress test a web application? Peter Bernier 2008-09-18T13:24:55Z 2008-09-18T13:24:55Z <p>Here's another vote for JMeter.</p> <p>JMeter is an open-source load testing tool, written in Java. It's capable of testing a number of different server types (for example, web, web services, database, just about anything that uses requests basically).</p> <p>It does however have a steep learning curve once you start getting to complicated tests, but it's well worth it. You can get up and running very quickly, and depending on what sort of stress-testing you want to do, that might be fine.</p> <p>Pros: </p> <ul> <li>Open-Source/Free tool from the Apache project (helps with buy-in)</li> <li>Easy to get started with, and easy to use once you grasp the core concepts. (Ie, how to create a request, how to create an assertion, how to work with variables etc).</li> <li>Very scalable. I've run tests with 11 machines generating load on the server to the tune of almost a million hits/hour. It was <em>much</em> easier to setup than I was expecting.</li> <li>Has an active community and good resources to help you get up and running. Read the tutorials first and play with it for a while. </li> </ul> <p>Cons:</p> <ul> <li>The UI is written in Swing. (ugh!)</li> <li>JMeter works by parsing the response text returned by the server. So if you're looking to validate any sort of javascript behaviours, you're out of luck.</li> <li>Learning curve is steep for non-programmers. If you're familiar with regular expressions, you're already ahead of the game.</li> <li>There are large numbers of (<em>insert expletive</em>) idiots in the support forum asking stupid questions that could be easily solve if they'd give the documentation even a cursory glance. ('How do I use JMeter to stress-test my Windows GUI' shows up quite frequently).</li> <li>Reporting 'out of the box' leaves much to be desired, particularly for larger tests. In the test I mentioned above, I ended up having to write a quick console app to do some of the 'xml-logfile' to 'html' conversions. That was a few years ago though, so it's probable that this would no longer be required.</li> </ul> http://stackoverflow.com/questions/7440/what-do-you-use-to-unit-test-your-web-ui/92250#92250 7 Answer by Peter Bernier for What do you use to Unit-Test your Web UI? Peter Bernier 2008-09-18T12:54:04Z 2008-09-18T12:54:04Z <p>I'm a huge fan of Selenium. Saying 'unit-testing your web ui' isn't exactly accurate as some of the comments have mentioned. However, I do find Selenium to be incredibly useful for performing those sort of acceptance and sanity tests on the UI.</p> <p>A good way to get started is using Selenium IDE as part of your development. Ie, just have the IDE open as you're developing and write your test as you go to cut down on your dev time. (Instead of having to manually go through the UI to get to the point where you can test whatever you're working on, just hit a button and Selenium IDE will take care of that for you. It's a terrific time-saver!)</p> <p>Most of my major use case scenarios have Selenium RC tests to back them up. You can't really think of them as unit-tests along the lines of an xUnit framework, but they are tests targetted to very specific functionality. They're quick to write (especially if you implement common methods for things like logging in or setting up your test cases), quick to run, and provide a very tight feedback loop. In those senses Selenium RC tests are very <em>similar</em> to unit-tests.</p> <p>I think, like anything else, if you put the effort into properly learning a test tool (eg, Selenium), your effort will pay off in spades. You mention that your company already uses Selenium to do UI testing. This is great. Work with it. If you find Selenium hard to use, or confusing, stick with it. The learning curve really isn't all that steep once you learn the API a little bit.</p> <p>If I'm working on a web app, its rare for me to write a significant amount of code without Selenium RC tests to back it up. That's how effective I find Selenium. :) (Hopefully that'll answer your question..)</p> http://stackoverflow.com/questions/88269/how-do-you-get-selenium-to-recognize-that-a-page-loaded/92179#92179 0 Answer by Peter Bernier for How do you get selenium to recognize that a page loaded? Peter Bernier 2008-09-18T12:41:09Z 2008-09-18T12:41:09Z <p>I've run into similar issues when using Selenium to test an application with iFrames. Basically, it seemed that once the primary page (the page containing the iframes) was loaded, Selenium was unable to determine when the iframe content had finished loading.</p> <p>From looking at the source for the link you're trying to load, it looks like there's some Javascript that's creating additional page elements once the page has loaded. I can't be sure, but it's possible that this is what's causing the problem since it seems similar to the situation that I've encountered above.</p> <p>Do you get the same sort of errors loading a static page? (ie, something with straight html)</p> <p>If you're unable to get a better answer, try the selenium forums, they're usually quite active and the Selenium devs do respond to good questions.</p> <p><a href="http://clearspace.openqa.org/community/selenium_remote_control" rel="nofollow">http://clearspace.openqa.org/community/selenium_remote_control</a></p> <p>Also, if you haven't already tried it, add a call to browser.WaitForPageToLoad("15000") after the call to open. I've found that doing this after every page transition makes my tests a little more solid, even though it shouldn't technically be required. (When Selenium detects that the page actually has loaded, it continues, so the actual timeout variable isn't really a concern..</p> http://stackoverflow.com/questions/12476/why-is-my-asp-net-application-throwing-threadabortexception/73707#73707 -1 Answer by Peter Bernier for Why is my asp.net application throwing ThreadAbortException? Peter Bernier 2008-09-16T15:39:03Z 2008-09-16T15:39:03Z <p>Has anyone else been able to resolve a situation like the original poster? I'm seeing the ThreadAbortException still being thrown, even when I set the Redirect or Transfer second parameter to false.</p> <p>I've been trying various ways of using Server.Transfer, Response.Redirect and Server.Execute without success. It seems that regardless of how I try to achieve the transfer, I'm still getting the exception being thrown.</p> http://stackoverflow.com/questions/71561/how-to-simulate-pressing-enter-in-html-text-input-with-selenium/71876#71876 0 Answer by Peter Bernier for How to simulate pressing enter in html text input with Selenium? Peter Bernier 2008-09-16T12:53:12Z 2008-09-16T12:53:12Z <p>It's been a while since I've had to do this, but I seem to recall having to use a javascript snippet to execute the carrage return as opposed to using the Selenium keypress function.</p> http://stackoverflow.com/questions/62784/should-you-design-websites-that-require-javascript-in-this-day-age/62893#62893 1 Answer by Peter Bernier for Should you design websites that require JavaScript in this day & age? Peter Bernier 2008-09-15T13:31:16Z 2008-09-15T13:31:16Z <p>Degrading gracefully is a must. At a minimum, you sure make use of the NOSCRIPT tag in order to inform potential <em>customers</em> first that your site requires javascript, and secondly why you require it. </p> <p>If it's for flashy menus and presentations that I could honestly care less about then I probably won't bother coming back. If there's a real reason that you're requiring javascript (client-side validation on forms, or a real situation that requires AJAX for performance reasons) then say so and your visitors will respond accordingly.</p> <p>I install extensions that limit both Javascript and Cookies. Websites that don't prominently state their requirements of both usually don't get a second visit unless there's a real need for it.</p> http://stackoverflow.com/questions/62625/how-do-you-know-what-to-test-when-writing-unit-tests/62684#62684 0 Answer by Peter Bernier for How do you know what to test when writing unit tests? Peter Bernier 2008-09-15T13:09:16Z 2008-09-15T13:09:16Z <p>I would test your getters and setters. Depending on who's writing the code, some people change the meaning of the getter/setter methods. I've seen variable initialization and other validation as part of getter methods. In order to test this sort of thing, you'd want unit tests covering that code explicitly.</p> http://stackoverflow.com/questions/5694/the-imported-project-c-microsoft-csharp-targets-was-not-found/5695#5695 Comment by Peter Bernier on The imported project "C:\Microsoft.CSharp.targets" was not found Peter Bernier 2009-12-13T23:44:07Z 2009-12-13T23:44:07Z Awesome, thanks for posting this! http://stackoverflow.com/questions/198285/sharplibzip-add-file-without-path/200895#200895 Comment by Peter Bernier on SharpLibZip: Add file without path. Peter Bernier 2009-09-25T14:46:34Z 2009-09-25T14:46:34Z Perfect, this is exactly what I was looking for. Thanks! http://stackoverflow.com/questions/11964/pay-for-vmware-or-use-open-source/11968#11968 Comment by Peter Bernier on Pay for vmware or use Open Source? Peter Bernier 2009-09-24T18:54:20Z 2009-09-24T18:54:20Z There are ways to create VMs other than with server or workstation products. For example <a href="http://www.easyvmx.com/" rel="nofollow">easyvmx.com</a> creates the configuration and VHD files for you, so you could setup a machine from scratch using only VMWare Player. http://stackoverflow.com/questions/327722/nant-and-vs2008-net-3-5-solution-format-of-file-solution-sln-is-not-supporte/426455#426455 Comment by Peter Bernier on NAnt and VS2008 (.NET 3.5) - Solution format of file Solution.sln is not supported Peter Bernier 2009-08-26T13:30:07Z 2009-08-26T13:30:07Z +1 for using the msbuild tasks. I've been playing with both since I'm starting to automate our builds and the msbuild is just quicker to get up and running. I also think the idea of using the actual solution/project files to run the build is just a 'good idea' as it means all the build info is in one place. (Rather than have a solution/project for VS and a Nant configuration.) http://stackoverflow.com/questions/778772/how-can-i-unit-test-the-behaviour-of-the-handleerror-attribute-for-a-controller-m/808430#808430 Comment by Peter Bernier on How can I Unit-test the behaviour of the HandleError attribute for a controller method? Peter Bernier 2009-05-05T14:37:27Z 2009-05-05T14:37:27Z This is exactly the approach that I've taken. (ie, using Selenium to verify the behaviour via an integration test..) http://stackoverflow.com/questions/606550/watir-vs-selenium-vs-sahi/643124#643124 Comment by Peter Bernier on Watir vs Selenium vs Sahi Peter Bernier 2009-04-28T14:37:56Z 2009-04-28T14:37:56Z I'd put an asterisk on having to learn Selenese for Selenium. If you're using Selenium RC, all you're doing is consuming the API, which is thoroughly documented and more or less intuitive once you've written a few tests.. http://stackoverflow.com/questions/92362/has-anyone-found-a-way-to-run-c-selenium-rc-tests-in-parallel/611452#611452 Comment by Peter Bernier on Has anyone found a way to run C# Selenium RC tests in parallel? Peter Bernier 2009-03-05T13:47:26Z 2009-03-05T13:47:26Z Thanks for your response. I've moved off of this project for the time being, but when I come back to it, I'll give your solution a shot! http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218203#218203 Comment by Peter Bernier on What was the strangest coding standard rule that you were forced to follow? Peter Bernier 2009-02-19T16:21:24Z 2009-02-19T16:21:24Z Personally, I can't stand reading code that uses the ternary operator. It just kills the readability for me. http://stackoverflow.com/questions/140937/is-there-a-way-to-make-strongly-typed-resource-files-public-as-opposed-to-intern/140957#140957 Comment by Peter Bernier on Is there a way to make Strongly Typed Resource files public (as opposed to internal)? Peter Bernier 2008-09-26T18:17:07Z 2008-09-26T18:17:07Z I'm using VS 2005, so the ResXFileGeneratorEx would have been the way to go. Thanks for your answer! http://stackoverflow.com/questions/140937/is-there-a-way-to-make-strongly-typed-resource-files-public-as-opposed-to-intern/141048#141048 Comment by Peter Bernier on Is there a way to make Strongly Typed Resource files public (as opposed to internal)? Peter Bernier 2008-09-26T18:16:01Z 2008-09-26T18:16:01Z Perfect, Thank you! I hadn't seen the InternalsVisibleTo attribute before, but that's exactly what I needed. It lets me keep things simple, clean, and I don't have to install the ResXFileCodeGeneratorEx.