A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

153 lignes
6.1 KiB

  1. # -*- coding: utf-8 -*-
  2. #
  3. # Copyright (C) 2012-2016 Ben Kurtovic <ben.kurtovic@gmail.com>
  4. #
  5. # Permission is hereby granted, free of charge, to any person obtaining a copy
  6. # of this software and associated documentation files (the "Software"), to deal
  7. # in the Software without restriction, including without limitation the rights
  8. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. # copies of the Software, and to permit persons to whom the Software is
  10. # furnished to do so, subject to the following conditions:
  11. #
  12. # The above copyright notice and this permission notice shall be included in
  13. # all copies or substantial portions of the Software.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. # SOFTWARE.
  22. from __future__ import print_function, unicode_literals
  23. import codecs
  24. from os import listdir, path
  25. import sys
  26. from mwparserfromhell.compat import py3k, str
  27. from mwparserfromhell.parser import tokens
  28. from mwparserfromhell.parser.builder import Builder
  29. class _TestParseError(Exception):
  30. """Raised internally when a test could not be parsed."""
  31. pass
  32. class TokenizerTestCase(object):
  33. """A base test case for tokenizers, whose tests are loaded dynamically.
  34. Subclassed along with unittest.TestCase to form TestPyTokenizer and
  35. TestCTokenizer. Tests are loaded dynamically from files in the 'tokenizer'
  36. directory.
  37. """
  38. @staticmethod
  39. def _build_test_method(funcname, data):
  40. """Create and return a method to be treated as a test case method.
  41. *data* is a dict containing multiple keys: the *input* text to be
  42. tokenized, the expected list of tokens as *output*, and an optional
  43. *label* for the method's docstring.
  44. """
  45. def inner(self):
  46. if hasattr(self, "roundtrip"):
  47. expected = data["input"]
  48. actual = str(Builder().build(data["output"][:]))
  49. else:
  50. expected = data["output"]
  51. actual = self.tokenizer().tokenize(data["input"])
  52. self.assertEqual(expected, actual)
  53. if not py3k:
  54. inner.__name__ = funcname.encode("utf8")
  55. inner.__doc__ = data["label"]
  56. return inner
  57. @staticmethod
  58. def _parse_test(test, data):
  59. """Parse an individual *test*, storing its info in *data*."""
  60. for line in test.strip().splitlines():
  61. if line.startswith("name:"):
  62. data["name"] = line[len("name:"):].strip()
  63. elif line.startswith("label:"):
  64. data["label"] = line[len("label:"):].strip()
  65. elif line.startswith("input:"):
  66. raw = line[len("input:"):].strip()
  67. if raw[0] == '"' and raw[-1] == '"':
  68. raw = raw[1:-1]
  69. raw = raw.encode("raw_unicode_escape")
  70. data["input"] = raw.decode("unicode_escape")
  71. elif line.startswith("output:"):
  72. raw = line[len("output:"):].strip()
  73. try:
  74. data["output"] = eval(raw, vars(tokens))
  75. except Exception as err:
  76. raise _TestParseError(err)
  77. @classmethod
  78. def _load_tests(cls, filename, name, text, restrict=None):
  79. """Load all tests in *text* from the file *filename*."""
  80. tests = text.split("\n---\n")
  81. counter = 1
  82. digits = len(str(len(tests)))
  83. for test in tests:
  84. data = {"name": None, "label": None, "input": None, "output": None}
  85. try:
  86. cls._parse_test(test, data)
  87. except _TestParseError as err:
  88. if data["name"]:
  89. error = "Could not parse test '{0}' in '{1}':\n\t{2}"
  90. print(error.format(data["name"], filename, err))
  91. else:
  92. error = "Could not parse a test in '{0}':\n\t{1}"
  93. print(error.format(filename, err))
  94. continue
  95. if not data["name"]:
  96. error = "A test in '{0}' was ignored because it lacked a name"
  97. print(error.format(filename))
  98. continue
  99. if data["input"] is None or data["output"] is None:
  100. error = "Test '{}' in '{}' was ignored because it lacked an input or an output"
  101. print(error.format(data["name"], filename))
  102. continue
  103. number = str(counter).zfill(digits)
  104. counter += 1
  105. if restrict and data["name"] != restrict:
  106. continue
  107. fname = "test_{}{}_{}".format(name, number, data["name"])
  108. meth = cls._build_test_method(fname, data)
  109. setattr(cls, fname, meth)
  110. @classmethod
  111. def build(cls):
  112. """Load and install all tests from the 'tokenizer' directory."""
  113. def load_file(filename, restrict=None):
  114. with codecs.open(filename, "r", encoding="utf8") as fp:
  115. text = fp.read()
  116. name = path.split(filename)[1][:-len(extension)]
  117. cls._load_tests(filename, name, text, restrict)
  118. directory = path.join(path.dirname(__file__), "tokenizer")
  119. extension = ".mwtest"
  120. if len(sys.argv) > 2 and sys.argv[1] == "--use":
  121. for name in sys.argv[2:]:
  122. if "." in name:
  123. name, test = name.split(".", 1)
  124. else:
  125. test = None
  126. load_file(path.join(directory, name + extension), test)
  127. sys.argv = [sys.argv[0]] # So unittest doesn't try to parse this
  128. cls.skip_others = True
  129. else:
  130. for filename in listdir(directory):
  131. if not filename.endswith(extension):
  132. continue
  133. load_file(path.join(directory, filename))
  134. cls.skip_others = False
  135. TokenizerTestCase.build()