Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: testing/tools/pngdiffer.py

Issue 1062163003: Merge to XFA: testing utility combo patch (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « testing/tools/common.py ('k') | testing/tools/run_corpus_tests.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # Copyright 2015 The PDFium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 import os
7 import subprocess
8 import sys
9
10 class PNGDiffer():
11 ACTUAL_TEMPLATE = '.pdf.%d.png'
12 EXPECTED_TEMPLATE = '_expected' + ACTUAL_TEMPLATE
13 PLATFORM_EXPECTED_TEMPLATE = '_expected_%s' + ACTUAL_TEMPLATE
14
15 def __init__(self, finder):
16 self.pdfium_diff_path = finder.ExecutablePath('pdfium_diff')
17 self.os_name = finder.os_name
18
19 def HasDifferences(self, input_filename, source_dir, working_dir):
20 input_root, _ = os.path.splitext(input_filename)
21 actual_path_template = os.path.join(
22 working_dir, input_root + self.ACTUAL_TEMPLATE)
23 expected_path_template = os.path.join(
24 source_dir, input_root + self.EXPECTED_TEMPLATE)
25 platform_expected_path_template = os.path.join(
26 source_dir, input_root + self.PLATFORM_EXPECTED_TEMPLATE)
27 i = 0
28 try:
29 while True:
30 actual_path = actual_path_template % i
31 expected_path = expected_path_template % i
32 platform_expected_path = (
33 platform_expected_path_template % (self.os_name, i))
34 if os.path.exists(platform_expected_path):
35 expected_path = platform_expected_path
36 elif not os.path.exists(expected_path):
37 if i == 0:
38 print "WARNING: no expected results files for " + input_filename
39 break
40 print "Checking " + actual_path
41 sys.stdout.flush()
42 subprocess.check_call(
43 [self.pdfium_diff_path, expected_path, actual_path])
44 i += 1
45 except subprocess.CalledProcessError as e:
46 print "FAILURE: " + input_filename + "; " + str(e)
47 return True
48 return False
OLDNEW
« no previous file with comments | « testing/tools/common.py ('k') | testing/tools/run_corpus_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698