From 40be505a7023925a65ec905865df3a5b42dd427d Mon Sep 17 00:00:00 2001 From: Henrique Nakashima Date: Wed, 10 Oct 2018 23:18:14 +0000 Subject: Use optipng to optimize expected .pngs when regenerating them. Bug: pdfium:1127 Change-Id: I5371ecf6f704761320a021fbee07a79839fb80b7 Reviewed-on: https://pdfium-review.googlesource.com/c/43810 Reviewed-by: Lei Zhang Commit-Queue: Henrique Nakashima --- testing/tools/pngdiffer.py | 9 +++++++++ testing/tools/test_runner.py | 5 +++++ 2 files changed, 14 insertions(+) (limited to 'testing/tools') diff --git a/testing/tools/pngdiffer.py b/testing/tools/pngdiffer.py index f40cc2596f..baed33be0c 100755 --- a/testing/tools/pngdiffer.py +++ b/testing/tools/pngdiffer.py @@ -3,6 +3,7 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. +import distutils.spawn import itertools import os import shutil @@ -15,6 +16,13 @@ class PNGDiffer(): self.pdfium_diff_path = finder.ExecutablePath('pdfium_diff') self.os_name = finder.os_name + def CheckMissingTools(self, regenerate_expected): + if (regenerate_expected and + self.os_name == 'linux' and + not distutils.spawn.find_executable('optipng')): + return 'Please install "optipng" to regenerate expected images.' + return None + def GetActualFiles(self, input_filename, source_dir, working_dir): actual_paths = [] path_templates = PathTemplates(input_filename, source_dir, working_dir) @@ -93,6 +101,7 @@ class PNGDiffer(): continue shutil.copyfile(actual_path, expected_path) + common.RunCommand(['optipng', expected_path]) ACTUAL_TEMPLATE = '.pdf.%d.png' diff --git a/testing/tools/test_runner.py b/testing/tools/test_runner.py index 43dc578a90..7dea24299a 100644 --- a/testing/tools/test_runner.py +++ b/testing/tools/test_runner.py @@ -256,6 +256,11 @@ class TestRunner: '--show-config']) self.test_suppressor = suppressor.Suppressor(finder, self.feature_string) self.image_differ = pngdiffer.PNGDiffer(finder) + error_message = self.image_differ.CheckMissingTools( + self.options.regenerate_expected) + if error_message: + print "FAILURE: %s" % error_message + return 1 self.gold_baseline = gold.GoldBaseline(self.options.gold_properties) -- cgit v1.2.3