test_demangler.py 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. #!/usr/bin/python3
  2. import itertools
  3. from typing import Iterable
  4. import itanium_demangler as dm
  5. import pytest
  6. import smgdc.demangler_helpers as dh
  7. @pytest.mark.parametrize(
  8. "input_vtsym,input_fnsym,expected",
  9. [
  10. (
  11. # PASS: template class
  12. "_ZTV14CEntityFactoryI10CGunTargetE",
  13. "_ZN14CEntityFactoryI10CGunTargetE6CreateEPKc",
  14. True,
  15. ),
  16. (
  17. # PASS: namespaced class
  18. "_ZTVN6google8protobuf10TextFormat6Parser10ParserImpl20ParserErrorCollectorE",
  19. "_ZN6google8protobuf10TextFormat6Parser10ParserImpl20ParserErrorCollector8AddErrorEiiRKSs",
  20. True,
  21. ),
  22. (
  23. # FAIL: unrelated classes
  24. "_ZTV13CTFBaseRocket",
  25. "_Z13GetScriptDescI11CBasePlayerEP17ScriptClassDesc_tPT_",
  26. False,
  27. ),
  28. (
  29. # FAIL: class in partial matching namespace
  30. "_ZTVN6google8protobuf10TextFormat17FieldValuePrinterE",
  31. "_ZN6google8protobuf10TextFormat6Parser10ParserImpl20ParserErrorCollector10AddWarningEiiRKSs",
  32. False,
  33. ),
  34. (
  35. # FAIL: specialized template and class implementation
  36. "_ZTV14CEntityFactoryI19CTFProjectile_FlareE",
  37. "_ZN19CTFProjectile_Flare14GetDataDescMapEv",
  38. False,
  39. ),
  40. ],
  41. )
  42. def test_function_in_virtual_class(input_vtsym: str, input_fnsym: str, expected: bool):
  43. """
  44. Checks if the function is for the vtable's class.
  45. Note that, obviously, this does not check that the function is actually in the vtable.
  46. """
  47. node_vtsym, node_fnsym = map(dm.parse, (input_vtsym, input_fnsym))
  48. vtable_typename = dh.extract_vtable_typename(node_vtsym)
  49. function_qualname = dh.extract_function_name(node_fnsym)
  50. assert (vtable_typename == function_qualname[: len(vtable_typename)]) == expected
  51. @pytest.mark.parametrize(
  52. "fnsym_a,fnsym_b,expected",
  53. [
  54. (
  55. # PASS: differing class, same name, same parameter type(s)
  56. "_ZN11CBaseEntity10ChangeTeamEi",
  57. "_ZN9CTFPlayer10ChangeTeamEi",
  58. True,
  59. ),
  60. (
  61. # PASS: class and a non-virtual thunk
  62. "_ZN9CTFPlayer16GetAttributeListEv",
  63. "_ZThn4764_N9CTFPlayer16GetAttributeListEv",
  64. True,
  65. ),
  66. (
  67. # FAIL: same class, same name, differing parameter type(s)
  68. "_ZN9CTFPlayer10ChangeTeamEi",
  69. "_ZN9CTFPlayer10ChangeTeamEibbb",
  70. False,
  71. ),
  72. (
  73. # FAIL: same class, differing name, same parameter type(s)
  74. "_ZN12CTFGameRules27TrackWorkshopMapsInMapCycleEv",
  75. "_ZN12CTFGameRules16LoadMapCycleFileEv",
  76. False,
  77. ),
  78. (
  79. # FAIL: specialized static methods with the same template (DataMapInit<T>)
  80. "_Z11DataMapInitI14SoundCommand_tEP9datamap_tPT_",
  81. "_Z11DataMapInitI10CKothLogicEP9datamap_tPT_",
  82. False,
  83. ),
  84. ],
  85. )
  86. def test_function_match_signature(fnsym_a: str, fnsym_b: str, expected: bool):
  87. sig_a, sig_b = map(dh.extract_method_signature, map(dm.parse, (fnsym_a, fnsym_b)))
  88. assert expected == (sig_a == sig_b)
  89. @pytest.mark.parametrize(
  90. "fnsyms,expected",
  91. [
  92. (
  93. # PASS: same class, same name, differing parameter types
  94. (
  95. "_ZN11CBaseEntity8KeyValueEPKcS1_",
  96. "_ZN11CBaseEntity8KeyValueEPKcf",
  97. "_ZN11CBaseEntity8KeyValueEPKcRK6Vector",
  98. ),
  99. True,
  100. ),
  101. (
  102. # PASS: same class, same name, differing parameter types
  103. (
  104. "_ZN24CTFWeaponBaseGrenadeProj11InitGrenadeERK6VectorS2_P20CBaseCombatCharacterRK13CTFWeaponInfo",
  105. "_ZN24CTFWeaponBaseGrenadeProj11InitGrenadeERK6VectorS2_P20CBaseCombatCharacterif",
  106. ),
  107. True,
  108. ),
  109. (
  110. # PASS: different class, same name, differing parameter types
  111. (
  112. "_ZN20CBaseCombatCharacter8FVisibleEP11CBaseEntityiPS1_",
  113. "_ZN11CBaseEntity8FVisibleERK6VectoriPPS_",
  114. ),
  115. True,
  116. ),
  117. ],
  118. )
  119. def test_function_overloaded(fnsyms: Iterable[str], expected: bool):
  120. """
  121. Tests that all the given symbols are overloads of the same name.
  122. Of course, this is only inference based on symbol name.
  123. """
  124. node_syms = map(dh.extract_method_fname, map(dm.parse, fnsyms))
  125. assert all(a == b for a, b in itertools.permutations(node_syms, 2))