1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
#!/usr/bin/env python3
# Copyright 2018 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
import sys
import tempfile
import unittest
# Configuring the path for the v8_presubmit module
TOOLS_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
sys.path.append(TOOLS_ROOT)
from v8_presubmit import FileContentsCache, CacheableSourceFileProcessor
class FakeCachedProcessor(CacheableSourceFileProcessor):
def __init__(self, cache_file_path):
super(FakeCachedProcessor, self).__init__(
use_cache=True, cache_file_path=cache_file_path, file_type='.test')
def GetProcessorWorker(self):
return object
def GetProcessorScript(self):
return "echo", []
def DetectUnformattedFiles(_, cmd, worker, files):
raise NotImplementedError
class FileContentsCacheTest(unittest.TestCase):
def setUp(self):
_, self.cache_file_path = tempfile.mkstemp()
cache = FileContentsCache(self.cache_file_path)
cache.Load()
def generate_file():
_, file_name = tempfile.mkstemp()
with open(file_name, "w") as f:
f.write(file_name)
return file_name
self.target_files = [generate_file() for _ in range(2)]
unchanged_files = cache.FilterUnchangedFiles(self.target_files)
self.assertEqual(len(unchanged_files), 2)
cache.Save()
def tearDown(self):
for file in [self.cache_file_path] + self.target_files:
os.remove(file)
def testCachesFiles(self):
cache = FileContentsCache(self.cache_file_path)
cache.Load()
changed_files = cache.FilterUnchangedFiles(self.target_files)
self.assertListEqual(changed_files, [])
modified_file = self.target_files[0]
with open(modified_file, "w") as f:
f.write("modification")
changed_files = cache.FilterUnchangedFiles(self.target_files)
self.assertListEqual(changed_files, [modified_file])
def testCacheableSourceFileProcessor(self):
class CachedProcessor(FakeCachedProcessor):
def DetectFilesToChange(_, files):
self.assertListEqual(files, [])
return []
cached_processor = CachedProcessor(cache_file_path=self.cache_file_path)
cached_processor.ProcessFiles(self.target_files)
def testCacheableSourceFileProcessorWithModifications(self):
modified_file = self.target_files[0]
with open(modified_file, "w") as f:
f.write("modification")
class CachedProcessor(FakeCachedProcessor):
def DetectFilesToChange(_, files):
self.assertListEqual(files, [modified_file])
return []
cached_processor = CachedProcessor(
cache_file_path=self.cache_file_path,
)
cached_processor.ProcessFiles(self.target_files)
if __name__ == '__main__':
unittest.main()
|