blob: 74684efbda3395a99363a01d2f8c4e8061b6b083 [file] [log] [blame]
junov@chromium.org777442d2012-06-12 14:56:36 +00001'''
2Compares the rendererings of serialized SkPictures to expected images.
3
4Launch with --help to see more information.
5
6
7Copyright 2012 Google Inc.
8
9Use of this source code is governed by a BSD-style license that can be
10found in the LICENSE file.
11'''
12# common Python modules
13import os
14import optparse
15import sys
16import shutil
17import tempfile
18
keyar@chromium.orgd1dc9202012-07-09 18:32:08 +000019USAGE_STRING = 'Usage: %s input... expectedDir'
junov@chromium.org777442d2012-06-12 14:56:36 +000020HELP_STRING = '''
21
keyar@chromium.orgd1dc9202012-07-09 18:32:08 +000022Compares the renderings of serialized SkPicture files and directories specified
23by input with the images in expectedDir. Note, files in directoriers are
24expected to end with .skp.
junov@chromium.org777442d2012-06-12 14:56:36 +000025'''
26
27def RunCommand(command):
28 """Run a command.
29
30 @param command the command as a single string
31 """
32 print 'running command [%s]...' % command
33 os.system(command)
34
35
36def FindPathToProgram(program):
37 """Return path to an existing program binary, or raise an exception if we
38 cannot find one.
39
40 @param program the name of the program that is being looked for
41 """
42 trunk_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
43 os.pardir))
44 possible_paths = [os.path.join(trunk_path, 'out', 'Release', program),
45 os.path.join(trunk_path, 'out', 'Debug', program)]
46 for try_path in possible_paths:
47 if os.path.isfile(try_path):
48 return try_path
49 raise Exception('cannot find %s in paths %s; maybe you need to '
50 'build %s?' % (program, possible_paths, program))
51
52
keyar@chromium.orgd1dc9202012-07-09 18:32:08 +000053def RenderImages(inputs, render_dir):
junov@chromium.org777442d2012-06-12 14:56:36 +000054 """Renders the serialized SkPictures.
55
56 Uses the render_pictures program to do the rendering.
57
keyar@chromium.orgd1dc9202012-07-09 18:32:08 +000058 @param inputs the location(s) to read the serlialized SkPictures
junov@chromium.org777442d2012-06-12 14:56:36 +000059 @param render_dir the location to write out the rendered images
60 """
61 renderer_path = FindPathToProgram('render_pictures')
keyar@chromium.orgd1dc9202012-07-09 18:32:08 +000062 inputs_as_string = " ".join(inputs)
63 RunCommand('%s %s %s' % (renderer_path, inputs_as_string, render_dir))
junov@chromium.org777442d2012-06-12 14:56:36 +000064
65
66def DiffImages(expected_dir, comparison_dir, diff_dir):
67 """Diffs the rendered SkPicture images with the baseline images.
68
69 Uses the skdiff program to do the diffing.
70
71 @param expected_dir the location of the baseline images.
72 @param comparison_dir the location of the images to comapre with the
73 baseline
74 @param diff_dir the location to write out the diff results
75 """
76 skdiff_path = FindPathToProgram('skdiff')
keyar@chromium.orga6318192012-07-09 21:01:50 +000077 RunCommand('%s %s %s %s %s' %
78 (skdiff_path, expected_dir, comparison_dir, diff_dir,
79 '--noprintdirs'))
junov@chromium.org777442d2012-06-12 14:56:36 +000080
81
82def Cleanup(options, render_dir, diff_dir):
83 """Deletes any temporary folders and files created.
84
85 @param options The OptionParser object that parsed if render_dir or diff_dir
86 was set
87 @param render_dir the directory where the rendered images were written
88 @param diff_dir the directory where the diff results were written
89 """
90 if (not options.render_dir):
91 if (os.path.isdir(render_dir)):
92 shutil.rmtree(render_dir)
93 if (not options.diff_dir):
94 if (os.path.isdir(diff_dir)):
95 shutil.rmtree(diff_dir)
96
97
98def Main(args):
99 """Allow other scripts to call this script with fake command-line args.
100
101 @param The commandline argument list
102 """
103 parser = optparse.OptionParser(USAGE_STRING % '%prog' + HELP_STRING)
104 parser.add_option('--render_dir', dest='render_dir',
105 help = ("specify the location to output the rendered files."
106 " Default is a temp directory."))
107 parser.add_option('--diff_dir', dest='diff_dir',
108 help = ("specify the location to output the diff files."
109 " Default is a temp directory."))
110
111 options, arguments = parser.parse_args(args)
112
keyar@chromium.orgd1dc9202012-07-09 18:32:08 +0000113 if (len(arguments) < 3):
114 print("Expected at least one input and one ouput folder.")
115 parser.print_help()
116 sys.exit(-1)
117
118 inputs = arguments[1:-1]
119 expected_dir = arguments[-1]
junov@chromium.org777442d2012-06-12 14:56:36 +0000120
121 if (options.render_dir):
122 render_dir = options.render_dir
123 else:
124 render_dir = tempfile.mkdtemp()
125
126 if (options.diff_dir):
127 diff_dir = options.diff_dir
128 else:
129 diff_dir = tempfile.mkdtemp()
130
131 try:
keyar@chromium.orgd1dc9202012-07-09 18:32:08 +0000132 RenderImages(inputs, render_dir)
junov@chromium.org777442d2012-06-12 14:56:36 +0000133 DiffImages(expected_dir, render_dir, diff_dir)
134 finally:
135 Cleanup(options, render_dir, diff_dir)
136
137if __name__ == '__main__':
138 Main(sys.argv)