OLD | NEW |
| (Empty) |
1 # Copyright (C) 2011 Google Inc. All rights reserved. | |
2 # | |
3 # Redistribution and use in source and binary forms, with or without | |
4 # modification, are permitted provided that the following conditions are | |
5 # met: | |
6 # | |
7 # * Redistributions of source code must retain the above copyright | |
8 # notice, this list of conditions and the following disclaimer. | |
9 # * Redistributions in binary form must reproduce the above | |
10 # copyright notice, this list of conditions and the following disclaimer | |
11 # in the documentation and/or other materials provided with the | |
12 # distribution. | |
13 # * Neither the name of Google Inc. nor the names of its | |
14 # contributors may be used to endorse or promote products derived from | |
15 # this software without specific prior written permission. | |
16 # | |
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
28 | |
29 | |
30 '''Unit tests for amountchangedpattern.py.''' | |
31 | |
32 | |
33 import re | |
34 import unittest2 as unittest | |
35 | |
36 | |
37 from webkitpy.common.watchlist.amountchangedpattern import AmountChangedPattern | |
38 | |
39 | |
40 class AmountChangedPatternTest(unittest.TestCase): | |
41 | |
42 # A quick note about the diff file structure. | |
43 # The first column indicated the old line number. | |
44 # The second column indicates the new line number. | |
45 # 0 in either column indicates it had no old or new line number. | |
46 _DIFF_FILE = ((0, 1, 'hi hi'), | |
47 (1, 0, 'bye hi'), | |
48 (2, 2, 'other hi'), | |
49 (3, 0, 'both'), | |
50 (0, 3, 'both'), | |
51 ) | |
52 | |
53 def run_amount_changed_pattern_match(self, pattern, index_for_zero_value): | |
54 return AmountChangedPattern(re.compile(pattern), index_for_zero_value).m
atch(None, self._DIFF_FILE) | |
55 | |
56 def test_added_lines(self): | |
57 self.assertTrue(self.run_amount_changed_pattern_match('hi', 0)) | |
58 self.assertTrue(self.run_amount_changed_pattern_match('hi hi', 0)) | |
59 self.assertFalse(self.run_amount_changed_pattern_match('other', 0)) | |
60 self.assertFalse(self.run_amount_changed_pattern_match('both', 0)) | |
61 self.assertFalse(self.run_amount_changed_pattern_match('bye', 0)) | |
62 self.assertFalse(self.run_amount_changed_pattern_match('MatchesNothing',
0)) | |
63 | |
64 def test_removed_lines(self): | |
65 self.assertFalse(self.run_amount_changed_pattern_match('hi', 1)) | |
66 self.assertFalse(self.run_amount_changed_pattern_match('hi hi', 1)) | |
67 self.assertFalse(self.run_amount_changed_pattern_match('other', 1)) | |
68 self.assertFalse(self.run_amount_changed_pattern_match('both', 1)) | |
69 self.assertTrue(self.run_amount_changed_pattern_match('bye', 1)) | |
70 self.assertFalse(self.run_amount_changed_pattern_match('MatchesNothing',
1)) | |
OLD | NEW |