/src/ServiceStack.Text/tests/ServiceStack.Text.Tests/Support/BenchmarkTests.cs

https://bitbucket.org/d3/d3cqrs · C# · 226 lines · 221 code · 5 blank · 0 comment · 3 complexity · dbb34ec8d60c231a65f7f7271c87415f MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using NUnit.Framework;
  6. using ServiceStack.Common.Extensions;
  7. using ServiceStack.Common.Tests;
  8. using ServiceStack.Text.Tests.JsonTests;
  9. namespace ServiceStack.Text.Tests.Support
  10. {
  11. [Ignore]
  12. [TestFixture]
  13. public class BenchmarkTests
  14. : PerfTestBase
  15. {
  16. [Test]
  17. public void Test_string_parsing()
  18. {
  19. const int stringSampleSize = 1024 * 10;
  20. var testString = CreateRandomString(stringSampleSize);
  21. var copyTo = new char[stringSampleSize];
  22. CompareMultipleRuns(
  23. "As char array",
  24. () => {
  25. var asChars = testString.ToCharArray();
  26. for (var i = 0; i < stringSampleSize; i++)
  27. {
  28. copyTo[i] = asChars[i];
  29. }
  30. },
  31. "As string",
  32. () => {
  33. for (var i = 0; i < stringSampleSize; i++)
  34. {
  35. copyTo[i] = testString[i];
  36. }
  37. });
  38. }
  39. public string CreateRandomString(int size)
  40. {
  41. var randString = new char[size];
  42. for (var i = 0; i < size; i++)
  43. {
  44. randString[i] = (char)((i % 10) + '0');
  45. }
  46. return new string(randString);
  47. }
  48. static readonly char[] EscapeChars = new char[]
  49. {
  50. '"', '\n', '\r', '\t', '"', '\\', '\f', '\b',
  51. };
  52. public static readonly char[] JsvEscapeChars = new[]
  53. {
  54. '"', ',', '{', '}', '[', ']',
  55. };
  56. private const int LengthFromLargestChar = '\\' + 1;
  57. private static readonly bool[] HasEscapeChars = new bool[LengthFromLargestChar];
  58. [Test]
  59. public void PrintEscapeChars()
  60. {
  61. //EscapeChars.ToList().OrderBy(x => (int)x).ForEach(x => Console.WriteLine(x + ": " + (int)x));
  62. JsvEscapeChars.ToList().OrderBy(x => (int)x).ForEach(x => Console.WriteLine(x + ": " + (int)x));
  63. }
  64. [Test]
  65. public void MeasureIndexOfEscapeChars()
  66. {
  67. foreach (var escapeChar in EscapeChars)
  68. {
  69. HasEscapeChars[escapeChar] = true;
  70. }
  71. var value = CreateRandomString(100);
  72. var len = value.Length;
  73. var hasEscapeChars = false;
  74. CompareMultipleRuns(
  75. "With bool flags",
  76. () => {
  77. for (var i = 0; i < len; i++)
  78. {
  79. var c = value[i];
  80. if (c >= LengthFromLargestChar || !HasEscapeChars[c]) continue;
  81. hasEscapeChars = true;
  82. break;
  83. }
  84. },
  85. "With IndexOfAny",
  86. () => {
  87. hasEscapeChars = value.IndexOfAny(EscapeChars) != -1;
  88. });
  89. Console.WriteLine(hasEscapeChars);
  90. }
  91. public class RuntimeType<T>
  92. {
  93. private static Type type = typeof(T);
  94. internal static bool TestVarType()
  95. {
  96. return type == typeof(byte) || type == typeof(byte?)
  97. || type == typeof(short) || type == typeof(short?)
  98. || type == typeof(ushort) || type == typeof(ushort?)
  99. || type == typeof(int) || type == typeof(int?)
  100. || type == typeof(uint) || type == typeof(uint?)
  101. || type == typeof(long) || type == typeof(long?)
  102. || type == typeof(ulong) || type == typeof(ulong?)
  103. || type == typeof(bool) || type == typeof(bool?)
  104. || type != typeof(DateTime)
  105. || type != typeof(DateTime?)
  106. || type != typeof(Guid)
  107. || type != typeof(Guid?)
  108. || type != typeof(float) || type != typeof(float?)
  109. || type != typeof(double) || type != typeof(double?)
  110. || type != typeof(decimal) || type != typeof(decimal?);
  111. }
  112. internal static bool TestGenericType()
  113. {
  114. return typeof(T) == typeof(byte) || typeof(T) == typeof(byte?)
  115. || typeof(T) == typeof(short) || typeof(T) == typeof(short?)
  116. || typeof(T) == typeof(ushort) || typeof(T) == typeof(ushort?)
  117. || typeof(T) == typeof(int) || typeof(T) == typeof(int?)
  118. || typeof(T) == typeof(uint) || typeof(T) == typeof(uint?)
  119. || typeof(T) == typeof(long) || typeof(T) == typeof(long?)
  120. || typeof(T) == typeof(ulong) || typeof(T) == typeof(ulong?)
  121. || typeof(T) == typeof(bool) || typeof(T) == typeof(bool?)
  122. || typeof(T) != typeof(DateTime)
  123. || typeof(T) != typeof(DateTime?)
  124. || typeof(T) != typeof(Guid)
  125. || typeof(T) != typeof(Guid?)
  126. || typeof(T) != typeof(float) || typeof(T) != typeof(float?)
  127. || typeof(T) != typeof(double) || typeof(T) != typeof(double?)
  128. || typeof(T) != typeof(decimal) || typeof(T) != typeof(decimal?);
  129. }
  130. }
  131. [Test]
  132. public void TestVarOrGenericType()
  133. {
  134. var matchingTypesCount = 0;
  135. CompareMultipleRuns(
  136. "With var type",
  137. () => {
  138. if (RuntimeType<BenchmarkTests>.TestVarType())
  139. {
  140. matchingTypesCount++;
  141. }
  142. },
  143. "With generic type",
  144. () => {
  145. if (RuntimeType<BenchmarkTests>.TestGenericType())
  146. {
  147. matchingTypesCount++;
  148. }
  149. });
  150. Console.WriteLine(matchingTypesCount);
  151. }
  152. [Test]
  153. public void Test_for_list_enumeration()
  154. {
  155. List<Cat> list = 20.Times(x => new Cat { Name = "Cat" });
  156. var results = 0;
  157. var listLength = list.Count;
  158. CompareMultipleRuns(
  159. "With foreach",
  160. () => {
  161. foreach (var cat in list)
  162. {
  163. results++;
  164. }
  165. },
  166. "With for",
  167. () => {
  168. for (var i = 0; i < listLength; i++)
  169. {
  170. var cat = list[i];
  171. results++;
  172. }
  173. });
  174. Console.WriteLine(results);
  175. }
  176. [Test]
  177. public void Test_for_Ilist_enumeration()
  178. {
  179. IList<Cat> list = 20.Times(x => new Cat { Name = "Cat" });
  180. var results = 0;
  181. var listLength = list.Count;
  182. CompareMultipleRuns(
  183. "With foreach",
  184. () => {
  185. foreach (var cat in list)
  186. {
  187. results++;
  188. }
  189. },
  190. "With for",
  191. () => {
  192. for (var i = 0; i < listLength; i++)
  193. {
  194. var cat = list[i];
  195. results++;
  196. }
  197. });
  198. Console.WriteLine(results);
  199. }
  200. }
  201. }