public StatLightConfiguration GetStatLightConfigurationForXap(UnitTestProviderType unitTestProviderType, string xapPath, MicrosoftTestingFrameworkVersion?microsoftTestingFrameworkVersion, Collection <string> methodsToTest, string tagFilters, int numberOfBrowserHosts, bool isRemoteRun, string queryString, WebBrowserType webBrowserType, bool forceBrowserStart, bool showTestingBrowserHost) { if (queryString == null) { throw new ArgumentNullException("queryString"); } if (showTestingBrowserHost && !Environment.UserInteractive) { throw new StatLightException("You cannot use the -b option as your C.I. server's agent process is not running in desktop interactive mode."); } Func <IEnumerable <ITestFile> > filesToCopyIntoHostXap = () => new List <ITestFile>(); string runtimeVersion = null; string entryPointAssembly = string.Empty; if (isRemoteRun) { } else { AssertFileExists(xapPath); var xapReader = new XapReader(_logger); TestFileCollection testFileCollection = xapReader.LoadXapUnderTest(xapPath); runtimeVersion = XapReader.GetRuntimeVersion(xapPath); SetupUnitTestProviderType(testFileCollection, ref unitTestProviderType, ref microsoftTestingFrameworkVersion); entryPointAssembly = testFileCollection.TestAssemblyFullName; filesToCopyIntoHostXap = () => { return(xapReader.LoadXapUnderTest(xapPath).FilesContainedWithinXap); }; } var clientConfig = new ClientTestRunConfiguration(unitTestProviderType, methodsToTest, tagFilters, numberOfBrowserHosts, webBrowserType, showTestingBrowserHost, entryPointAssembly); var serverConfig = CreateServerConfiguration( xapPath, clientConfig.UnitTestProviderType, microsoftTestingFrameworkVersion, filesToCopyIntoHostXap, DefaultDialogSmackDownElapseMilliseconds, queryString, forceBrowserStart, showTestingBrowserHost, runtimeVersion); return(new StatLightConfiguration(clientConfig, serverConfig)); }
private StatLightConfiguration GetStatLightConfigurationForXap(string xapPath) { Func <IEnumerable <ITestFile> > filesToCopyIntoHostXap = () => new List <ITestFile>(); string runtimeVersion = null; IEnumerable <string> testAssemblyFormalNames = new List <string>(); string entryPointAssembly = string.Empty; var xapReader = new XapReader(_logger); TestFileCollection testFileCollection = xapReader.LoadXapUnderTest(xapPath); runtimeVersion = XapReader.GetRuntimeVersion(xapPath); UnitTestProviderType unitTestProviderType = _options.UnitTestProviderType; MicrosoftTestingFrameworkVersion?microsoftTestingFrameworkVersion = _options.MicrosoftTestingFrameworkVersion; SetupUnitTestProviderType(testFileCollection, ref unitTestProviderType, ref microsoftTestingFrameworkVersion); entryPointAssembly = testFileCollection.TestAssemblyFullName; testAssemblyFormalNames = testFileCollection.GetAssemblyNames(); filesToCopyIntoHostXap = () => { return(xapReader.LoadXapUnderTest(xapPath).FilesContainedWithinXap); }; var clientConfig = new ClientTestRunConfiguration( unitTestProviderType: unitTestProviderType, methodsToTest: _options.MethodsToTest, tagFilters: _options.TagFilters, numberOfBrowserHosts: _options.NumberOfBrowserHosts, webBrowserType: _options.WebBrowserType, entryPointAssembly: entryPointAssembly, windowGeometry: _options.WindowGeometry, testAssemblyFormalNames: testAssemblyFormalNames); var serverConfig = CreateServerConfiguration( xapPath, unitTestProviderType, microsoftTestingFrameworkVersion, filesToCopyIntoHostXap, _options.QueryString, _options.ForceBrowserStart, _options.WindowGeometry, runtimeVersion, _options.IsPhoneRun); return(new StatLightConfiguration(clientConfig, serverConfig)); }
public StatLightConfiguration GetStatLightConfigurationForXap(UnitTestProviderType unitTestProviderType, string xapPath, MicrosoftTestingFrameworkVersion?microsoftTestingFrameworkVersion, Collection <string> methodsToTest, string tagFilters, int numberOfBrowserHosts, bool isRemoteRun, string queryString, WebBrowserType webBrowserType, bool forceBrowserStart, bool showTestingBrowserHost) { if (queryString == null) { throw new ArgumentNullException("queryString"); } IEnumerable <ITestFile> filesToCopyIntoHostXap = new List <ITestFile>(); string entryPointAssembly = string.Empty; if (isRemoteRun) { } else { AssertFileExists(xapPath); var xapReader = new XapReader(_logger); TestFileCollection testFileCollection = xapReader.LoadXapUnderTest(xapPath); SetupUnitTestProviderType(testFileCollection, ref unitTestProviderType, ref microsoftTestingFrameworkVersion); entryPointAssembly = testFileCollection.TestAssemblyFullName; filesToCopyIntoHostXap = testFileCollection.FilesContainedWithinXap; } var clientConfig = new ClientTestRunConfiguration(unitTestProviderType, methodsToTest, tagFilters, numberOfBrowserHosts, webBrowserType, showTestingBrowserHost, entryPointAssembly); var serverConfig = CreateServerConfiguration( xapPath, clientConfig.UnitTestProviderType, microsoftTestingFrameworkVersion, filesToCopyIntoHostXap, DefaultDialogSmackDownElapseMilliseconds, queryString, forceBrowserStart, showTestingBrowserHost); return(new StatLightConfiguration(clientConfig, serverConfig)); }
private void ShouldLoadCorrectType(string fileName, UnitTestProviderType unitTestProviderType) { var xapReadItems = new XapReader(new ConsoleLogger(LogChatterLevels.Full)).LoadXapUnderTest(fileName); xapReadItems.UnitTestProvider.ShouldEqual(unitTestProviderType); }