/Languages/IronPython/Tests/hosting/editor_svcs/errorlistener.py

http://github.com/IronLanguages/main · Python · 195 lines · 147 code · 25 blank · 23 comment · 6 complexity · a99d60da9196e30ee5e2e75d5cfce4b3 MD5 · raw file

  1. #####################################################################################
  2. #
  3. # Copyright (c) Microsoft Corporation. All rights reserved.
  4. #
  5. # This source code is subject to terms and conditions of the Apache License, Version 2.0. 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 Apache License, Version 2.0, please send an email to
  8. # ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
  9. # by the terms of the Apache License, Version 2.0.
  10. #
  11. # You must not remove this notice, or any other, from this software.
  12. #
  13. #
  14. #####################################################################################
  15. ##
  16. ## Testing ErrorListener
  17. ##
  18. from iptest.assert_util import *
  19. skiptest("win32")
  20. load_iron_python_test()
  21. import Microsoft.Scripting.Hosting
  22. from Microsoft.Scripting import Severity, SourceCodeKind, SourceSpan, SourceLocation
  23. from Microsoft.Scripting.Hosting import ErrorListener, ScriptSource, ScriptRuntime
  24. from IronPython.Hosting import Python
  25. From, To = SourceLocation, SourceLocation
  26. Warning, Error, FatalError = Severity.Warning, Severity.Error, Severity.FatalError
  27. #------------------------------------------------------------------------------
  28. # Globals
  29. engine = Python.CreateEngine()
  30. #------------------------------------------------------------------------------
  31. # Utils
  32. class MyErrorListener(ErrorListener):
  33. def __init__(self):
  34. self.__errors= []
  35. errors = property(lambda obj: obj.__errors)
  36. def ErrorReported(self, src, msg, span, errorCode, severity):
  37. line = src.GetCodeLine(span.Start.Line);
  38. if line \
  39. and span.Start.Line == span.End.Line \
  40. and span.Start.Column != span.End.Column:
  41. bad = line[span.Start.Column - 1 : span.End.Column - 1]
  42. else:
  43. bad = (span.Start.Line, span.Start.Column)
  44. self.__errors.append((msg, bad, errorCode, severity))
  45. def compile_expression(expression):
  46. source = engine.CreateScriptSourceFromString(expression, SourceCodeKind.Expression)
  47. return compile_source(source)
  48. def compile_file(stmts):
  49. source = engine.CreateScriptSourceFromString(stmts, SourceCodeKind.File)
  50. return compile_source(source)
  51. def compile_source(source):
  52. errorlistener = MyErrorListener()
  53. try:
  54. source.Compile(errorlistener)
  55. except System.Exception, e:
  56. pass
  57. return errorlistener.errors
  58. #------------------------------------------------------------------------------
  59. # Tests
  60. def test_no_errors():
  61. AreEqual([], compile_expression("1+1"))
  62. def test_empty():
  63. AreEqual([], compile_file(""))
  64. expected = [
  65. ("unexpected EOF while parsing", (1,1), 17, FatalError),
  66. ]
  67. actual = compile_expression("")
  68. AreEqual(expected, actual)
  69. def test_unexpected_token():
  70. expected = [
  71. ("unexpected token 'foo'", "foo", 16, FatalError)
  72. ]
  73. actual = compile_expression("1.foo")
  74. AreEqual(expected, actual)
  75. def test_multiple_errors():
  76. expected = [
  77. ("unexpected token 'print'", "print", 16, FatalError),
  78. ("EOL while scanning single-quoted string", '"hello', 16, FatalError),
  79. ("unexpected token 'print'", "print", 16, FatalError),
  80. ]
  81. actual = compile_expression("""print "hello""")
  82. AreEqual(expected, actual)
  83. def test_not_indented_class():
  84. expected = [
  85. ("expected an indented block", "pass", 32, FatalError),
  86. ]
  87. code = """\
  88. class Foo:
  89. pass"""
  90. AreEqual(expected, compile_file(code))
  91. def test_bad_indentation():
  92. expected = [
  93. ("unindent does not match any outer indentation level", ' ', 32, FatalError),
  94. ]
  95. code = """\
  96. class Foo:
  97. pass
  98. pass"""
  99. AreEqual(expected, compile_file(code))
  100. def test_non_fatal_error():
  101. expected = [
  102. ("'break' outside loop", "break", 16, FatalError),
  103. ]
  104. code = """\
  105. 1+1
  106. break"""
  107. AreEqual(expected, compile_file(code))
  108. def test_assignment_to_none():
  109. expected = [
  110. ("cannot assign to None", "None", 80, FatalError),
  111. ]
  112. actual = compile_file("None = 42")
  113. AreEqual(expected, actual)
  114. def test_multiple_erroneous_statements():
  115. expected = [
  116. ("cannot assign to None", "None", 80, FatalError),
  117. ("cannot assign to None", "None", 80, FatalError),
  118. ]
  119. code = """\
  120. None = 2
  121. None = 3"""
  122. AreEqual(expected, compile_file(code))
  123. def test_warning():
  124. expected = [
  125. ("name 'a' is assigned to before global declaration", "global a", -1, Warning),
  126. ]
  127. code = """\
  128. def foo():
  129. a=2
  130. global a"""
  131. AreEqual(expected, compile_file(code))
  132. def test_should_report_multiple_warnings_negative():
  133. "Bug #17541, http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=17541"
  134. expected = [
  135. ("Variable a assigned before global declaration", "global a", -1, Warning),
  136. ("Variable b assigned before global declaration", "global b", -1, Warning),
  137. ]
  138. code = """\
  139. def foo():
  140. a=2
  141. global a
  142. def bar():
  143. b=2
  144. global b"""
  145. AssertError(AssertionError, AreEqual, expected, compile_file(code))
  146. def test_should_report_both_errors_and_warnings_negative():
  147. "Bug #17541, http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=17541"
  148. expected = [
  149. ("cannot assign to None", "None", -1, Error),
  150. ("Variable a assigned before global declaration", "global a", -1, Warning),
  151. ]
  152. code = """\
  153. None = 2
  154. def foo():
  155. a=2
  156. global a"""
  157. AssertError(AssertionError, AreEqual, expected, compile_file(code))
  158. def test_all_together():
  159. expected = [
  160. ('cannot assign to None', 'None', 80,FatalError),
  161. ]
  162. code = """\
  163. None = 2
  164. dict={foo}
  165. def foo():
  166. a=2
  167. global a"""
  168. AreEqual(expected, compile_file(code))
  169. run_test(__name__)