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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#!/usr/bin/env python
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""This script is used by chrome_tests.gypi's js2webui action to maintain the
argument lists and to generate inlinable tests.
Usage:
python tools/gypv8sh.py -p product_dir path/to/javascript2webui.js
python tools/gypv8sh.py -t # print test_harnesses
python tools/gypv8sh.py -i # print inputs
python tools/gypv8sh.py -o # print outputs
"""
try:
import json
except ImportError:
import simplejson as json
import optparse
import os
import subprocess
import sys
# Please adjust the following to edit or add new javascript webui tests.
rules = [
[
'WebUIBrowserTestPass',
'test/data/webui/sample_pass.js',
'browser/ui/webui/web_ui_browsertest-inl.h',
],
]
def main ():
"""Run the program"""
# For options -t, -i, & -o, we print the "column" of the |rules|. We keep a
# set of indices to print in |print_rule_indices| and print them in sorted
# order if non-empty.
parser = optparse.OptionParser()
parser.set_usage(
"%prog [-v][-n] --product_dir PRODUCT_DIR -or- "
"%prog [-v][-n] (-i|-t|-o)")
parser.add_option('-v', '--verbose', action='store_true')
parser.add_option('-n', '--impotent', action='store_true',
help="don't execute; just print (as if verbose)")
parser.add_option(
'-p', '--product_dir',
help='for gyp to set the <(PRODUCT_DIR) for running v8_shell')
parser.add_option('-t', '--test_fixture', action='store_const', const=0,
dest='print_rule_index', help='print test_fixtures')
parser.add_option('-i', '--in', action='store_const', const=1,
dest='print_rule_index', help='print inputs')
parser.add_option('-o', '--out', action='store_const', const=2,
dest='print_rule_index', help='print outputs')
(opts, args) = parser.parse_args()
if (opts.print_rule_index != None):
for rule in rules:
print rule[opts.print_rule_index]
else:
if not opts.product_dir:
parser.error("--product_dir option is required")
v8_shell = os.path.join(opts.product_dir, 'v8_shell')
jsfilename = args[0]
for rule in rules:
arguments = [jsfilename, rule[0], rule[1], os.path.basename(rule[1])]
cmd = [v8_shell, '-e', "arguments=" + json.dumps(arguments), jsfilename]
if opts.verbose or opts.impotent:
print cmd
if not opts.impotent:
sys.exit(subprocess.call(cmd, stdout=open(rule[2],'w+')))
if __name__ == '__main__':
sys.exit(main())
|