mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
45 lines
1.3 KiB
Python
Executable File
45 lines
1.3 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# Copyright 2018 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 collections
|
|
import unittest
|
|
|
|
import build_utils # pylint: disable=W0403
|
|
|
|
_DEPS = collections.OrderedDict()
|
|
_DEPS['a'] = []
|
|
_DEPS['b'] = []
|
|
_DEPS['c'] = ['a']
|
|
_DEPS['d'] = ['a']
|
|
_DEPS['e'] = ['f']
|
|
_DEPS['f'] = ['a', 'd']
|
|
_DEPS['g'] = []
|
|
_DEPS['h'] = ['d', 'b', 'f']
|
|
_DEPS['i'] = ['f']
|
|
|
|
|
|
class BuildUtilsTest(unittest.TestCase):
|
|
def testGetSortedTransitiveDependencies_all(self):
|
|
TOP = _DEPS.keys()
|
|
EXPECTED = ['a', 'b', 'c', 'd', 'f', 'e', 'g', 'h', 'i']
|
|
actual = build_utils.GetSortedTransitiveDependencies(TOP, _DEPS.get)
|
|
self.assertEqual(EXPECTED, actual)
|
|
|
|
def testGetSortedTransitiveDependencies_leaves(self):
|
|
TOP = ['c', 'e', 'g', 'h', 'i']
|
|
EXPECTED = ['a', 'c', 'd', 'f', 'e', 'g', 'b', 'h', 'i']
|
|
actual = build_utils.GetSortedTransitiveDependencies(TOP, _DEPS.get)
|
|
self.assertEqual(EXPECTED, actual)
|
|
|
|
def testGetSortedTransitiveDependencies_leavesReverse(self):
|
|
TOP = ['i', 'h', 'g', 'e', 'c']
|
|
EXPECTED = ['a', 'd', 'f', 'i', 'b', 'h', 'g', 'e', 'c']
|
|
actual = build_utils.GetSortedTransitiveDependencies(TOP, _DEPS.get)
|
|
self.assertEqual(EXPECTED, actual)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|