1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-07 18:30:34 +00:00
pdf2htmlEX/test/README.md
Lu Wang 757810f170 travis debug
Update README.md

track travis branch on CI

install ttfautohint; run ctest with output-on-failure

check more c++11 features

use local browser to test

install selenium through pip in travis

refactor tests

use html instead of png as reference
2014-11-18 13:17:22 +08:00

858 B

Dependencies

  • python2 and packages
    • Python Imaging Library
    • Selenium
    • unittest
  • Firefox

Usage

  • Run all tests:
    • ./test.py
  • Run selected test suites:
    • ./test.py test_local_browser
  • Run selected test case:
    • `./test.py test_basic_text
  • Environment variables:
    • set P2H_TEST_SAVE_TMP=1 to keep the temporary files
    • set P2H_TEST_GEN=1 to generate new reference images instead of comparing with old ones

Guidelines for test cases

  • Make sure you have the proper copyrights.
  • Using meaningful file names, a description of the file, or issueXXX.pdf.
  • Make each test case minimal:
    • One page only, unless the test case is about multiple pages.
    • Grayscale only, unless the test case is about colors.
    • Remove unnecessary elements.
  • [Optional] Include the source files that the PDF file is generated from.