I am trying to use SpecsFor MVC for automated acceptance testing and I have noticed that it is not building / publishing project correctly on Visual Studio 2012 and hence IIS Express is not running, ending in a 'Page cannot be displayed' message throughout the automated acceptance test.
To take you through all my tests to get this working, initially, when trying to run the automated tests, I was getting a 'Build Failed' message when running
_host = new SpecsForIntegrationHost(config);
_host.Start();
. After loading the SpecsFor MVC source code, I have noticed that the error was because the MSBuild.exe
process was failing and the output message was being written to Console.Output
. After checking the output, I have noticed that the error was that the Microsoft.WebApplication.targets
was not found. After some research, I found the below:
<PropertyGroup>
node from the .csproj
which after removing it, the MSBuild.exe
was not exiting with an error code as it only had warnings which still resulted in the project not being built & published correctly. SpecsFor MVC in this case treated this scenario as successful and proceeded with launching IIS Express but since the project was not built successfully, the acceptance tests resulted in another Page Cannot Be Displayed
message as IIS Express was not running correctly.C:\Program Files (x86)\MSBuild\12.0\Bin
.
IISTestRunnerAction.PublishSite()
method, the path of the MSBuild.exe
is being loaded through
System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory()
which in my case is outputting C:\Windows\Microsoft.NET\Framework64\v4.0.30319\
. Changing this manually to C:\Program Files (x86)\MSBuild\12.0\Bin
solved the issue and project was built & published successfully.My final question is: Is there a way where one can change the value of System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory()
so that I wouldn't need to update the source of the SpecsFor MVC project?
Thanks in advance for any help!
As of SpecsFor.Mvc 3.2.0-rc01 (still a preview release as of right now), you can configure the path to MSBuild like so:
var config = new SpecsForMvcConfig();
config.UseIISExpress()
.With(Project.Named("SpecsFor.Mvc.Demo"))
.CleanupPublishedFiles()
//Set the full path to MSBuild.exe here!
.UseMSBuildExecutableAt(@"C:\Program Files (x86)\MSBuild\12.0\Bin\msbuild.exe")
.ApplyWebConfigTransformForConfig("Test");