OLD | NEW |
(Empty) | |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import tempfile |
| 6 import unittest |
| 7 |
| 8 import md5_check |
| 9 |
| 10 |
| 11 class TestMd5Check(unittest.TestCase): |
| 12 def testCallAndRecordIfStale(self): |
| 13 input_strings = ['string1', 'string2'] |
| 14 input_file1 = tempfile.NamedTemporaryFile() |
| 15 input_file2 = tempfile.NamedTemporaryFile() |
| 16 file1_contents = 'input file 1' |
| 17 file2_contents = 'input file 2' |
| 18 input_file1.write(file1_contents) |
| 19 input_file1.flush() |
| 20 input_file2.write(file2_contents) |
| 21 input_file2.flush() |
| 22 input_files = [input_file1.name, input_file2.name] |
| 23 |
| 24 record_path = tempfile.NamedTemporaryFile(suffix='.stamp') |
| 25 |
| 26 def CheckCallAndRecord(should_call, message): |
| 27 self.called = False |
| 28 def MarkCalled(): |
| 29 self.called = True |
| 30 md5_check.CallAndRecordIfStale( |
| 31 MarkCalled, |
| 32 record_path=record_path.name, |
| 33 input_paths=input_files, |
| 34 input_strings=input_strings) |
| 35 self.failUnlessEqual(should_call, self.called, message) |
| 36 |
| 37 CheckCallAndRecord(True, 'should call when record doesn\'t exist') |
| 38 CheckCallAndRecord(False, 'should not call when nothing changed') |
| 39 |
| 40 input_file1.write('some more input') |
| 41 input_file1.flush() |
| 42 CheckCallAndRecord(True, 'changed input file should trigger call') |
| 43 |
| 44 input_files = input_files[::-1] |
| 45 CheckCallAndRecord(False, 'reordering of inputs shouldn\'t trigger call') |
| 46 |
| 47 input_files = input_files[:1] |
| 48 CheckCallAndRecord(True, 'removing file should trigger call') |
| 49 |
| 50 input_files.append(input_file2.name) |
| 51 CheckCallAndRecord(True, 'added input file should trigger call') |
| 52 |
| 53 input_strings[0] = input_strings[0] + ' a bit longer' |
| 54 CheckCallAndRecord(True, 'changed input string should trigger call') |
| 55 |
| 56 input_strings = input_strings[::-1] |
| 57 CheckCallAndRecord(True, 'reordering of string inputs should trigger call') |
| 58 |
| 59 input_strings = input_strings[:1] |
| 60 CheckCallAndRecord(True, 'removing a string should trigger call') |
| 61 |
| 62 input_strings.append('a brand new string') |
| 63 CheckCallAndRecord(True, 'added input string should trigger call') |
| 64 |
| 65 |
| 66 if __name__ == '__main__': |
| 67 unittest.main() |
OLD | NEW |