
Instead of leaving test early if they can not run, use the pytest.mark.skipif marked to tell the test system not to even run the test. This also adds to the stats, because skipped tests are counted differently. Thus making it obvious, that some tests did not run, because of any reason.
40 lines
1.5 KiB
Python
40 lines
1.5 KiB
Python
# GNU MediaGoblin -- federated, autonomous media hosting
|
|
# Copyright (C) 2013 MediaGoblin contributors. See AUTHORS.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import tempfile
|
|
import shutil
|
|
import os
|
|
import pytest
|
|
|
|
from mediagoblin.media_types.pdf.processing import (
|
|
pdf_info, check_prerequisites, create_pdf_thumb)
|
|
|
|
GOOD='mediagoblin/tests/test_submission/good.pdf'
|
|
|
|
@pytest.mark.skipif("not check_prerequisites()")
|
|
def test_pdf():
|
|
good_dict = {'pdf_version_major': 1, 'pdf_title': '',
|
|
'pdf_page_size_width': 612, 'pdf_author': '',
|
|
'pdf_keywords': '', 'pdf_pages': 10,
|
|
'pdf_producer': 'dvips + GNU Ghostscript 7.05',
|
|
'pdf_version_minor': 3,
|
|
'pdf_creator': 'LaTeX with hyperref package',
|
|
'pdf_page_size_height': 792}
|
|
assert pdf_info(GOOD) == good_dict
|
|
temp_dir = tempfile.mkdtemp()
|
|
create_pdf_thumb(GOOD, os.path.join(temp_dir, 'good_256_256.png'), 256, 256)
|
|
shutil.rmtree(temp_dir)
|