/Quartz.Tests/Runtime/RubyUtilsTests.cs

http://quartz.codeplex.com · C# · 156 lines · 112 code · 19 blank · 25 comment · 103 complexity · 2240909b0a589d7562bf9e6c0ad50906 MD5 · raw file

  1. /* ****************************************************************************
  2. *
  3. * Copyright (c) Microsoft Corporation.
  4. *
  5. * This source code is subject to terms and conditions of the Microsoft Public License. A
  6. * copy of the license can be found in the License.html file at the root of this distribution. If
  7. * you cannot locate the Microsoft Public License, please send an email to
  8. * ironruby@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
  9. * by the terms of the Microsoft Public License.
  10. *
  11. * You must not remove this notice, or any other, from this software.
  12. *
  13. *
  14. * ***************************************************************************/
  15. using IronRuby.Runtime;
  16. namespace IronRuby.Tests {
  17. public partial class Tests {
  18. public void NameMangling1() {
  19. Assert(RubyUtils.TryUnmangleName("stack") == "Stack");
  20. Assert(RubyUtils.TryUnmangleName("this_is_my_long_name") == "ThisIsMyLongName");
  21. Assert(RubyUtils.TryUnmangleName("f") == "F");
  22. Assert(RubyUtils.TryUnmangleName("initialize") == "Initialize");
  23. // non-alpha characters are treated as lower-case letters:
  24. Assert(RubyUtils.TryUnmangleName("foo_bar=") == "FooBar=");
  25. Assert(RubyUtils.TryUnmangleName("foo?") == "Foo?");
  26. Assert(RubyUtils.TryUnmangleName("???") == "???");
  27. Assert(RubyUtils.TryUnmangleName("1_2_3") == "123");
  28. // special cases:
  29. Assert(RubyUtils.TryUnmangleName("on") == "On");
  30. Assert(RubyUtils.TryUnmangleName("up") == "Up");
  31. Assert(RubyUtils.TryUnmangleName("in") == "In");
  32. Assert(RubyUtils.TryUnmangleName("to") == "To");
  33. Assert(RubyUtils.TryUnmangleName("of") == "Of");
  34. Assert(RubyUtils.TryUnmangleName("it") == "It");
  35. Assert(RubyUtils.TryUnmangleName("is") == "Is");
  36. Assert(RubyUtils.TryUnmangleName("if") == "If");
  37. Assert(RubyUtils.TryUnmangleName("go") == "Go");
  38. Assert(RubyUtils.TryUnmangleName("do") == "Do");
  39. Assert(RubyUtils.TryUnmangleName("by") == "By");
  40. Assert(RubyUtils.TryUnmangleName("at") == "At");
  41. Assert(RubyUtils.TryUnmangleName("as") == "As");
  42. Assert(RubyUtils.TryUnmangleName("my") == "My");
  43. Assert(RubyUtils.TryUnmangleName("me") == "Me");
  44. Assert(RubyUtils.TryUnmangleName("ip") == "IP");
  45. Assert(RubyUtils.TryUnmangleName("rx") == "RX");
  46. Assert(RubyUtils.TryUnmangleName("pi") == "PI");
  47. Assert(RubyUtils.TryUnmangleName("na_n") == null);
  48. Assert(RubyUtils.TryUnmangleName("nan") == "Nan");
  49. Assert(RubyUtils.TryUnmangleName("ip_address") == "IPAddress");
  50. Assert(RubyUtils.TryUnmangleName("i_id_id") == "IIdId");
  51. Assert(RubyUtils.TryUnmangleName("i_ip_ip") == null);
  52. Assert(RubyUtils.TryUnmangleName("ip_foo_ip") == "IPFooIP");
  53. Assert(RubyUtils.TryUnmangleName("active_x") == "ActiveX");
  54. Assert(RubyUtils.TryUnmangleName("get_u_int16") == "GetUInt16");
  55. Assert(RubyUtils.TryUnmangleName("get_ui_parent_core") == "GetUIParentCore");
  56. // TODO: ???
  57. Assert(RubyUtils.TryUnmangleName("i_pv6") == "IPv6");
  58. // names that cannot be mangled:
  59. Assert(RubyUtils.TryUnmangleName("") == null);
  60. Assert(RubyUtils.TryUnmangleName("IPX") == null);
  61. Assert(RubyUtils.TryUnmangleName("FO") == null);
  62. Assert(RubyUtils.TryUnmangleName("FOOBar") == null);
  63. Assert(RubyUtils.TryUnmangleName("FooBAR") == null);
  64. Assert(RubyUtils.TryUnmangleName("foo__bar") == null);
  65. Assert(RubyUtils.TryUnmangleName("_foo") == null);
  66. Assert(RubyUtils.TryUnmangleName("foo_") == null);
  67. // special method names:
  68. Assert(RubyUtils.TryUnmangleMethodName("initialize") == null);
  69. Assert(RubyUtils.TryUnmangleMethodName("class") == null);
  70. Assert(RubyUtils.TryUnmangleMethodName("message") == "Message"); // we don't special case Exception.Message
  71. }
  72. public void NameMangling2() {
  73. Assert(RubyUtils.TryMangleName("Stack") == "stack");
  74. Assert(RubyUtils.TryMangleName("ThisIsMyLongName") == "this_is_my_long_name");
  75. Assert(RubyUtils.TryMangleName("F") == "f");
  76. Assert(RubyUtils.TryMangleName("Initialize") == "initialize");
  77. Assert(RubyUtils.TryMangleName("fooBar") == "foo_bar");
  78. // characters that are not upper case letters are treated as lower-case:
  79. Assert(RubyUtils.TryMangleName("Foo123bar") == "foo123bar");
  80. Assert(RubyUtils.TryMangleName("123Bar") == "123_bar");
  81. Assert(RubyUtils.TryMangleName("?Bar") == "?_bar");
  82. // special cases:
  83. Assert(RubyUtils.TryUnmangleName("ON") == null);
  84. Assert(RubyUtils.TryUnmangleName("UP") == null);
  85. Assert(RubyUtils.TryUnmangleName("IN") == null);
  86. Assert(RubyUtils.TryUnmangleName("TO") == null);
  87. Assert(RubyUtils.TryUnmangleName("OF") == null);
  88. Assert(RubyUtils.TryUnmangleName("IT") == null);
  89. Assert(RubyUtils.TryUnmangleName("IF") == null);
  90. Assert(RubyUtils.TryUnmangleName("IS") == null);
  91. Assert(RubyUtils.TryUnmangleName("GO") == null);
  92. Assert(RubyUtils.TryUnmangleName("DO") == null);
  93. Assert(RubyUtils.TryUnmangleName("BY") == null);
  94. Assert(RubyUtils.TryUnmangleName("AT") == null);
  95. Assert(RubyUtils.TryUnmangleName("AS") == null);
  96. Assert(RubyUtils.TryUnmangleName("MY") == null);
  97. Assert(RubyUtils.TryUnmangleName("ME") == null);
  98. Assert(RubyUtils.TryUnmangleName("ID") == null);
  99. Assert(RubyUtils.TryUnmangleName("OK") == null);
  100. Assert(RubyUtils.TryMangleName("NaN") == null);
  101. Assert(RubyUtils.TryMangleName("NaNValue") == null);
  102. Assert(RubyUtils.TryMangleName("At") == "at");
  103. Assert(RubyUtils.TryMangleName("IP") == "ip");
  104. Assert(RubyUtils.TryMangleName("FO") == "fo");
  105. Assert(RubyUtils.TryMangleName("PI") == "pi");
  106. Assert(RubyUtils.TryMangleName("IPAddress") == "ip_address");
  107. Assert(RubyUtils.TryMangleName("MyDB") == "my_db");
  108. Assert(RubyUtils.TryMangleName("PyPy") == "py_py");
  109. Assert(RubyUtils.TryMangleName("IPFooIP") == "ip_foo_ip");
  110. Assert(RubyUtils.TryMangleName("ActiveX") == "active_x");
  111. Assert(RubyUtils.TryMangleName("GetUInt16") == "get_u_int16");
  112. Assert(RubyUtils.TryMangleName("GetUIParentCore") == "get_ui_parent_core");
  113. // TODO: ???
  114. Assert(RubyUtils.TryMangleName("IPv6") == "i_pv6");
  115. // names that cannot be mangled:
  116. Assert(RubyUtils.TryMangleName("") == null);
  117. Assert(RubyUtils.TryMangleName("IPX") == null);
  118. Assert(RubyUtils.TryMangleName("FOO") == null);
  119. Assert(RubyUtils.TryMangleName("FOOBar") == null);
  120. Assert(RubyUtils.TryMangleName("FooBAR") == null);
  121. Assert(RubyUtils.TryMangleName("foo") == null);
  122. Assert(RubyUtils.TryMangleName("initialize") == null);
  123. // name containing underscore(s) cannot be mangled:
  124. Assert(RubyUtils.TryMangleName("a_b") == null);
  125. Assert(RubyUtils.TryMangleName("add_Foo") == null);
  126. Assert(RubyUtils.TryMangleName("B__") == null);
  127. Assert(RubyUtils.TryMangleName("foo_bar=") == null);
  128. Assert(RubyUtils.TryMangleName("foo__bar") == null);
  129. Assert(RubyUtils.TryMangleName("_foo") == null);
  130. Assert(RubyUtils.TryMangleName("foo_") == null);
  131. // special method names:
  132. Assert(RubyUtils.TryMangleMethodName("Initialize") == null);
  133. Assert(RubyUtils.TryMangleMethodName("Class") == null);
  134. Assert(RubyUtils.TryMangleMethodName("Message") == "message"); // we don't special case Exception.Message
  135. }
  136. }
  137. }