Merge branch 'merge-python3-port'
[mediagoblin.git] / mediagoblin / tests / test_pdf.py
CommitLineData
a80ebf3b
AL
1# GNU MediaGoblin -- federated, autonomous media hosting
2# Copyright (C) 2013 MediaGoblin contributors. See AUTHORS.
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
cda3055b 17import collections
a80ebf3b
AL
18import tempfile
19import shutil
20import os
54b3113a 21import pytest
a80ebf3b
AL
22
23from mediagoblin.media_types.pdf.processing import (
24 pdf_info, check_prerequisites, create_pdf_thumb)
b698c94d 25from .resources import GOOD_PDF as GOOD
a80ebf3b 26
a80ebf3b 27
54b3113a 28@pytest.mark.skipif("not check_prerequisites()")
a80ebf3b 29def test_pdf():
cda3055b 30 good_dict = collections.OrderedDict({'pdf_version_major': 1, 'pdf_title': '',
a80ebf3b
AL
31 'pdf_page_size_width': 612, 'pdf_author': '',
32 'pdf_keywords': '', 'pdf_pages': 10,
33 'pdf_producer': 'dvips + GNU Ghostscript 7.05',
34 'pdf_version_minor': 3,
35 'pdf_creator': 'LaTeX with hyperref package',
cda3055b 36 'pdf_page_size_height': 792})
a80ebf3b
AL
37 assert pdf_info(GOOD) == good_dict
38 temp_dir = tempfile.mkdtemp()
39 create_pdf_thumb(GOOD, os.path.join(temp_dir, 'good_256_256.png'), 256, 256)
40 shutil.rmtree(temp_dir)