/WcfLatencyTestHarness/WcfClientHost/Program.cs

# · C# · 247 lines · 206 code · 23 blank · 18 comment · 9 complexity · 74234a95d27a06349343c61742f7dc06 MD5 · raw file

  1. using System;
  2. using System.IO;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Diagnostics;
  7. using System.Threading;
  8. using System.Configuration;
  9. using System.Reflection;
  10. using WcfCore;
  11. namespace WcfClientHost
  12. {
  13. class Program
  14. {
  15. public static string clientMachineName;
  16. public static string serviceMachineName;
  17. private static string remoteUser;
  18. private static string remotePassword;
  19. private static string wcfServerDir;
  20. private static string wcfServerExeName;
  21. private static string wcfServerExePath;
  22. private static string wcfServerConfigPath;
  23. private static string wcfServerBindingConfigPath;
  24. private static string wcfRemoteServerDir;
  25. private static string wcfRemoteServerExeName;
  26. private static string wcfRemoteServerExePath;
  27. private static string wcfRemoteServerConfigPath;
  28. private static string wcfRemoteServerBindingConfigPath;
  29. private static string wcfClientDir;
  30. private static string wcfClientExeName;
  31. private static string wcfClientExePath;
  32. private static string wcfClientConfigPath;
  33. private static string wcfClientBindingConfigPath;
  34. private static string logmanExePath;
  35. private static string psexecExePath;
  36. private static string pskillExePath;
  37. private static string filename;
  38. static void Main(string[] args)
  39. {
  40. Process.GetCurrentProcess().PriorityClass = ProcessPriorityClass.High;
  41. if (args.Length != 1)
  42. {
  43. Console.WriteLine("Gotta specify the input file.");
  44. throw new ArgumentException("Wrong command line arguments.");
  45. }
  46. filename = args[0];
  47. if (!File.Exists(filename))
  48. {
  49. Console.WriteLine("Gotta specify an existing file containing the test input information.");
  50. throw new ArgumentException("Wrong command line arguments.");
  51. }
  52. FileInfo fi = new FileInfo(filename);
  53. try
  54. {
  55. clientMachineName = ConfigurationManager.AppSettings["ClientMachineName"];
  56. serviceMachineName = ConfigurationManager.AppSettings["ServiceMachineName"];
  57. remoteUser = ConfigurationManager.AppSettings["RemoteUser"];
  58. remotePassword = ConfigurationManager.AppSettings["RemotePassword"];
  59. wcfServerDir = ConfigurationManager.AppSettings["WcfSvcHostDir"];
  60. wcfServerExeName = ConfigurationManager.AppSettings["WcfSvcHostExeName"];
  61. wcfServerExePath = Path.Combine(wcfServerDir, wcfServerExeName);
  62. wcfServerConfigPath = wcfServerExePath + ".config";
  63. wcfServerBindingConfigPath = Path.Combine(wcfServerDir, "Binding.config");
  64. wcfRemoteServerDir = ConfigurationManager.AppSettings["WcfRemoteSvcHostDir"];
  65. wcfRemoteServerExeName = ConfigurationManager.AppSettings["WcfRemoteSvcHostExeName"];
  66. wcfRemoteServerExePath = Path.Combine(wcfRemoteServerDir, wcfRemoteServerExeName);
  67. wcfRemoteServerConfigPath = wcfServerExePath + ".config";
  68. wcfRemoteServerBindingConfigPath = Path.Combine(wcfServerDir, "Bindings.Default.config");
  69. wcfClientDir = ConfigurationManager.AppSettings["WcfClientHostDir"];
  70. wcfClientExeName = ConfigurationManager.AppSettings["WcfClientHostExeName"];
  71. wcfClientExePath = Path.Combine(wcfClientDir, wcfClientExeName);
  72. wcfClientConfigPath = wcfClientExePath + ".config";
  73. wcfClientBindingConfigPath = Path.Combine(wcfClientDir, "Bindings.Default.config");
  74. logmanExePath = ConfigurationManager.AppSettings["LogManExePath"];
  75. psexecExePath = ConfigurationManager.AppSettings["PsExecExePath"];
  76. pskillExePath = ConfigurationManager.AppSettings["PsKillExePath"];
  77. WcfTestInput input = WcfTestInput.Deserialize(fi.FullName);
  78. using (PerformanceTestWrapper wrapper = new PerformanceTestWrapper(input))
  79. {
  80. WcfLogger.Log(string.Format("Starting test {0}.", input.DisplayName));
  81. DetermineScopeAndPerformTest(input);
  82. }
  83. }
  84. catch (Exception exc)
  85. {
  86. string log = exc.ToString();
  87. Exception inner = exc.InnerException;
  88. while (inner != null)
  89. {
  90. log += inner.ToString();
  91. inner = inner.InnerException;
  92. }
  93. WcfLogger.Log(exc.ToString());
  94. }
  95. }
  96. private static void DetermineScopeAndPerformTest(WcfTestInput input)
  97. {
  98. switch (input.Scope)
  99. {
  100. case PerformanceTestScope.Direct:
  101. PerformDirect(input);
  102. break;
  103. case PerformanceTestScope.SameAppDomain:
  104. PerformSameAppDomain(input);
  105. break;
  106. case PerformanceTestScope.SameProcess:
  107. PerformSameProcess(input);
  108. break;
  109. case PerformanceTestScope.SameMachine:
  110. PerformSameMachine(input);
  111. break;
  112. case PerformanceTestScope.Remote:
  113. PerformRemote(input);
  114. break;
  115. }
  116. }
  117. /// <summary>
  118. /// Tests within AppDomains
  119. /// </summary>
  120. static void PerformDirect(WcfTestInput input)
  121. {
  122. PerformTest(input);
  123. }
  124. static void PerformSameAppDomain(WcfTestInput input)
  125. {
  126. PerformSameProcess(input);
  127. }
  128. /// <summary>
  129. /// Tests seperate AppDomains within one process
  130. /// </summary>
  131. static void PerformSameProcess(WcfTestInput input)
  132. {
  133. string configFile = string.Format("{0}.{1}", Assembly.GetExecutingAssembly().Location, "config");
  134. using (WcfServiceHostWrapper serverWrapper = new WcfServiceHostWrapper(input))
  135. {
  136. PerformTest(input);
  137. }
  138. }
  139. static void PerformSameMachine(WcfTestInput input)
  140. {
  141. if (File.Exists(wcfServerConfigPath))
  142. {
  143. File.SetAttributes(wcfServerConfigPath, FileAttributes.Normal);
  144. }
  145. File.Copy(input.ConfigFileFullPath, wcfServerConfigPath, true);
  146. //if (File.Exists(wcfServerBindingConfigPath))
  147. //{
  148. // File.SetAttributes(wcfServerBindingConfigPath, FileAttributes.Normal);
  149. //}
  150. //File.Copy(input.BindingConfigFileFullPath, wcfServerBindingConfigPath, true);
  151. HostInfo hostInfo = new HostInfo(filename, WcfTestInput.ServiceMachineName, wcfServerExePath);
  152. using (HostWrapper wrapper = new HostWrapper(hostInfo, psexecExePath, pskillExePath))
  153. {
  154. PerformTest(input);
  155. }
  156. }
  157. static void PerformRemote(WcfTestInput input)
  158. {
  159. if (File.Exists(wcfRemoteServerConfigPath))
  160. {
  161. File.SetAttributes(wcfRemoteServerConfigPath, FileAttributes.Normal);
  162. }
  163. File.Copy(input.ConfigFileFullPath, wcfRemoteServerConfigPath, true);
  164. //if (File.Exists(wcfRemoteServerBindingConfigPath))
  165. //{
  166. // File.SetAttributes(wcfRemoteServerBindingConfigPath, FileAttributes.Normal);
  167. //}
  168. //File.Copy(input.BindingConfigFileFullPath, wcfRemoteServerBindingConfigPath, true);
  169. HostInfo hostInfo = new HostInfo(filename, WcfTestInput.ServiceMachineName, wcfServerExePath, remoteUser, remotePassword);
  170. using (HostWrapper wrapper = new HostWrapper(hostInfo, psexecExePath, pskillExePath))
  171. {
  172. List<PerformanceCounterLogInfo> infos = new List<PerformanceCounterLogInfo>(2);
  173. infos.Add(CreateClientPerformanceCounterLogInfo(input));
  174. infos.Add(CreateRemoteServerPerformanceCounterLogInfo(input));
  175. PerformTest(input, infos.ToArray());
  176. }
  177. }
  178. private static PerformanceCounterLogInfo CreateClientPerformanceCounterLogInfo(WcfTestInput input)
  179. {
  180. PerformanceCounterLogInfo info = new PerformanceCounterLogInfo();
  181. info.LogIntervalInSeconds = WcfTestInput.PerformanceCounterLogInterval;
  182. info.LogManExePath = logmanExePath;
  183. info.MachineName = WcfTestInput.ClientMachineName;
  184. info.Name = input.Name;
  185. info.OutputFilename = input.PerformanceCounterOutputFilepath;
  186. info.PerformanceCounterFilename = input.PerformanceCounterFileFullPath;
  187. info.PsExecExePath = psexecExePath;
  188. return info;
  189. }
  190. private static PerformanceCounterLogInfo CreateRemoteServerPerformanceCounterLogInfo(WcfTestInput input)
  191. {
  192. PerformanceCounterLogInfo info = new PerformanceCounterLogInfo();
  193. info.LogIntervalInSeconds = WcfTestInput.PerformanceCounterLogInterval;
  194. info.LogManExePath = logmanExePath;
  195. info.MachineName = WcfTestInput.ServiceMachineName;
  196. info.Name = input.Name;
  197. info.OutputFilename = input.PerformanceCounterOutputFilepath;
  198. info.PerformanceCounterFilename = WcfTestInput.RemotePerformanceCounterFileFullName;
  199. info.PsExecExePath = psexecExePath;
  200. //info.Username = remoteUser;
  201. //info.Password = remotePassword;
  202. return info;
  203. }
  204. private static void PerformTest(WcfTestInput input)
  205. {
  206. PerformTest(input, new PerformanceCounterLogInfo[] { CreateClientPerformanceCounterLogInfo(input) });
  207. }
  208. private static void PerformTest(WcfTestInput input, PerformanceCounterLogInfo[] infos)
  209. {
  210. WcfTestOutput output = null;
  211. using (PerformanceCounterLog log = new PerformanceCounterLog(infos))
  212. {
  213. using (WcfPerformanceTestService test = new WcfPerformanceTestService(input))
  214. {
  215. output = test.DoPerformanceTest();
  216. if (WcfTestInput.TestCleanupTimeMSecs > 0)
  217. {
  218. Thread.Sleep(WcfTestInput.TestCleanupTimeMSecs);
  219. }
  220. }
  221. }
  222. }
  223. }
  224. }