~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Tools/Scripts/webkitpy/style/checkers/xcodeproj_unittest.py

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
#
 
3
# Copyright (C) 2011 Google Inc. All rights reserved.
 
4
#
 
5
# Redistribution and use in source and binary forms, with or without
 
6
# modification, are permitted provided that the following conditions
 
7
# are met:
 
8
# 1.  Redistributions of source code must retain the above copyright
 
9
#     notice, this list of conditions and the following disclaimer.
 
10
# 2.  Redistributions in binary form must reproduce the above copyright
 
11
#     notice, this list of conditions and the following disclaimer in the
 
12
#     documentation and/or other materials provided with the distribution.
 
13
#
 
14
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
15
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
16
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
17
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
18
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
19
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
20
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
21
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
22
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
23
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
24
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
25
 
 
26
"""Unit test for xcodeproj.py."""
 
27
 
 
28
import xcodeproj
 
29
import unittest
 
30
 
 
31
 
 
32
class TestErrorHandler(object):
 
33
    """Error handler for XcodeProjectFileChecker unittests"""
 
34
    def __init__(self, handler):
 
35
        self.handler = handler
 
36
 
 
37
    def turn_off_line_filtering(self):
 
38
        pass
 
39
 
 
40
    def __call__(self, line_number, category, confidence, message):
 
41
        self.handler(self, line_number, category, confidence, message)
 
42
        return True
 
43
 
 
44
 
 
45
class XcodeProjectFileCheckerTest(unittest.TestCase):
 
46
    """Tests XcodeProjectFileChecker class."""
 
47
 
 
48
    def assert_no_error(self, lines):
 
49
        def handler(error_handler, line_number, category, confidence, message):
 
50
            self.fail('Unexpected error: %d %s %d %s' % (line_number, category, confidence, message))
 
51
 
 
52
        error_handler = TestErrorHandler(handler)
 
53
        checker = xcodeproj.XcodeProjectFileChecker('', error_handler)
 
54
        checker.check(lines)
 
55
 
 
56
    def assert_error(self, lines, expected_message):
 
57
        self.had_error = False
 
58
 
 
59
        def handler(error_handler, line_number, category, confidence, message):
 
60
            self.assertEqual(expected_message, message)
 
61
            self.had_error = True
 
62
        error_handler = TestErrorHandler(handler)
 
63
        checker = xcodeproj.XcodeProjectFileChecker('', error_handler)
 
64
        checker.check(lines)
 
65
        self.assertTrue(self.had_error, '%s should have error: %s.' % (lines, expected_message))
 
66
 
 
67
    def test_detect_development_region(self):
 
68
        self.assert_no_error(['developmentRegion = English;'])
 
69
        self.assert_error([''], 'Missing "developmentRegion = English".')
 
70
        self.assert_error(['developmentRegion = Japanese;'],
 
71
                          'developmentRegion is not English.')
 
72
 
 
73
if __name__ == '__main__':
 
74
    unittest.main()