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
|
#!/usr/bin/env python
# Copyright 2016 The Chromium 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 unittest
from externs_checker import ExternsChecker
sys.path.append(
os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..', '..'))
from PRESUBMIT_test_mocks import MockInputApi, MockOutputApi, MockFile
class ExternsCheckerTest(unittest.TestCase):
API_PAIRS = {'a': '1', 'b': '2', 'c': '3'}
def _runChecks(self, files, exists=lambda f: True):
input_api = MockInputApi()
input_api.os_path.exists = exists
input_api.files = [MockFile(f, '') for f in files]
output_api = MockOutputApi()
checker = ExternsChecker(input_api, output_api, self.API_PAIRS)
return checker.RunChecks()
def testModifiedSourceWithoutModifiedExtern(self):
results = self._runChecks(['b', 'test', 'random'])
self.assertEquals(1, len(results))
self.assertEquals(1, len(results[0].items))
self.assertEquals('b', results[0].items[0])
self.assertEquals(
'To update the externs, run:\n'
' src/ $ python tools/json_schema_compiler/compiler.py b --root=. '
'--generator=externs > 2',
results[0].long_text)
def testModifiedSourceWithModifiedExtern(self):
results = self._runChecks(['b', '2', 'test', 'random'])
self.assertEquals(0, len(results))
def testModifiedMultipleSourcesWithNoModifiedExterns(self):
results = self._runChecks(['b', 'test', 'c', 'random'])
self.assertEquals(1, len(results))
self.assertEquals(2, len(results[0].items))
self.assertTrue('b' in results[0].items)
self.assertTrue('c' in results[0].items)
self.assertEquals(
'To update the externs, run:\n'
' src/ $ python tools/json_schema_compiler/compiler.py <source_file> '
'--root=. --generator=externs > <output_file>',
results[0].long_text)
def testModifiedMultipleSourcesWithOneModifiedExtern(self):
results = self._runChecks(['b', 'test', 'c', 'random', '2'])
self.assertEquals(1, len(results))
self.assertEquals(1, len(results[0].items))
self.assertEquals('c', results[0].items[0])
def testApiFileDoesNotExist(self):
exists = lambda f: f in ['a', 'b', 'c', '1', '2']
with self.assertRaises(OSError) as e:
self._runChecks(['a'], exists)
self.assertEqual('Path Not Found: 3', str(e.exception))
if __name__ == '__main__':
unittest.main()
|