test_demangler.py 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. #!/usr/bin/python3
  2. import itanium_demangler as dm
  3. import pytest
  4. import smgdc.demangler_helpers as dh
  5. @pytest.mark.parametrize(
  6. "input_vtsym,input_fnsym,expected",
  7. [
  8. (
  9. # PASS: template class
  10. "_ZTV14CEntityFactoryI10CGunTargetE",
  11. "_ZN14CEntityFactoryI10CGunTargetE6CreateEPKc",
  12. True,
  13. ),
  14. (
  15. # PASS: namespaced class
  16. "_ZTVN6google8protobuf10TextFormat6Parser10ParserImpl20ParserErrorCollectorE",
  17. "_ZN6google8protobuf10TextFormat6Parser10ParserImpl20ParserErrorCollector8AddErrorEiiRKSs",
  18. True,
  19. ),
  20. (
  21. # FAIL: unrelated classes
  22. "_ZTV13CTFBaseRocket",
  23. "_Z13GetScriptDescI11CBasePlayerEP17ScriptClassDesc_tPT_",
  24. False,
  25. ),
  26. (
  27. # FAIL: class in partial matching namespace
  28. "_ZTVN6google8protobuf10TextFormat17FieldValuePrinterE",
  29. "_ZN6google8protobuf10TextFormat6Parser10ParserImpl20ParserErrorCollector10AddWarningEiiRKSs",
  30. False,
  31. ),
  32. (
  33. # FAIL: specialized template and class implementation
  34. "_ZTV14CEntityFactoryI19CTFProjectile_FlareE",
  35. "_ZN19CTFProjectile_Flare14GetDataDescMapEv",
  36. False,
  37. ),
  38. ],
  39. )
  40. def test_function_in_virtual_class(input_vtsym: str, input_fnsym: str, expected: bool):
  41. """
  42. Checks if the function is for the vtable's class.
  43. Note that, obviously, this does not check that the function is actually in the vtable.
  44. """
  45. node_vtsym, node_fnsym = map(dm.parse, (input_vtsym, input_fnsym))
  46. vtable_typename = dh.extract_vtable_typename(node_vtsym)
  47. function_qualname = dh.extract_function_name(node_fnsym)
  48. assert (vtable_typename == function_qualname[: len(vtable_typename)]) == expected
  49. @pytest.mark.parametrize(
  50. "fnsym_a,fnsym_b,expected",
  51. [
  52. (
  53. # PASS: differing class, same name, same parameter type(s)
  54. "_ZN11CBaseEntity10ChangeTeamEi",
  55. "_ZN9CTFPlayer10ChangeTeamEi",
  56. True,
  57. ),
  58. (
  59. # PASS: class and a non-virtual thunk
  60. "_ZN9CTFPlayer16GetAttributeListEv",
  61. "_ZThn4764_N9CTFPlayer16GetAttributeListEv",
  62. True,
  63. ),
  64. (
  65. # FAIL: same class, same name, differing parameter type(s)
  66. "_ZN9CTFPlayer10ChangeTeamEi",
  67. "_ZN9CTFPlayer10ChangeTeamEibbb",
  68. False,
  69. ),
  70. (
  71. # FAIL: same class, differing name, same parameter type(s)
  72. "_ZN12CTFGameRules27TrackWorkshopMapsInMapCycleEv",
  73. "_ZN12CTFGameRules16LoadMapCycleFileEv",
  74. False,
  75. ),
  76. (
  77. # FAIL: specialized static methods with the same template (DataMapInit<T>)
  78. "_Z11DataMapInitI14SoundCommand_tEP9datamap_tPT_",
  79. "_Z11DataMapInitI10CKothLogicEP9datamap_tPT_",
  80. False,
  81. ),
  82. ],
  83. )
  84. def test_function_match_signature(fnsym_a: str, fnsym_b: str, expected: bool):
  85. sig_a, sig_b = map(dh.extract_method_signature, map(dm.parse, (fnsym_a, fnsym_b)))
  86. assert expected == (sig_a == sig_b)