summaryrefslogtreecommitdiff
path: root/test/DocutilsTestSupport.py
Commit message (Collapse)AuthorAgeFilesLines
* recommonmark tests currently fail with newer versions.milde2021-04-091-0/+4
| | | | | | | Skip for now if recommonmark.__version__ != 0.4.0 to allow a fast bugfix release. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8683 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Clean up Markdown support.milde2021-01-031-4/+0
| | | | | | | | | | Set 'docutils-cli.py' shebang to python3 (better chance of markdown support). Remove the 'md2*.py' wrappers. (Use 'docutils-cli.py --parser=markdown'.) Remove hard-coded print output from test suite when there is no recommonmark module. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8601 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add support for Markdown.milde2020-12-011-3/+35
| | | | | | | | | | | | | | Provide a wrapper for the 3rd party `recommonmark`__ Markdown parser already in use in Sphinx. Add test cases for CommonMark parsing. Also: Correct copyright note and set executable bit on two tests. Fix small typo in test content. __ https://pypi.org/project/recommonmark/ git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8585 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Remove Test support classes for the orphaned Python Module Parser.milde2020-09-301-62/+0
| | | | | | | The Python module parser is orphaned and was moved to the sanbox on 07.12.2010. So these classes are no longer required. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8566 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Run python3 test like python2 run against source not the build/-directory.grubert2020-07-271-8/+2
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8531 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Simplify code.milde2019-08-271-7/+3
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8373 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* py3: Wrap 'foo.keys()', 'zip(foo, bar') in 'list'milde2019-08-271-1/+1
| | | | | | | | | | | In Python 3, 'dict.keys()', 'zip' and 'map' no longer return a list but rather types 'dict_keys', 'zip' and 'map', respectively. You can't append to these types nor can you delete from them while in a loop. The simple solution to both issues is to wrap things in 'list'. Signed-off-by: Stephen Finucane <stephen@that.guru> git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8372 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Formatting changes to facilitate integration of "py3" patchset.milde2019-08-271-3/+3
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8367 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Consistent Python 3 checks.milde2019-08-261-2/+2
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8360 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* py3: Use 'sorted(foo)' instead of 'foo.sort()'milde2019-08-261-2/+1
| | | | | | | | This works with iterators also (like 'dict.keys()' in Python 3) Signed-off-by: Stephen Finucane <stephen@that.guru> git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8357 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* py3: Replace deprecated form of raising exceptionmilde2019-08-261-17/+4
| | | | | | Signed-off-by: Stephen Finucane <stephen@that.guru> git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8353 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* py3: Add aliases for removed symbolsmilde2019-08-261-0/+4
| | | | | | | | | | Add aliases for symbols that have been removed in Python 3.x, namely basestring, unicode, unichr and StandardError. Signed-off-by: Stephen Finucane <stephen@that.guru> small fixes by Günter Milde. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8348 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* py3: Switch to 'except foo as bar' syntaxmilde2019-08-261-4/+4
| | | | | | | | This is the only form supported in Python 3.x. Signed-off-by: Stephen Finucane <stephen@that.guru> git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8347 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* py3: Switch to print functionsmilde2019-08-261-13/+14
| | | | | | | | | | Remove all uses of print as a statement. This includes comments, many of which are simply removed as noise (they're in version control and can be re-added later, if necessary). Signed-off-by: Stephen Finucane <stephen@that.guru> git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8346 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* py3: Use new style classesmilde2019-08-261-1/+1
| | | | | | Signed-off-by: Stephen Finucane <stephen@that.guru> git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8345 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Use compatibility definitions for assertIn and assertNotIn only if required.milde2019-02-121-11/+12
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8245 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Html5 writer: Correctly sort docinfo and subtitle into "parts" dict.milde2018-06-051-22/+23
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8217 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Drop compatibility code for Python 2.4 and 2.5.milde2017-08-111-1/+0
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8163 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Use True/False for booleans. frontend.validate_ternary() returns True/False ↵milde2012-11-261-2/+2
| | | | | | or value. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7539 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Code cleanup and test html math output options.milde2012-10-251-4/+16
| | | | | | | | Based on patch by Dmitry Shachnev. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7534 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* math, error_reporting, and urischemes moved to the utils package. milde2012-06-251-2/+3
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7464 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Drop support for Python 2.3.milde2012-06-221-4/+0
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7463 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fixup: more save implementation of binary data output under Python 3.milde2012-06-131-1/+1
| | | | | | Prevent test error under Python 3. Add tests for FileOutput. Document. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7440 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fix [ 3527842 ]. milde2012-06-041-6/+12
| | | | | | | | | | | | | | | | Under Python 3, converted tests and tools are now stored in the ``test3/`` and ``tools3/`` sub-directories and not installed in the PYTHONPATH. In order to make this work: - Make tests independent from the location of the ``test/`` directory. - Use converted sources from the ``build/`` directory for tests under Python 3. Remove functional/tests/stylesheet_path_html4css1.py made redunant by functional/tests/math_output_html.py. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7437 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* python 2.3 alias unittest.TestCase.assertTrue (possibly reverted on next ↵grubert2012-05-011-0/+4
| | | | | | release) git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7400 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Replace deprecated aliases for assert methods with correct names.milde2012-02-031-7/+7
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7337 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Cleanup: Use True/False for boolean valuesmilde2012-01-191-18/+18
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7320 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* fixed issue with line endings causing test suite failures with snapshot ↵goodger2010-07-211-0/+5
| | | | | | downloads (fixes SF bug 3015675) git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@6380 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* fix testing under py3kmilde2010-05-071-2/+2
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@6320 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* One more cleanup as we require Python 2.3 now.milde2009-10-091-2/+2
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@6159 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Convert docutils to Python 3 (at least so that it runs the test suite.)gbrandl2009-04-011-13/+35
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@5889 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Prepare for python 3.0: minimize "types" module where possible (gbrandl).grubert2008-11-301-6/+5
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@5738 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Merged abolish-userstring-haskey r5609:5616 to trunk.strank2008-07-281-1/+1
| | | | | | Backwards compatible changes for easier transition to py3.0. git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@5618 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* undo accidental commit to trunkstrank2008-07-231-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@5608 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Replace all has_key with the in operator.strank2008-07-231-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@5607 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* reverted r5032; breaks Python 2.2 compatibilitywiemann2007-03-211-4/+4
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@5033 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* replaced 'raw_unicode_escape' with 'ascii', 'backslashreplace' so we don't ↵wiemann2007-03-211-4/+4
| | | | | | get latin1 strings git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@5032 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* removed Py21 compatibility codewiemann2006-11-131-17/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@4812 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* merged directives branch to trunk (r4375:4666);wiemann2006-07-121-15/+25
| | | | | | | | assert that block quote directives have content; improved test for block quote directives (test_block_quotes); deleted test_epigraphs_etc (replaced by test_block_quotes) git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@4667 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* use $Id$ instead of $Date$ and $Revision$;wiemann2006-05-211-4/+3
| | | | | | | | collapsed Author and Contact fields; use canonical email addresses for David and Felix; (I have reviewed the diff) git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@4564 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* allow sets of tests to have different settingsgoodger2006-04-011-1/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@4460 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Moved template functionality from the PEP/HTML writer to the HTML writer. ↵goodger2006-03-311-2/+8
| | | | | | Expanded the fragments available in the ``parts`` attribute (via publish_parts fn). git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@4456 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* some cleanup:wiemann2006-01-091-4/+0
| | | | | | | removed unnecessary tearDown method; removed unnecessary roles parameter to Inliner.__init__ git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@4258 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* moved clear_roles to DocutilsTestSupport.CustomTestCase so that it is used ↵wiemann2006-01-091-2/+15
| | | | | | globally git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@4254 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* added absolute path of test root to sys.path because Py21/Py22 insert thewiemann2005-12-151-1/+2
| | | | | | | | *relative* path "test" at the beginning of sys.path when running "python2.2 test/alltests.py", which breaks the imports due to chdir; replaced os.path.sep with os.sep for Py21/Py22 compatibility git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@4220 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* path fixesgoodger2005-12-151-0/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@4217 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* added path for extra modules (roman, optparse, textwrap)goodger2005-12-141-0/+1
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@4211 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* set sys.path to pick up the right Docutilsgoodger2005-12-031-3/+4
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@4131 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* removed references to default.css;wiemann2005-10-111-4/+0
| | | | | | to-do: update PEP writer (-> pep.css) and then docs/user/tools.txt git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@3940 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Added support for specifying runtime settings at the suite levelgoodger2005-09-151-20/+35
| | | | git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@3879 929543f6-e4f2-0310-98a6-ba3bd3dd1d04