diff options
| author | Ben Murdoch <benm@google.com> | 2011-05-05 14:36:32 +0100 | 
|---|---|---|
| committer | Ben Murdoch <benm@google.com> | 2011-05-10 15:38:30 +0100 | 
| commit | f05b935882198ccf7d81675736e3aeb089c5113a (patch) | |
| tree | 4ea0ca838d9ef1b15cf17ddb3928efb427c7e5a1 /Tools/Scripts/test-webkit-scripts | |
| parent | 60fbdcc62bced8db2cb1fd233cc4d1e4ea17db1b (diff) | |
| download | external_webkit-f05b935882198ccf7d81675736e3aeb089c5113a.zip external_webkit-f05b935882198ccf7d81675736e3aeb089c5113a.tar.gz external_webkit-f05b935882198ccf7d81675736e3aeb089c5113a.tar.bz2  | |
Merge WebKit at r74534: Initial merge by git.
Change-Id: I6ccd1154fa1b19c2ec2a66878eb675738735f1eb
Diffstat (limited to 'Tools/Scripts/test-webkit-scripts')
| -rwxr-xr-x | Tools/Scripts/test-webkit-scripts | 85 | 
1 files changed, 85 insertions, 0 deletions
diff --git a/Tools/Scripts/test-webkit-scripts b/Tools/Scripts/test-webkit-scripts new file mode 100755 index 0000000..781e8ce --- /dev/null +++ b/Tools/Scripts/test-webkit-scripts @@ -0,0 +1,85 @@ +#!/usr/bin/python +# +# Copyright (C) 2009, 2010 Chris Jerdonek (chris.jerdonek@gmail.com) +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +#     * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +#     * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +#     * Neither the name of Apple Computer, Inc. ("Apple") nor the names of +# its contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Run unit tests of WebKit's Perl and Python scripts.""" + +# The docstring above is passed as the "description" to the OptionParser +# used in this script's __main__ block. +# +# For the command options supported by this script, see the code below +# that instantiates the OptionParser class, or else pass --help +# while running this script (since argument help is auto-generated). + +import os +import subprocess +import sys +from optparse import OptionParser + +class ScriptsTester(object): + +    """Supports running unit tests of WebKit scripts.""" + +    def __init__(self, scripts_directory): +        self.scripts_directory = scripts_directory + +    def script_path(self, script_file_name): +        """Return an absolute path to the given script.""" +        return os.path.join(self.scripts_directory, script_file_name) + +    def run_test_script(self, script_title, script_path, args=None): +        """Run the given test script.""" +        print('Testing %s:' % script_title) +        call_args = [script_path] +        if args: +            call_args.extend(args) +        subprocess.call(call_args) +        print(70 * "*") # dividing line + +    def main(self): +        parser = OptionParser(description=__doc__) +        parser.add_option('-a', '--all', dest='all', action='store_true', +                          default=False, help='run all available tests, ' +                          'including those suppressed by default') +        (options, args) = parser.parse_args() + +        self.run_test_script('Perl scripts', self.script_path('test-webkitperl')) +        self.run_test_script('Python scripts', self.script_path('test-webkitpy'), +                             ['--all'] if options.all else None) + +        # FIXME: Display a cumulative indication of success or failure. +        #        In addition, call sys.exit() with 0 or 1 depending on that +        #        cumulative success or failure. +        print('Note: Perl and Python results appear separately above.') + + +if __name__ == '__main__': +    # The scripts directory is the directory containing this file. +    tester = ScriptsTester(os.path.dirname(__file__)) +    tester.main()  | 
