1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
# encoding=UTF-8
# Copyright © 2015-2016 Jakub Wilk <jwilk@jwilk.net>
#
# This file is part of pdf2djvu.
#
# pdf2djvu is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# pdf2djvu 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
# General Public License for more details.
from tools import (
case,
assert_greater,
count_ppm_colors,
)
class test(case):
# Bug: https://github.com/jwilk/pdf2djvu/issues/115
# + introduced in 0.7.1 [a9440040faf697bc11370e8012ba586e88e4dca4]
# + introduced in 0.7.10 [da7cd2524b329a80581b939037f4d42801f3755d]
# + fixed in 0.9.3 [93f9032d99b75145a03ce64de9c3ae3e25314541]
def test(self):
self.pdf2djvu()
r = self.decode()
r.assert_(stdout=None)
r = self.decode(mode='foreground')
r.assert_(stdout=None)
colors = count_ppm_colors(r.stdout)
assert_greater(colors.get('\xFF\0\0', 0), 5000)
# vim:ts=4 sts=4 sw=4 et
|