Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / closure_linter / closure_linter / full_test.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2007 The Closure Linter Authors. All Rights Reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #      http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS-IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 """Full regression-type (Medium) tests for gjslint.
18
19 Tests every error that can be thrown by gjslint.  Based heavily on
20 devtools/javascript/gpylint/full_test.py
21 """
22
23 __author__ = ('robbyw@google.com (Robert Walker)',
24               'ajp@google.com (Andy Perelson)')
25
26 import os
27 import sys
28 import unittest
29
30 import gflags as flags
31 import unittest as googletest
32
33 from closure_linter import error_check
34 from closure_linter import errors
35 from closure_linter import runner
36 from closure_linter.common import filetestcase
37
38 _RESOURCE_PREFIX = 'closure_linter/testdata'
39
40 flags.FLAGS.strict = True
41 flags.FLAGS.custom_jsdoc_tags = ('customtag', 'requires')
42 flags.FLAGS.closurized_namespaces = ('goog', 'dummy')
43 flags.FLAGS.limited_doc_files = ('externs.js', 'dummy.js',
44                                  'limited_doc_checks.js')
45 flags.FLAGS.jslint_error = error_check.Rule.ALL
46
47 # List of files under testdata to test.
48 # We need to list files explicitly since pyglib can't list directories.
49 # TODO(user): Figure out how to list the directory.
50 _TEST_FILES = [
51     'all_js_wrapped.js',
52     'blank_lines.js',
53     'ends_with_block.js',
54     'empty_file.js',
55     'externs.js',
56     'externs_jsdoc.js',
57     'goog_scope.js',
58     'html_parse_error.html',
59     'indentation.js',
60     'interface.js',
61     'jsdoc.js',
62     'limited_doc_checks.js',
63     'minimal.js',
64     'other.js',
65     'provide_blank.js',
66     'provide_extra.js',
67     'provide_missing.js',
68     'require_all_caps.js',
69     'require_blank.js',
70     'require_extra.js',
71     'require_function.js',
72     'require_function_missing.js',
73     'require_function_through_both.js',
74     'require_function_through_namespace.js',
75     'require_interface.js',
76     'require_interface_base.js',
77     'require_lower_case.js',
78     'require_missing.js',
79     'require_numeric.js',
80     'require_provide_blank.js',
81     'require_provide_missing.js',
82     'require_provide_ok.js',
83     'semicolon_missing.js',
84     'simple.html',
85     'spaces.js',
86     'tokenizer.js',
87     'unparseable.js',
88     'unused_local_variables.js',
89     'unused_private_members.js',
90     'utf8.html',
91 ]
92
93
94 class GJsLintTestSuite(unittest.TestSuite):
95   """Test suite to run a GJsLintTest for each of several files.
96
97   If sys.argv[1:] is non-empty, it is interpreted as a list of filenames in
98   testdata to test. Otherwise, _TEST_FILES is used.
99   """
100
101   def __init__(self, tests=()):
102     unittest.TestSuite.__init__(self, tests)
103
104     argv = sys.argv and sys.argv[1:] or []
105     if argv:
106       test_files = argv
107     else:
108       test_files = _TEST_FILES
109     for test_file in test_files:
110       resource_path = os.path.join(_RESOURCE_PREFIX, test_file)
111       self.addTest(
112           filetestcase.AnnotatedFileTestCase(
113               resource_path,
114               runner.Run,
115               errors.ByName))
116
117 if __name__ == '__main__':
118   # Don't let main parse args; it happens in the TestSuite.
119   googletest.main(argv=sys.argv[0:1], defaultTest='GJsLintTestSuite')