bee_python 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (503) hide show
  1. data/LICENSE +202 -0
  2. data/build/README +23 -0
  3. data/egg/egg/build.yml +70 -0
  4. data/egg/egg/ez_setup.py +280 -0
  5. data/egg/egg/script.py +12 -0
  6. data/egg/egg/setup.erb +11 -0
  7. data/egg/egg/suite.py +37 -0
  8. data/egg/egg/test.py +31 -0
  9. data/egg/egg.yml +69 -0
  10. data/egg/http/build.erb +53 -0
  11. data/egg/http/server.py +34 -0
  12. data/egg/http.yml +50 -0
  13. data/egg/mysql/mysql.py +43 -0
  14. data/egg/mysql.yml +44 -0
  15. data/egg/project/build.erb +77 -0
  16. data/egg/project/script.py +42 -0
  17. data/egg/project/test.py +31 -0
  18. data/egg/project.yml +59 -0
  19. data/egg/script/build.erb +35 -0
  20. data/egg/script/script.py +42 -0
  21. data/egg/script.yml +50 -0
  22. data/egg/soap/build.erb +52 -0
  23. data/egg/soap/client.py +18 -0
  24. data/egg/soap/server.py +30 -0
  25. data/egg/soap.yml +58 -0
  26. data/egg/source/source.py +42 -0
  27. data/egg/source.yml +47 -0
  28. data/egg/test/test.py +28 -0
  29. data/egg/test.yml +44 -0
  30. data/egg/xmlrpc/build.erb +52 -0
  31. data/egg/xmlrpc/client.py +22 -0
  32. data/egg/xmlrpc/server.py +24 -0
  33. data/egg/xmlrpc.yml +51 -0
  34. data/lib/bee_task_python.rb +390 -0
  35. data/test/build.yml +16 -0
  36. data/test/tc_bee_task_python.rb +27 -0
  37. data/test/test_build.rb +26 -0
  38. data/test/test_build_listener.rb +62 -0
  39. data/test/ts_bee_python.rb +26 -0
  40. data/tools/common/__init__.py +5 -0
  41. data/tools/common/common/__init__.py +140 -0
  42. data/tools/common/common/__pkginfo__.py +43 -0
  43. data/tools/common/common/adbh.py +35 -0
  44. data/tools/common/common/cache.py +114 -0
  45. data/tools/common/common/changelog.py +234 -0
  46. data/tools/common/common/clcommands.py +181 -0
  47. data/tools/common/common/cli.py +212 -0
  48. data/tools/common/common/compat.py +328 -0
  49. data/tools/common/common/configuration.py +1087 -0
  50. data/tools/common/common/contexts.py +58 -0
  51. data/tools/common/common/corbautils.py +117 -0
  52. data/tools/common/common/daemon.py +171 -0
  53. data/tools/common/common/date.py +279 -0
  54. data/tools/common/common/db.py +49 -0
  55. data/tools/common/common/dbf.py +229 -0
  56. data/tools/common/common/debugger.py +208 -0
  57. data/tools/common/common/decorators.py +190 -0
  58. data/tools/common/common/deprecation.py +118 -0
  59. data/tools/common/common/fileutils.py +409 -0
  60. data/tools/common/common/graph.py +259 -0
  61. data/tools/common/common/html.py +142 -0
  62. data/tools/common/common/interface.py +76 -0
  63. data/tools/common/common/logging_ext.py +166 -0
  64. data/tools/common/common/modutils.py +670 -0
  65. data/tools/common/common/optik_ext.py +383 -0
  66. data/tools/common/common/optparser.py +92 -0
  67. data/tools/common/common/pdf_ext.py +111 -0
  68. data/tools/common/common/proc.py +276 -0
  69. data/tools/common/common/pyro_ext.py +146 -0
  70. data/tools/common/common/pytest.py +754 -0
  71. data/tools/common/common/shellutils.py +383 -0
  72. data/tools/common/common/sphinx_ext.py +87 -0
  73. data/tools/common/common/sphinxutils.py +122 -0
  74. data/tools/common/common/sqlgen.py +31 -0
  75. data/tools/common/common/table.py +930 -0
  76. data/tools/common/common/tasksqueue.py +97 -0
  77. data/tools/common/common/test/__init__.py +1 -0
  78. data/tools/common/common/test/data/ChangeLog +184 -0
  79. data/tools/common/common/test/data/MyPyPa-0.1.0-py2.5.egg +0 -0
  80. data/tools/common/common/test/data/__init__.py +1 -0
  81. data/tools/common/common/test/data/content_differ_dir/NOTHING +0 -0
  82. data/tools/common/common/test/data/content_differ_dir/README +1 -0
  83. data/tools/common/common/test/data/content_differ_dir/subdir/coin +1 -0
  84. data/tools/common/common/test/data/content_differ_dir/subdir/toto.txt +53 -0
  85. data/tools/common/common/test/data/file_differ_dir/NOTHING +0 -0
  86. data/tools/common/common/test/data/file_differ_dir/README +1 -0
  87. data/tools/common/common/test/data/file_differ_dir/subdir/toto.txt +53 -0
  88. data/tools/common/common/test/data/file_differ_dir/subdirtwo/Hello +0 -0
  89. data/tools/common/common/test/data/find_test/__init__.py +0 -0
  90. data/tools/common/common/test/data/find_test/foo.txt +0 -0
  91. data/tools/common/common/test/data/find_test/module.py +0 -0
  92. data/tools/common/common/test/data/find_test/module2.py +0 -0
  93. data/tools/common/common/test/data/find_test/newlines.txt +0 -0
  94. data/tools/common/common/test/data/find_test/noendingnewline.py +0 -0
  95. data/tools/common/common/test/data/find_test/nonregr.py +0 -0
  96. data/tools/common/common/test/data/find_test/normal_file.txt +0 -0
  97. data/tools/common/common/test/data/find_test/spam.txt +0 -0
  98. data/tools/common/common/test/data/find_test/sub/doc.txt +0 -0
  99. data/tools/common/common/test/data/find_test/sub/momo.py +0 -0
  100. data/tools/common/common/test/data/find_test/test.ini +0 -0
  101. data/tools/common/common/test/data/find_test/test1.msg +0 -0
  102. data/tools/common/common/test/data/find_test/test2.msg +0 -0
  103. data/tools/common/common/test/data/find_test/write_protected_file.txt +0 -0
  104. data/tools/common/common/test/data/foo.txt +9 -0
  105. data/tools/common/common/test/data/module.py +88 -0
  106. data/tools/common/common/test/data/module2.py +77 -0
  107. data/tools/common/common/test/data/newlines.txt +3 -0
  108. data/tools/common/common/test/data/noendingnewline.py +36 -0
  109. data/tools/common/common/test/data/nonregr.py +14 -0
  110. data/tools/common/common/test/data/normal_file.txt +0 -0
  111. data/tools/common/common/test/data/reference_dir/NOTHING +0 -0
  112. data/tools/common/common/test/data/reference_dir/README +1 -0
  113. data/tools/common/common/test/data/reference_dir/subdir/coin +1 -0
  114. data/tools/common/common/test/data/reference_dir/subdir/toto.txt +53 -0
  115. data/tools/common/common/test/data/same_dir/NOTHING +0 -0
  116. data/tools/common/common/test/data/same_dir/README +1 -0
  117. data/tools/common/common/test/data/same_dir/subdir/coin +1 -0
  118. data/tools/common/common/test/data/same_dir/subdir/toto.txt +53 -0
  119. data/tools/common/common/test/data/spam.txt +9 -0
  120. data/tools/common/common/test/data/sub/doc.txt +1 -0
  121. data/tools/common/common/test/data/sub/momo.py +1 -0
  122. data/tools/common/common/test/data/subdir_differ_dir/NOTHING +0 -0
  123. data/tools/common/common/test/data/subdir_differ_dir/README +1 -0
  124. data/tools/common/common/test/data/subdir_differ_dir/subdir/coin +1 -0
  125. data/tools/common/common/test/data/subdir_differ_dir/subdir/toto.txt +53 -0
  126. data/tools/common/common/test/data/test.ini +20 -0
  127. data/tools/common/common/test/data/test1.msg +30 -0
  128. data/tools/common/common/test/data/test2.msg +42 -0
  129. data/tools/common/common/test/data/write_protected_file.txt +0 -0
  130. data/tools/common/common/test/foomod.py +17 -0
  131. data/tools/common/common/test/unittest_cache.py +129 -0
  132. data/tools/common/common/test/unittest_changelog.py +37 -0
  133. data/tools/common/common/test/unittest_compat.py +239 -0
  134. data/tools/common/common/test/unittest_configuration.py +348 -0
  135. data/tools/common/common/test/unittest_date.py +154 -0
  136. data/tools/common/common/test/unittest_decorators.py +62 -0
  137. data/tools/common/common/test/unittest_deprecation.py +76 -0
  138. data/tools/common/common/test/unittest_fileutils.py +133 -0
  139. data/tools/common/common/test/unittest_graph.py +50 -0
  140. data/tools/common/common/test/unittest_html.py +76 -0
  141. data/tools/common/common/test/unittest_interface.py +87 -0
  142. data/tools/common/common/test/unittest_modutils.py +244 -0
  143. data/tools/common/common/test/unittest_pytest.py +50 -0
  144. data/tools/common/common/test/unittest_shellutils.py +248 -0
  145. data/tools/common/common/test/unittest_table.py +448 -0
  146. data/tools/common/common/test/unittest_taskqueue.py +71 -0
  147. data/tools/common/common/test/unittest_testlib.py +956 -0
  148. data/tools/common/common/test/unittest_textutils.py +247 -0
  149. data/tools/common/common/test/unittest_tree.py +248 -0
  150. data/tools/common/common/test/unittest_umessage.py +55 -0
  151. data/tools/common/common/test/unittest_ureports_html.py +64 -0
  152. data/tools/common/common/test/unittest_ureports_text.py +105 -0
  153. data/tools/common/common/test/unittest_xmlutils.py +75 -0
  154. data/tools/common/common/test/utils.py +87 -0
  155. data/tools/common/common/testlib.py +1927 -0
  156. data/tools/common/common/textutils.py +476 -0
  157. data/tools/common/common/tree.py +372 -0
  158. data/tools/common/common/umessage.py +161 -0
  159. data/tools/common/common/ureports/__init__.py +174 -0
  160. data/tools/common/common/ureports/docbook_writer.py +139 -0
  161. data/tools/common/common/ureports/html_writer.py +131 -0
  162. data/tools/common/common/ureports/nodes.py +201 -0
  163. data/tools/common/common/ureports/text_writer.py +140 -0
  164. data/tools/common/common/vcgutils.py +216 -0
  165. data/tools/common/common/visitor.py +107 -0
  166. data/tools/common/common/xmlrpcutils.py +136 -0
  167. data/tools/common/common/xmlutils.py +61 -0
  168. data/tools/compile/compile.py +16 -0
  169. data/tools/coverage/coverage.py +602 -0
  170. data/tools/epydoc/__init__.py +227 -0
  171. data/tools/epydoc/__init__.pyc +0 -0
  172. data/tools/epydoc/apidoc.py +2203 -0
  173. data/tools/epydoc/apidoc.pyc +0 -0
  174. data/tools/epydoc/checker.py +349 -0
  175. data/tools/epydoc/checker.pyc +0 -0
  176. data/tools/epydoc/cli.py +1470 -0
  177. data/tools/epydoc/cli.pyc +0 -0
  178. data/tools/epydoc/compat.py +250 -0
  179. data/tools/epydoc/compat.pyc +0 -0
  180. data/tools/epydoc/docbuilder.py +1358 -0
  181. data/tools/epydoc/docbuilder.pyc +0 -0
  182. data/tools/epydoc/docintrospecter.py +1056 -0
  183. data/tools/epydoc/docintrospecter.pyc +0 -0
  184. data/tools/epydoc/docparser.py +2113 -0
  185. data/tools/epydoc/docparser.pyc +0 -0
  186. data/tools/epydoc/docstringparser.py +1111 -0
  187. data/tools/epydoc/docstringparser.pyc +0 -0
  188. data/tools/epydoc/docwriter/__init__.py +12 -0
  189. data/tools/epydoc/docwriter/__init__.pyc +0 -0
  190. data/tools/epydoc/docwriter/dotgraph.py +1351 -0
  191. data/tools/epydoc/docwriter/dotgraph.pyc +0 -0
  192. data/tools/epydoc/docwriter/html.py +3491 -0
  193. data/tools/epydoc/docwriter/html.pyc +0 -0
  194. data/tools/epydoc/docwriter/html_colorize.py +909 -0
  195. data/tools/epydoc/docwriter/html_colorize.pyc +0 -0
  196. data/tools/epydoc/docwriter/html_css.py +550 -0
  197. data/tools/epydoc/docwriter/html_css.pyc +0 -0
  198. data/tools/epydoc/docwriter/html_help.py +190 -0
  199. data/tools/epydoc/docwriter/html_help.pyc +0 -0
  200. data/tools/epydoc/docwriter/latex.py +1187 -0
  201. data/tools/epydoc/docwriter/latex.pyc +0 -0
  202. data/tools/epydoc/docwriter/plaintext.py +276 -0
  203. data/tools/epydoc/docwriter/plaintext.pyc +0 -0
  204. data/tools/epydoc/docwriter/xlink.py +505 -0
  205. data/tools/epydoc/docwriter/xlink.pyc +0 -0
  206. data/tools/epydoc/gui.py +1148 -0
  207. data/tools/epydoc/gui.pyc +0 -0
  208. data/tools/epydoc/log.py +204 -0
  209. data/tools/epydoc/log.pyc +0 -0
  210. data/tools/epydoc/markup/__init__.py +623 -0
  211. data/tools/epydoc/markup/__init__.pyc +0 -0
  212. data/tools/epydoc/markup/doctest.py +311 -0
  213. data/tools/epydoc/markup/doctest.pyc +0 -0
  214. data/tools/epydoc/markup/epytext.py +2116 -0
  215. data/tools/epydoc/markup/epytext.pyc +0 -0
  216. data/tools/epydoc/markup/javadoc.py +250 -0
  217. data/tools/epydoc/markup/javadoc.pyc +0 -0
  218. data/tools/epydoc/markup/plaintext.py +78 -0
  219. data/tools/epydoc/markup/plaintext.pyc +0 -0
  220. data/tools/epydoc/markup/pyval_repr.py +532 -0
  221. data/tools/epydoc/markup/pyval_repr.pyc +0 -0
  222. data/tools/epydoc/markup/restructuredtext.py +906 -0
  223. data/tools/epydoc/markup/restructuredtext.pyc +0 -0
  224. data/tools/epydoc/test/__init__.py +97 -0
  225. data/tools/epydoc/test/__init__.pyc +0 -0
  226. data/tools/epydoc/test/util.py +226 -0
  227. data/tools/epydoc/test/util.pyc +0 -0
  228. data/tools/epydoc/util.py +289 -0
  229. data/tools/epydoc/util.pyc +0 -0
  230. data/tools/logilab/logilab/__init__.py +5 -0
  231. data/tools/logilab/logilab/astng/__init__.py +82 -0
  232. data/tools/logilab/logilab/astng/__pkginfo__.py +76 -0
  233. data/tools/logilab/logilab/astng/_exceptions.py +64 -0
  234. data/tools/logilab/logilab/astng/_nodes_ast.py +667 -0
  235. data/tools/logilab/logilab/astng/_nodes_compiler.py +758 -0
  236. data/tools/logilab/logilab/astng/bases.py +608 -0
  237. data/tools/logilab/logilab/astng/builder.py +239 -0
  238. data/tools/logilab/logilab/astng/inference.py +426 -0
  239. data/tools/logilab/logilab/astng/inspector.py +289 -0
  240. data/tools/logilab/logilab/astng/manager.py +421 -0
  241. data/tools/logilab/logilab/astng/mixins.py +165 -0
  242. data/tools/logilab/logilab/astng/node_classes.py +848 -0
  243. data/tools/logilab/logilab/astng/nodes.py +85 -0
  244. data/tools/logilab/logilab/astng/nodes_as_string.py +389 -0
  245. data/tools/logilab/logilab/astng/patchcomptransformer.py +159 -0
  246. data/tools/logilab/logilab/astng/protocols.py +333 -0
  247. data/tools/logilab/logilab/astng/raw_building.py +212 -0
  248. data/tools/logilab/logilab/astng/rebuilder.py +307 -0
  249. data/tools/logilab/logilab/astng/scoped_nodes.py +951 -0
  250. data/tools/logilab/logilab/astng/test/__init__.py +19 -0
  251. data/tools/logilab/logilab/astng/test/data/MyPyPa-0.1.0-py2.5.egg +0 -0
  252. data/tools/logilab/logilab/astng/test/data/MyPyPa-0.1.0-py2.5.zip +0 -0
  253. data/tools/logilab/logilab/astng/test/data/SSL1/Connection1.py +33 -0
  254. data/tools/logilab/logilab/astng/test/data/SSL1/__init__.py +20 -0
  255. data/tools/logilab/logilab/astng/test/data/__init__.py +20 -0
  256. data/tools/logilab/logilab/astng/test/data/all.py +29 -0
  257. data/tools/logilab/logilab/astng/test/data/appl/__init__.py +23 -0
  258. data/tools/logilab/logilab/astng/test/data/appl/myConnection.py +30 -0
  259. data/tools/logilab/logilab/astng/test/data/format.py +34 -0
  260. data/tools/logilab/logilab/astng/test/data/module.py +90 -0
  261. data/tools/logilab/logilab/astng/test/data/module2.py +112 -0
  262. data/tools/logilab/logilab/astng/test/data/noendingnewline.py +57 -0
  263. data/tools/logilab/logilab/astng/test/data/nonregr.py +76 -0
  264. data/tools/logilab/logilab/astng/test/data/notall.py +28 -0
  265. data/tools/logilab/logilab/astng/test/data2/__init__.py +20 -0
  266. data/tools/logilab/logilab/astng/test/data2/clientmodule_test.py +51 -0
  267. data/tools/logilab/logilab/astng/test/data2/suppliermodule_test.py +32 -0
  268. data/tools/logilab/logilab/astng/test/regrtest.py +135 -0
  269. data/tools/logilab/logilab/astng/test/regrtest_data/absimport.py +22 -0
  270. data/tools/logilab/logilab/astng/test/regrtest_data/descriptor_crash.py +31 -0
  271. data/tools/logilab/logilab/astng/test/regrtest_data/import_package_subpackage_module.py +68 -0
  272. data/tools/logilab/logilab/astng/test/regrtest_data/package/__init__.py +24 -0
  273. data/tools/logilab/logilab/astng/test/regrtest_data/package/subpackage/__init__.py +20 -0
  274. data/tools/logilab/logilab/astng/test/regrtest_data/package/subpackage/module.py +20 -0
  275. data/tools/logilab/logilab/astng/test/unittest_builder.py +684 -0
  276. data/tools/logilab/logilab/astng/test/unittest_inference.py +1112 -0
  277. data/tools/logilab/logilab/astng/test/unittest_inspector.py +105 -0
  278. data/tools/logilab/logilab/astng/test/unittest_lookup.py +302 -0
  279. data/tools/logilab/logilab/astng/test/unittest_manager.py +98 -0
  280. data/tools/logilab/logilab/astng/test/unittest_nodes.py +302 -0
  281. data/tools/logilab/logilab/astng/test/unittest_scoped_nodes.py +501 -0
  282. data/tools/logilab/logilab/astng/test/unittest_utils.py +104 -0
  283. data/tools/logilab/logilab/astng/utils.py +342 -0
  284. data/tools/logilab/logilab/common/__init__.py +140 -0
  285. data/tools/logilab/logilab/common/__pkginfo__.py +43 -0
  286. data/tools/logilab/logilab/common/adbh.py +35 -0
  287. data/tools/logilab/logilab/common/cache.py +114 -0
  288. data/tools/logilab/logilab/common/changelog.py +234 -0
  289. data/tools/logilab/logilab/common/clcommands.py +181 -0
  290. data/tools/logilab/logilab/common/cli.py +212 -0
  291. data/tools/logilab/logilab/common/compat.py +328 -0
  292. data/tools/logilab/logilab/common/configuration.py +1087 -0
  293. data/tools/logilab/logilab/common/contexts.py +58 -0
  294. data/tools/logilab/logilab/common/corbautils.py +117 -0
  295. data/tools/logilab/logilab/common/daemon.py +171 -0
  296. data/tools/logilab/logilab/common/date.py +279 -0
  297. data/tools/logilab/logilab/common/db.py +49 -0
  298. data/tools/logilab/logilab/common/dbf.py +229 -0
  299. data/tools/logilab/logilab/common/debugger.py +208 -0
  300. data/tools/logilab/logilab/common/decorators.py +190 -0
  301. data/tools/logilab/logilab/common/deprecation.py +118 -0
  302. data/tools/logilab/logilab/common/fileutils.py +409 -0
  303. data/tools/logilab/logilab/common/graph.py +259 -0
  304. data/tools/logilab/logilab/common/html.py +142 -0
  305. data/tools/logilab/logilab/common/interface.py +76 -0
  306. data/tools/logilab/logilab/common/logging_ext.py +166 -0
  307. data/tools/logilab/logilab/common/modutils.py +670 -0
  308. data/tools/logilab/logilab/common/optik_ext.py +383 -0
  309. data/tools/logilab/logilab/common/optparser.py +92 -0
  310. data/tools/logilab/logilab/common/pdf_ext.py +111 -0
  311. data/tools/logilab/logilab/common/proc.py +276 -0
  312. data/tools/logilab/logilab/common/pyro_ext.py +146 -0
  313. data/tools/logilab/logilab/common/pytest.py +754 -0
  314. data/tools/logilab/logilab/common/shellutils.py +383 -0
  315. data/tools/logilab/logilab/common/sphinx_ext.py +87 -0
  316. data/tools/logilab/logilab/common/sphinxutils.py +122 -0
  317. data/tools/logilab/logilab/common/sqlgen.py +31 -0
  318. data/tools/logilab/logilab/common/table.py +930 -0
  319. data/tools/logilab/logilab/common/tasksqueue.py +97 -0
  320. data/tools/logilab/logilab/common/test/__init__.py +1 -0
  321. data/tools/logilab/logilab/common/test/data/ChangeLog +184 -0
  322. data/tools/logilab/logilab/common/test/data/MyPyPa-0.1.0-py2.5.egg +0 -0
  323. data/tools/logilab/logilab/common/test/data/__init__.py +1 -0
  324. data/tools/logilab/logilab/common/test/data/content_differ_dir/NOTHING +0 -0
  325. data/tools/logilab/logilab/common/test/data/content_differ_dir/README +1 -0
  326. data/tools/logilab/logilab/common/test/data/content_differ_dir/subdir/coin +1 -0
  327. data/tools/logilab/logilab/common/test/data/content_differ_dir/subdir/toto.txt +53 -0
  328. data/tools/logilab/logilab/common/test/data/file_differ_dir/NOTHING +0 -0
  329. data/tools/logilab/logilab/common/test/data/file_differ_dir/README +1 -0
  330. data/tools/logilab/logilab/common/test/data/file_differ_dir/subdir/toto.txt +53 -0
  331. data/tools/logilab/logilab/common/test/data/file_differ_dir/subdirtwo/Hello +0 -0
  332. data/tools/logilab/logilab/common/test/data/find_test/__init__.py +0 -0
  333. data/tools/logilab/logilab/common/test/data/find_test/foo.txt +0 -0
  334. data/tools/logilab/logilab/common/test/data/find_test/module.py +0 -0
  335. data/tools/logilab/logilab/common/test/data/find_test/module2.py +0 -0
  336. data/tools/logilab/logilab/common/test/data/find_test/newlines.txt +0 -0
  337. data/tools/logilab/logilab/common/test/data/find_test/noendingnewline.py +0 -0
  338. data/tools/logilab/logilab/common/test/data/find_test/nonregr.py +0 -0
  339. data/tools/logilab/logilab/common/test/data/find_test/normal_file.txt +0 -0
  340. data/tools/logilab/logilab/common/test/data/find_test/spam.txt +0 -0
  341. data/tools/logilab/logilab/common/test/data/find_test/sub/doc.txt +0 -0
  342. data/tools/logilab/logilab/common/test/data/find_test/sub/momo.py +0 -0
  343. data/tools/logilab/logilab/common/test/data/find_test/test.ini +0 -0
  344. data/tools/logilab/logilab/common/test/data/find_test/test1.msg +0 -0
  345. data/tools/logilab/logilab/common/test/data/find_test/test2.msg +0 -0
  346. data/tools/logilab/logilab/common/test/data/find_test/write_protected_file.txt +0 -0
  347. data/tools/logilab/logilab/common/test/data/foo.txt +9 -0
  348. data/tools/logilab/logilab/common/test/data/module.py +88 -0
  349. data/tools/logilab/logilab/common/test/data/module2.py +77 -0
  350. data/tools/logilab/logilab/common/test/data/newlines.txt +3 -0
  351. data/tools/logilab/logilab/common/test/data/noendingnewline.py +36 -0
  352. data/tools/logilab/logilab/common/test/data/nonregr.py +14 -0
  353. data/tools/logilab/logilab/common/test/data/normal_file.txt +0 -0
  354. data/tools/logilab/logilab/common/test/data/reference_dir/NOTHING +0 -0
  355. data/tools/logilab/logilab/common/test/data/reference_dir/README +1 -0
  356. data/tools/logilab/logilab/common/test/data/reference_dir/subdir/coin +1 -0
  357. data/tools/logilab/logilab/common/test/data/reference_dir/subdir/toto.txt +53 -0
  358. data/tools/logilab/logilab/common/test/data/same_dir/NOTHING +0 -0
  359. data/tools/logilab/logilab/common/test/data/same_dir/README +1 -0
  360. data/tools/logilab/logilab/common/test/data/same_dir/subdir/coin +1 -0
  361. data/tools/logilab/logilab/common/test/data/same_dir/subdir/toto.txt +53 -0
  362. data/tools/logilab/logilab/common/test/data/spam.txt +9 -0
  363. data/tools/logilab/logilab/common/test/data/sub/doc.txt +1 -0
  364. data/tools/logilab/logilab/common/test/data/sub/momo.py +1 -0
  365. data/tools/logilab/logilab/common/test/data/subdir_differ_dir/NOTHING +0 -0
  366. data/tools/logilab/logilab/common/test/data/subdir_differ_dir/README +1 -0
  367. data/tools/logilab/logilab/common/test/data/subdir_differ_dir/subdir/coin +1 -0
  368. data/tools/logilab/logilab/common/test/data/subdir_differ_dir/subdir/toto.txt +53 -0
  369. data/tools/logilab/logilab/common/test/data/test.ini +20 -0
  370. data/tools/logilab/logilab/common/test/data/test1.msg +30 -0
  371. data/tools/logilab/logilab/common/test/data/test2.msg +42 -0
  372. data/tools/logilab/logilab/common/test/data/write_protected_file.txt +0 -0
  373. data/tools/logilab/logilab/common/test/foomod.py +17 -0
  374. data/tools/logilab/logilab/common/test/unittest_cache.py +129 -0
  375. data/tools/logilab/logilab/common/test/unittest_changelog.py +37 -0
  376. data/tools/logilab/logilab/common/test/unittest_compat.py +239 -0
  377. data/tools/logilab/logilab/common/test/unittest_configuration.py +348 -0
  378. data/tools/logilab/logilab/common/test/unittest_date.py +154 -0
  379. data/tools/logilab/logilab/common/test/unittest_decorators.py +62 -0
  380. data/tools/logilab/logilab/common/test/unittest_deprecation.py +76 -0
  381. data/tools/logilab/logilab/common/test/unittest_fileutils.py +133 -0
  382. data/tools/logilab/logilab/common/test/unittest_graph.py +50 -0
  383. data/tools/logilab/logilab/common/test/unittest_html.py +76 -0
  384. data/tools/logilab/logilab/common/test/unittest_interface.py +87 -0
  385. data/tools/logilab/logilab/common/test/unittest_modutils.py +244 -0
  386. data/tools/logilab/logilab/common/test/unittest_pytest.py +50 -0
  387. data/tools/logilab/logilab/common/test/unittest_shellutils.py +248 -0
  388. data/tools/logilab/logilab/common/test/unittest_table.py +448 -0
  389. data/tools/logilab/logilab/common/test/unittest_taskqueue.py +71 -0
  390. data/tools/logilab/logilab/common/test/unittest_testlib.py +956 -0
  391. data/tools/logilab/logilab/common/test/unittest_textutils.py +247 -0
  392. data/tools/logilab/logilab/common/test/unittest_tree.py +248 -0
  393. data/tools/logilab/logilab/common/test/unittest_umessage.py +55 -0
  394. data/tools/logilab/logilab/common/test/unittest_ureports_html.py +64 -0
  395. data/tools/logilab/logilab/common/test/unittest_ureports_text.py +105 -0
  396. data/tools/logilab/logilab/common/test/unittest_xmlutils.py +75 -0
  397. data/tools/logilab/logilab/common/test/utils.py +87 -0
  398. data/tools/logilab/logilab/common/testlib.py +1927 -0
  399. data/tools/logilab/logilab/common/textutils.py +476 -0
  400. data/tools/logilab/logilab/common/tree.py +372 -0
  401. data/tools/logilab/logilab/common/umessage.py +161 -0
  402. data/tools/logilab/logilab/common/ureports/__init__.py +174 -0
  403. data/tools/logilab/logilab/common/ureports/docbook_writer.py +139 -0
  404. data/tools/logilab/logilab/common/ureports/html_writer.py +131 -0
  405. data/tools/logilab/logilab/common/ureports/nodes.py +201 -0
  406. data/tools/logilab/logilab/common/ureports/text_writer.py +140 -0
  407. data/tools/logilab/logilab/common/vcgutils.py +216 -0
  408. data/tools/logilab/logilab/common/visitor.py +107 -0
  409. data/tools/logilab/logilab/common/xmlrpcutils.py +136 -0
  410. data/tools/logilab/logilab/common/xmlutils.py +61 -0
  411. data/tools/pychecker/COPYRIGHT +31 -0
  412. data/tools/pychecker/ChangeLog +349 -0
  413. data/tools/pychecker/CodeChecks.py +1969 -0
  414. data/tools/pychecker/CodeChecks.pyc +0 -0
  415. data/tools/pychecker/CodeChecks.pyo +0 -0
  416. data/tools/pychecker/Config.py +475 -0
  417. data/tools/pychecker/Config.pyc +0 -0
  418. data/tools/pychecker/Config.pyo +0 -0
  419. data/tools/pychecker/KNOWN_BUGS +100 -0
  420. data/tools/pychecker/MAINTAINERS +81 -0
  421. data/tools/pychecker/NEWS +406 -0
  422. data/tools/pychecker/OP.py +131 -0
  423. data/tools/pychecker/OP.pyc +0 -0
  424. data/tools/pychecker/OP.pyo +0 -0
  425. data/tools/pychecker/OptionTypes.py +117 -0
  426. data/tools/pychecker/OptionTypes.pyc +0 -0
  427. data/tools/pychecker/OptionTypes.pyo +0 -0
  428. data/tools/pychecker/README +152 -0
  429. data/tools/pychecker/Stack.py +115 -0
  430. data/tools/pychecker/Stack.pyc +0 -0
  431. data/tools/pychecker/Stack.pyo +0 -0
  432. data/tools/pychecker/TODO +101 -0
  433. data/tools/pychecker/VERSION +1 -0
  434. data/tools/pychecker/Warning.py +50 -0
  435. data/tools/pychecker/Warning.pyc +0 -0
  436. data/tools/pychecker/Warning.pyo +0 -0
  437. data/tools/pychecker/__init__.py +17 -0
  438. data/tools/pychecker/__init__.pyc +0 -0
  439. data/tools/pychecker/__init__.pyo +0 -0
  440. data/tools/pychecker/checker.py +961 -0
  441. data/tools/pychecker/checker.pyc +0 -0
  442. data/tools/pychecker/checker.pyo +0 -0
  443. data/tools/pychecker/function.py +159 -0
  444. data/tools/pychecker/function.pyc +0 -0
  445. data/tools/pychecker/function.pyo +0 -0
  446. data/tools/pychecker/msgs.py +175 -0
  447. data/tools/pychecker/msgs.pyc +0 -0
  448. data/tools/pychecker/msgs.pyo +0 -0
  449. data/tools/pychecker/options.py +275 -0
  450. data/tools/pychecker/options.pyc +0 -0
  451. data/tools/pychecker/options.pyo +0 -0
  452. data/tools/pychecker/pcmodules.py +19 -0
  453. data/tools/pychecker/pcmodules.pyc +0 -0
  454. data/tools/pychecker/pcmodules.pyo +0 -0
  455. data/tools/pychecker/printer.py +47 -0
  456. data/tools/pychecker/printer.pyc +0 -0
  457. data/tools/pychecker/printer.pyo +0 -0
  458. data/tools/pychecker/python.py +427 -0
  459. data/tools/pychecker/python.pyc +0 -0
  460. data/tools/pychecker/python.pyo +0 -0
  461. data/tools/pychecker/utils.py +102 -0
  462. data/tools/pychecker/utils.pyc +0 -0
  463. data/tools/pychecker/utils.pyo +0 -0
  464. data/tools/pychecker/warn.py +778 -0
  465. data/tools/pychecker/warn.pyc +0 -0
  466. data/tools/pychecker/warn.pyo +0 -0
  467. data/tools/pylint2/pylint/__init__.py +16 -0
  468. data/tools/pylint2/pylint/__pkginfo__.py +67 -0
  469. data/tools/pylint2/pylint/checkers/__init__.py +155 -0
  470. data/tools/pylint2/pylint/checkers/base.py +749 -0
  471. data/tools/pylint2/pylint/checkers/classes.py +527 -0
  472. data/tools/pylint2/pylint/checkers/design_analysis.py +344 -0
  473. data/tools/pylint2/pylint/checkers/exceptions.py +183 -0
  474. data/tools/pylint2/pylint/checkers/format.py +367 -0
  475. data/tools/pylint2/pylint/checkers/imports.py +379 -0
  476. data/tools/pylint2/pylint/checkers/logging.py +98 -0
  477. data/tools/pylint2/pylint/checkers/misc.py +128 -0
  478. data/tools/pylint2/pylint/checkers/newstyle.py +107 -0
  479. data/tools/pylint2/pylint/checkers/raw_metrics.py +125 -0
  480. data/tools/pylint2/pylint/checkers/similar.py +333 -0
  481. data/tools/pylint2/pylint/checkers/string_format.py +239 -0
  482. data/tools/pylint2/pylint/checkers/typecheck.py +364 -0
  483. data/tools/pylint2/pylint/checkers/utils.py +208 -0
  484. data/tools/pylint2/pylint/checkers/variables.py +498 -0
  485. data/tools/pylint2/pylint/config.py +149 -0
  486. data/tools/pylint2/pylint/epylint.py +149 -0
  487. data/tools/pylint2/pylint/gui.py +433 -0
  488. data/tools/pylint2/pylint/interfaces.py +98 -0
  489. data/tools/pylint2/pylint/lint.py +914 -0
  490. data/tools/pylint2/pylint/pyreverse/__init__.py +5 -0
  491. data/tools/pylint2/pylint/pyreverse/diadefslib.py +229 -0
  492. data/tools/pylint2/pylint/pyreverse/diagrams.py +247 -0
  493. data/tools/pylint2/pylint/pyreverse/main.py +123 -0
  494. data/tools/pylint2/pylint/pyreverse/utils.py +131 -0
  495. data/tools/pylint2/pylint/pyreverse/writer.py +196 -0
  496. data/tools/pylint2/pylint/reporters/__init__.py +67 -0
  497. data/tools/pylint2/pylint/reporters/guireporter.py +36 -0
  498. data/tools/pylint2/pylint/reporters/html.py +69 -0
  499. data/tools/pylint2/pylint/reporters/text.py +156 -0
  500. data/tools/pylint2/pylint/utils.py +518 -0
  501. data/tools/pylint2/pylint.py +16 -0
  502. data/tools/test/suite.py +35 -0
  503. metadata +566 -0
@@ -0,0 +1,602 @@
1
+ #!/usr/bin/python
2
+ #
3
+ # Perforce Defect Tracking Integration Project
4
+ # <http://www.ravenbrook.com/project/p4dti/>
5
+ #
6
+ # COVERAGE.PY -- COVERAGE TESTING
7
+ #
8
+ # Gareth Rees, Ravenbrook Limited, 2001-12-04
9
+ #
10
+ #
11
+ # 1. INTRODUCTION
12
+ #
13
+ # This module provides coverage testing for Python code.
14
+ #
15
+ # The intended readership is all Python developers.
16
+ #
17
+ # This document is not confidential.
18
+ #
19
+ # See [GDR 2001-12-04a] for the command-line interface, programmatic
20
+ # interface and limitations. See [GDR 2001-12-04b] for requirements and
21
+ # design.
22
+
23
+ """Usage:
24
+
25
+ coverage.py -x MODULE.py [-f file] [ARG1 ARG2 ...]
26
+ Execute module, passing the given command-line arguments, collecting
27
+ coverage data.
28
+
29
+ coverage.py -e [-f file]
30
+ Erase collected coverage data.
31
+
32
+ coverage.py -r [-f file] [-m] FILE1 FILE2 ...
33
+ Report on the statement coverage for the given files. With the -m
34
+ option, show line numbers of the statements that weren't executed.
35
+
36
+ coverage.py -a [-f file] [-d dir] FILE1 FILE2 ...
37
+ Make annotated copies of the given files, marking statements that
38
+ are executed with > and statements that are missed with !. With
39
+ the -d option, make the copies in that directory. Without the -d
40
+ option, make each copy in the same directory as the original.
41
+
42
+ Coverage data is saved in the file .coverage by default. Set the
43
+ COVERAGE_FILE environment variable to save it somewhere else or pass
44
+ its location after -f command line argument."""
45
+
46
+ import os
47
+ import re
48
+ import string
49
+ import sys
50
+ import types
51
+
52
+
53
+ # 2. IMPLEMENTATION
54
+ #
55
+ # This uses the "singleton" pattern.
56
+ #
57
+ # The word "morf" means a module object (from which the source file can
58
+ # be deduced by suitable manipulation of the __file__ attribute) or a
59
+ # filename.
60
+ #
61
+ # When we generate a coverage report we have to canonicalize every
62
+ # filename in the coverage dictionary just in case it refers to the
63
+ # module we are reporting on. It seems a shame to throw away this
64
+ # information so the data in the coverage dictionary is transferred to
65
+ # the 'cexecuted' dictionary under the canonical filenames.
66
+ #
67
+ # The coverage dictionary is called "c" and the trace function "t". The
68
+ # reason for these short names is that Python looks up variables by name
69
+ # at runtime and so execution time depends on the length of variables!
70
+ # In the bottleneck of this application it's appropriate to abbreviate
71
+ # names to increase speed.
72
+
73
+ # A dictionary with an entry for (Python source file name, line number
74
+ # in that file) if that line has been executed.
75
+ c = {}
76
+
77
+ # t(f, x, y). This method is passed to sys.settrace as a trace
78
+ # function. See [van Rossum 2001-07-20b, 9.2] for an explanation of
79
+ # sys.settrace and the arguments and return value of the trace function.
80
+ # See [van Rossum 2001-07-20a, 3.2] for a description of frame and code
81
+ # objects.
82
+
83
+ def t(f, x, y):
84
+ c[(f.f_code.co_filename, f.f_lineno)] = 1
85
+ return t
86
+
87
+ the_coverage = None
88
+
89
+ class coverage:
90
+ error = "coverage error"
91
+
92
+ # Name of the cache file (unless environment variable is set).
93
+ cache_default = ".coverage"
94
+
95
+ # Environment variable naming the cache file.
96
+ cache_env = "COVERAGE_FILE"
97
+
98
+ # A map from canonical Python source file name to a dictionary in
99
+ # which there's an entry for each line number that has been
100
+ # executed.
101
+ cexecuted = {}
102
+
103
+ # Cache of results of calling the analysis() method, so that you can
104
+ # specify both -r and -a without doing double work.
105
+ analysis_cache = {}
106
+
107
+ # Cache of results of calling the canonical_filename() method, to
108
+ # avoid duplicating work.
109
+ canonical_filename_cache = {}
110
+
111
+ def __init__(self):
112
+ global the_coverage
113
+ if the_coverage:
114
+ raise self.error, "Only one coverage object allowed."
115
+ self.cache = os.environ.get(self.cache_env, self.cache_default)
116
+ self.restore()
117
+ self.analysis_cache = {}
118
+
119
+ def help(self, error=None):
120
+ if error:
121
+ print error
122
+ print
123
+ print __doc__
124
+ sys.exit(1)
125
+
126
+ def command_line(self):
127
+ import getopt
128
+ settings = {}
129
+ optmap = {
130
+ '-a': 'annotate',
131
+ '-d:': 'directory=',
132
+ '-e': 'erase',
133
+ '-f:': 'coverage-file=',
134
+ '-h': 'help',
135
+ '-i': 'ignore-errors',
136
+ '-m': 'show-missing',
137
+ '-r': 'report',
138
+ '-x': 'execute',
139
+ }
140
+ short_opts = string.join(map(lambda o: o[1:], optmap.keys()), '')
141
+ long_opts = optmap.values()
142
+ options, args = getopt.getopt(sys.argv[1:], short_opts,
143
+ long_opts)
144
+ for o, a in options:
145
+ if optmap.has_key(o):
146
+ settings[optmap[o]] = 1
147
+ elif optmap.has_key(o + ':'):
148
+ settings[optmap[o + ':']] = a
149
+ elif o[2:] in long_opts:
150
+ settings[o[2:]] = 1
151
+ elif o[2:] + '=' in long_opts:
152
+ settings[o[2:]] = a
153
+ else:
154
+ self.help("Unknown option: '%s'." % o)
155
+ if settings.get('coverage-file='):
156
+ self.cache = settings.get('coverage-file=')
157
+ self.restore()
158
+ self.analysis_cache = {}
159
+ if settings.get('help'):
160
+ self.help()
161
+ for i in ['erase', 'execute']:
162
+ for j in ['annotate', 'report']:
163
+ if settings.get(i) and settings.get(j):
164
+ self.help("You can't specify the '%s' and '%s' "
165
+ "options at the same time." % (i, j))
166
+ args_needed = (settings.get('execute')
167
+ or settings.get('annotate')
168
+ or settings.get('report'))
169
+ action = settings.get('erase') or args_needed
170
+ if not action:
171
+ self.help("You must specify at least one of -e, -x, -r, "
172
+ "or -a.")
173
+ if not args_needed and args:
174
+ self.help("Unexpected arguments %s." % args)
175
+ if settings.get('erase'):
176
+ self.erase()
177
+ if settings.get('execute'):
178
+ if not args:
179
+ self.help("Nothing to do.")
180
+ sys.argv = args
181
+ self.start()
182
+ import __main__
183
+ sys.path[0] = os.path.dirname(sys.argv[0])
184
+ execfile(sys.argv[0], __main__.__dict__)
185
+ if not args:
186
+ args = self.cexecuted.keys()
187
+ ignore_errors = settings.get('ignore-errors')
188
+ show_missing = settings.get('show-missing')
189
+ directory = settings.get('directory=')
190
+ if settings.get('report'):
191
+ self.report(args, show_missing, ignore_errors)
192
+ if settings.get('annotate'):
193
+ self.annotate(args, directory, ignore_errors)
194
+
195
+ def start(self):
196
+ sys.settrace(t)
197
+
198
+ def stop(self):
199
+ sys.settrace(None)
200
+
201
+ def erase(self):
202
+ global c
203
+ c = {}
204
+ self.analysis_cache = {}
205
+ self.cexecuted = {}
206
+ if os.path.exists(self.cache):
207
+ os.remove(self.cache)
208
+
209
+ # save(). Save coverage data to the coverage cache.
210
+
211
+ def save(self):
212
+ self.canonicalize_filenames()
213
+ cache = open(self.cache, 'wb')
214
+ import marshal
215
+ marshal.dump(self.cexecuted, cache)
216
+ cache.close()
217
+
218
+ # restore(). Restore coverage data from the coverage cache (if it
219
+ # exists).
220
+
221
+ def restore(self):
222
+ global c
223
+ c = {}
224
+ self.cexecuted = {}
225
+ if not os.path.exists(self.cache):
226
+ return
227
+ try:
228
+ cache = open(self.cache, 'rb')
229
+ import marshal
230
+ cexecuted = marshal.load(cache)
231
+ cache.close()
232
+ if isinstance(cexecuted, types.DictType):
233
+ self.cexecuted = cexecuted
234
+ except:
235
+ pass
236
+
237
+ # canonical_filename(filename). Return a canonical filename for the
238
+ # file (that is, an absolute path with no redundant components and
239
+ # normalized case). See [GDR 2001-12-04b, 3.3].
240
+
241
+ def canonical_filename(self, filename):
242
+ if not self.canonical_filename_cache.has_key(filename):
243
+ f = filename
244
+ if os.path.isabs(f) and not os.path.exists(f):
245
+ f = os.path.basename(f)
246
+ if not os.path.isabs(f):
247
+ for path in [os.curdir] + sys.path:
248
+ g = os.path.join(path, f)
249
+ if os.path.exists(g):
250
+ f = g
251
+ break
252
+ cf = os.path.normcase(os.path.abspath(f))
253
+ self.canonical_filename_cache[filename] = cf
254
+ return self.canonical_filename_cache[filename]
255
+
256
+ # canonicalize_filenames(). Copy results from "executed" to
257
+ # "cexecuted", canonicalizing filenames on the way. Clear the
258
+ # "executed" map.
259
+
260
+ def canonicalize_filenames(self):
261
+ global c
262
+ for filename, lineno in c.keys():
263
+ f = self.canonical_filename(filename)
264
+ if not self.cexecuted.has_key(f):
265
+ self.cexecuted[f] = {}
266
+ self.cexecuted[f][lineno] = 1
267
+ c = {}
268
+
269
+ # morf_filename(morf). Return the filename for a module or file.
270
+
271
+ def morf_filename(self, morf):
272
+ if isinstance(morf, types.ModuleType):
273
+ if not hasattr(morf, '__file__'):
274
+ raise self.error, "Module has no __file__ attribute."
275
+ file = morf.__file__
276
+ else:
277
+ file = morf
278
+ return self.canonical_filename(file)
279
+
280
+ # analyze_morf(morf). Analyze the module or filename passed as
281
+ # the argument. If the source code can't be found, raise an error.
282
+ # Otherwise, return a pair of (1) the canonical filename of the
283
+ # source code for the module, and (2) a list of lines of statements
284
+ # in the source code.
285
+
286
+ def analyze_morf(self, morf):
287
+ if self.analysis_cache.has_key(morf):
288
+ return self.analysis_cache[morf]
289
+ filename = self.morf_filename(morf)
290
+ ext = os.path.splitext(filename)[1]
291
+ if ext == '.pyc':
292
+ if not os.path.exists(filename[0:-1]):
293
+ raise self.error, ("No source for compiled code '%s'."
294
+ % filename)
295
+ filename = filename[0:-1]
296
+ elif ext != '.py':
297
+ raise self.error, "File '%s' not Python source." % filename
298
+ source = open(filename, 'r')
299
+ import parser
300
+ tree = parser.suite(source.read()).totuple(1)
301
+ source.close()
302
+ statements = {}
303
+ self.find_statements(tree, statements)
304
+ lines = statements.keys()
305
+ lines.sort()
306
+ result = filename, lines
307
+ self.analysis_cache[morf] = result
308
+ return result
309
+
310
+ # find_statements(tree, dict). Find each statement in the parse
311
+ # tree and record the line on which the statement starts in the
312
+ # dictionary (by assigning it to 1).
313
+ #
314
+ # It works by walking the whole tree depth-first. Every time it
315
+ # comes across a statement (symbol.stmt -- this includes compound
316
+ # statements like 'if' and 'while') it calls find_statement, which
317
+ # descends the tree below the statement to find the first terminal
318
+ # token in that statement and record the lines on which that token
319
+ # was found.
320
+ #
321
+ # This algorithm may find some lines several times (because of the
322
+ # grammar production statement -> compound statement -> statement),
323
+ # but that doesn't matter because we record lines as the keys of the
324
+ # dictionary.
325
+ #
326
+ # See also [GDR 2001-12-04b, 3.2].
327
+
328
+ def find_statements(self, tree, dict):
329
+ import symbol, token
330
+ if token.ISNONTERMINAL(tree[0]):
331
+ for t in tree[1:]:
332
+ self.find_statements(t, dict)
333
+ if tree[0] == symbol.stmt:
334
+ self.find_statement(tree[1], dict)
335
+ elif (tree[0] == token.NAME
336
+ and tree[1] in ['elif', 'except', 'finally']):
337
+ dict[tree[2]] = 1
338
+
339
+ def find_statement(self, tree, dict):
340
+ import token
341
+ while token.ISNONTERMINAL(tree[0]):
342
+ tree = tree[1]
343
+ dict[tree[2]] = 1
344
+
345
+ # format_lines(statements, lines). Format a list of line numbers
346
+ # for printing by coalescing groups of lines as long as the lines
347
+ # represent consecutive statements. This will coalesce even if
348
+ # there are gaps between statements, so if statements =
349
+ # [1,2,3,4,5,10,11,12,13,14] and lines = [1,2,5,10,11,13,14] then
350
+ # format_lines will return "1-2, 5-11, 13-14".
351
+
352
+ def format_lines(self, statements, lines):
353
+ pairs = []
354
+ i = 0
355
+ j = 0
356
+ start = None
357
+ pairs = []
358
+ while i < len(statements) and j < len(lines):
359
+ if statements[i] == lines[j]:
360
+ if start == None:
361
+ start = lines[j]
362
+ end = lines[j]
363
+ j = j + 1
364
+ elif start:
365
+ pairs.append((start, end))
366
+ start = None
367
+ i = i + 1
368
+ if start:
369
+ pairs.append((start, end))
370
+ def stringify(pair):
371
+ start, end = pair
372
+ if start == end:
373
+ return "%d" % start
374
+ else:
375
+ return "%d-%d" % (start, end)
376
+ import string
377
+ return string.join(map(stringify, pairs), ", ")
378
+
379
+ def analysis(self, morf):
380
+ filename, statements = self.analyze_morf(morf)
381
+ self.canonicalize_filenames()
382
+ if not self.cexecuted.has_key(filename):
383
+ self.cexecuted[filename] = {}
384
+ missing = []
385
+ for line in statements:
386
+ if not self.cexecuted[filename].has_key(line):
387
+ missing.append(line)
388
+ return (filename, statements, missing,
389
+ self.format_lines(statements, missing))
390
+
391
+ def morf_name(self, morf):
392
+ if isinstance(morf, types.ModuleType):
393
+ return morf.__name__
394
+ else:
395
+ return os.path.splitext(os.path.basename(morf))[0]
396
+
397
+ def report(self, morfs, show_missing=1, ignore_errors=0):
398
+ if not isinstance(morfs, types.ListType):
399
+ morfs = [morfs]
400
+ max_name = max([5,] + map(len, map(self.morf_name, morfs)))
401
+ fmt_name = "%%- %ds " % max_name
402
+ fmt_err = fmt_name + "%s: %s"
403
+ header = fmt_name % "Name" + " Stmts Exec Cover"
404
+ fmt_coverage = fmt_name + "% 6d % 6d % 5d%%"
405
+ if show_missing:
406
+ header = header + " Missing"
407
+ fmt_coverage = fmt_coverage + " %s"
408
+ print header
409
+ print "-" * len(header)
410
+ total_statements = 0
411
+ total_executed = 0
412
+ for morf in morfs:
413
+ name = self.morf_name(morf)
414
+ try:
415
+ _, statements, missing, readable = self.analysis(morf)
416
+ n = len(statements)
417
+ m = n - len(missing)
418
+ if n > 0:
419
+ pc = 100.0 * m / n
420
+ else:
421
+ pc = 100.0
422
+ args = (name, n, m, pc)
423
+ if show_missing:
424
+ args = args + (readable,)
425
+ print fmt_coverage % args
426
+ total_statements = total_statements + n
427
+ total_executed = total_executed + m
428
+ except KeyboardInterrupt:
429
+ raise
430
+ except:
431
+ if not ignore_errors:
432
+ type, msg = sys.exc_info()[0:2]
433
+ print fmt_err % (name, type, msg)
434
+ if len(morfs) > 1:
435
+ print "-" * len(header)
436
+ if total_statements > 0:
437
+ pc = 100.0 * total_executed / total_statements
438
+ else:
439
+ pc = 100.0
440
+ args = ("TOTAL", total_statements, total_executed, pc)
441
+ if show_missing:
442
+ args = args + ("",)
443
+ print fmt_coverage % args
444
+
445
+ # annotate(morfs, ignore_errors).
446
+
447
+ blank_re = re.compile("\\s*(#|$)")
448
+ else_re = re.compile("\\s*else\\s*:\\s*(#|$)")
449
+
450
+ def annotate(self, morfs, directory=None, ignore_errors=0):
451
+ for morf in morfs:
452
+ try:
453
+ filename, statements, missing, _ = self.analysis(morf)
454
+ source = open(filename, 'r')
455
+ if directory:
456
+ dest_file = os.path.join(directory,
457
+ os.path.basename(filename)
458
+ + ',cover')
459
+ else:
460
+ dest_file = filename + ',cover'
461
+ dest = open(dest_file, 'w')
462
+ lineno = 0
463
+ i = 0
464
+ j = 0
465
+ covered = 1
466
+ while 1:
467
+ line = source.readline()
468
+ if line == '':
469
+ break
470
+ lineno = lineno + 1
471
+ while i < len(statements) and statements[i] < lineno:
472
+ i = i + 1
473
+ while j < len(missing) and missing[j] < lineno:
474
+ j = j + 1
475
+ if i < len(statements) and statements[i] == lineno:
476
+ covered = j >= len(missing) or missing[j] > lineno
477
+ if self.blank_re.match(line):
478
+ dest.write(' ')
479
+ elif self.else_re.match(line):
480
+ # Special logic for lines containing only
481
+ # 'else:'. See [GDR 2001-12-04b, 3.2].
482
+ if i >= len(statements) and j >= len(missing):
483
+ dest.write('! ')
484
+ elif i >= len(statements) or j >= len(missing):
485
+ dest.write('> ')
486
+ elif statements[i] == missing[j]:
487
+ dest.write('! ')
488
+ else:
489
+ dest.write('> ')
490
+ elif covered:
491
+ dest.write('> ')
492
+ else:
493
+ dest.write('! ')
494
+ dest.write(line)
495
+ source.close()
496
+ dest.close()
497
+ except KeyboardInterrupt:
498
+ raise
499
+ except:
500
+ if not ignore_errors:
501
+ raise
502
+
503
+
504
+ # Singleton object.
505
+ the_coverage = coverage()
506
+
507
+ # Module functions call methods in the singleton object.
508
+ def start(*args): return apply(the_coverage.start, args)
509
+ def stop(*args): return apply(the_coverage.stop, args)
510
+ def erase(*args): return apply(the_coverage.erase, args)
511
+ def analysis(*args): return apply(the_coverage.analysis, args)
512
+ def report(*args): return apply(the_coverage.report, args)
513
+
514
+ # Save coverage data when Python exits. (The atexit module wasn't
515
+ # introduced until Python 2.0, so use sys.exitfunc when it's not
516
+ # available.)
517
+ try:
518
+ import atexit
519
+ atexit.register(the_coverage.save)
520
+ except ImportError:
521
+ sys.exitfunc = the_coverage.save
522
+
523
+ # Command-line interface.
524
+ if __name__ == '__main__':
525
+ the_coverage.command_line()
526
+
527
+
528
+ # A. REFERENCES
529
+ #
530
+ # [GDR 2001-12-04a] "Statement coverage for Python"; Gareth Rees;
531
+ # Ravenbrook Limited; 2001-12-04;
532
+ # <http://www.garethrees.org/2001/12/04/python-coverage/>.
533
+ #
534
+ # [GDR 2001-12-04b] "Statement coverage for Python: design and
535
+ # analysis"; Gareth Rees; Ravenbrook Limited; 2001-12-04;
536
+ # <http://www.garethrees.org/2001/12/04/python-coverage/design.html>.
537
+ #
538
+ # [van Rossum 2001-07-20a] "Python Reference Manual (releae 2.1.1)";
539
+ # Guide van Rossum; 2001-07-20;
540
+ # <http://www.python.org/doc/2.1.1/ref/ref.html>.
541
+ #
542
+ # [van Rossum 2001-07-20b] "Python Library Reference"; Guido van Rossum;
543
+ # 2001-07-20; <http://www.python.org/doc/2.1.1/lib/lib.html>.
544
+ #
545
+ #
546
+ # B. DOCUMENT HISTORY
547
+ #
548
+ # 2001-12-04 GDR Created.
549
+ #
550
+ # 2001-12-06 GDR Added command-line interface and source code
551
+ # annotation.
552
+ #
553
+ # 2001-12-09 GDR Moved design and interface to separate documents.
554
+ #
555
+ # 2001-12-10 GDR Open cache file as binary on Windows. Allow
556
+ # simultaneous -e and -x, or -a and -r.
557
+ #
558
+ # 2001-12-12 GDR Added command-line help. Cache analysis so that it
559
+ # only needs to be done once when you specify -a and -r.
560
+ #
561
+ # 2001-12-13 GDR Improved speed while recording. Portable between
562
+ # Python 1.5.2 and 2.1.1.
563
+ #
564
+ # 2002-01-03 GDR Module-level functions work correctly.
565
+ #
566
+ # 2002-01-07 GDR Update sys.path when running a file with the -x option,
567
+ # so that it matches the value the program would get if it were run on
568
+ # its own.
569
+ #
570
+ #
571
+ # C. COPYRIGHT AND LICENCE
572
+ #
573
+ # Copyright 2001 Gareth Rees. All rights reserved.
574
+ #
575
+ # Redistribution and use in source and binary forms, with or without
576
+ # modification, are permitted provided that the following conditions are
577
+ # met:
578
+ #
579
+ # 1. Redistributions of source code must retain the above copyright
580
+ # notice, this list of conditions and the following disclaimer.
581
+ #
582
+ # 2. Redistributions in binary form must reproduce the above copyright
583
+ # notice, this list of conditions and the following disclaimer in the
584
+ # documentation and/or other materials provided with the
585
+ # distribution.
586
+ #
587
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
588
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
589
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
590
+ # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
591
+ # HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
592
+ # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
593
+ # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
594
+ # OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
595
+ # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
596
+ # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
597
+ # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
598
+ # DAMAGE.
599
+ #
600
+ #
601
+ #
602
+ # $Id: coverage.py,v 1.1 2009/11/30 14:09:28 casa Exp $