Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: tests/gclient_test.py

Issue 331373009: Add recurselist DEPS var setting. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« gclient.py ('K') | « gclient.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Unit tests for gclient.py. 6 """Unit tests for gclient.py.
7 7
8 See gclient_smoketest.py for integration tests. 8 See gclient_smoketest.py for integration tests.
9 """ 9 """
10 10
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 self.assertEquals( 604 self.assertEquals(
605 [ 605 [
606 'svn://example.com/foo', 606 'svn://example.com/foo',
607 'svn://example.com/foo/baz', 607 'svn://example.com/foo/baz',
608 'svn://example.com/foo/src_unix', 608 'svn://example.com/foo/src_unix',
609 'svn://example.com/foo/unix', 609 'svn://example.com/foo/unix',
610 ], 610 ],
611 sorted(self._get_processed())) 611 sorted(self._get_processed()))
612 612
613 def testRecursionOverride(self): 613 def testRecursionOverride(self):
614 """Verifies gclient respects the recursion var syntax. 614 """Verifies gclient respects the |recursion| var syntax.
615 615
616 We check several things here: 616 We check several things here:
617 - recursion = 3 sets recursion on the foo dep to exactly 3 617 - |recursion| = 3 sets recursion on the foo dep to exactly 3
618 (we pull /fizz, but not /fuzz) 618 (we pull /fizz, but not /fuzz)
619 - pulling foo/bar at recursion level 1 (in .gclient) is overriden by 619 - pulling foo/bar at recursion level 1 (in .gclient) is overriden by
620 a later pull of foo/bar at recursion level 2 (in the dep tree) 620 a later pull of foo/bar at recursion level 2 (in the dep tree)
621 """ 621 """
622 write( 622 write(
623 '.gclient', 623 '.gclient',
624 'solutions = [\n' 624 'solutions = [\n'
625 ' { "name": "foo", "url": "svn://example.com/foo" },\n' 625 ' { "name": "foo", "url": "svn://example.com/foo" },\n'
626 ' { "name": "foo/bar", "url": "svn://example.com/bar" },\n' 626 ' { "name": "foo/bar", "url": "svn://example.com/bar" },\n'
627 ']') 627 ']')
(...skipping 25 matching lines...) Expand all
653 self.assertEquals( 653 self.assertEquals(
654 [ 654 [
655 'svn://example.com/foo', 655 'svn://example.com/foo',
656 'svn://example.com/bar', 656 'svn://example.com/bar',
657 'svn://example.com/foo/bar', 657 'svn://example.com/foo/bar',
658 'svn://example.com/foo/bar/baz', 658 'svn://example.com/foo/bar/baz',
659 'svn://example.com/foo/bar/baz/fizz', 659 'svn://example.com/foo/bar/baz/fizz',
660 ], 660 ],
661 self._get_processed()) 661 self._get_processed())
662 662
663 def testRecurselistOverride(self):
664 """Verifies gclient respects the |recurselist| var syntax.
665
666 This is what we mean to check here:
667 - |recurselist| = [...] on 2 levels means we pull exactly 3 deps
668 (up to /fizz, but not /fuzz)
669 - pulling foo/bar with no recursion (in .gclient) is overriden by
670 a later pull of foo/bar with recursion (in the dep tree)
671 - pulling foo/tar with no recursion (in .gclient) is no recursively
672 pulled (taz is left out)
673 """
674 write(
675 '.gclient',
676 'solutions = [\n'
677 ' { "name": "foo", "url": "svn://example.com/foo" },\n'
678 ' { "name": "foo/bar", "url": "svn://example.com/bar" },\n'
679 ' { "name": "foo/tar", "url": "svn://example.com/tar" },\n'
680 ']')
681 write(
682 os.path.join('foo', 'DEPS'),
683 'deps = {\n'
684 ' "bar": "/bar",\n'
685 '}\n'
686 'recurselist = ["bar"]')
687 write(
688 os.path.join('bar', 'DEPS'),
689 'deps = {\n'
690 ' "baz": "/baz",\n'
691 '}\n'
692 'recurselist = ["baz"]')
693 write(
694 os.path.join('baz', 'DEPS'),
695 'deps = {\n'
696 ' "fizz": "/fizz",\n'
697 '}')
698 write(
699 os.path.join('fizz', 'DEPS'),
700 'deps = {\n'
701 ' "fuzz": "/fuzz",\n'
702 '}')
703 write(
704 os.path.join('tar', 'DEPS'),
705 'deps = {\n'
706 ' "taz": "/taz",\n'
707 '}')
708
709 options, _ = gclient.OptionParser().parse_args([])
710 obj = gclient.GClient.LoadCurrentConfig(options)
711 obj.RunOnDeps('None', [])
712 self.assertEquals(
713 [
714 'svn://example.com/foo',
715 'svn://example.com/bar',
716 'svn://example.com/tar',
717 'svn://example.com/foo/bar',
718 'svn://example.com/foo/bar/baz',
719 'svn://example.com/foo/bar/baz/fizz',
720 ],
721 self._get_processed())
722
723 def testRecursionOverridesRecurselist(self):
724 """Verifies gclient respects |recursion| over |recurselist|.
725
726 |recursion| is set in a top-level DEPS file. That value is meant
727 to affect how many subdeps are parsed via recursion.
728
729 |recurselist| is set in each DEPS file to control whether or not
730 to recurse into the immediate next subdep.
731
732 This test verifies that if both syntaxes are mixed in a DEPS file,
733 we disable |recurselist| support and only obey |recursion|.
734
735 Since this setting is evaluated per DEPS file, recursed DEPS
736 files will each be re-evaluated according to the per DEPS rules.
737 So a DEPS that only contains |recurselist| will then override any
738 previous |recursion| setting.
739
740 For this test to work correctly, we need to use a DEPS chain that
741 only contains recursion controls in the top DEPS file.
742
743 In foo, |recursion| and |recurselist| are specified. When we see
744 |recursion|, we stop trying to use |recurselist|.
745
746 There are 2 constructions of DEPS here that are key to this test:
747
748 (1) In foo, if we used |recurselist| instead of |recursion|, we
749 would also pull in bar. Since bar's DEPS doesn't contain any
750 recursion statements, we would stop processing at bar.
751
752 (2) In fizz, if we used |recurselist| at all, we should pull in
753 fuzz.
754
755 We expect to keep going past bar (satisfying 1) and we don't
756 expect to pull in fuzz (satisfying 2).
757 """
758 write(
759 '.gclient',
760 'solutions = [\n'
761 ' { "name": "foo", "url": "svn://example.com/foo" },\n'
762 ' { "name": "foo/bar", "url": "svn://example.com/bar" },\n'
763 ']')
764 write(
765 os.path.join('foo', 'DEPS'),
766 'deps = {\n'
767 ' "bar": "/bar",\n'
768 '}\n'
769 'recursion = 3\n'
770 'recurselist = ["bar"]')
771 write(
772 os.path.join('bar', 'DEPS'),
773 'deps = {\n'
774 ' "baz": "/baz",\n'
775 '}')
776 write(
777 os.path.join('baz', 'DEPS'),
778 'deps = {\n'
779 ' "fizz": "/fizz",\n'
780 '}')
781 write(
782 os.path.join('fizz', 'DEPS'),
783 'deps = {\n'
784 ' "fuzz": "/fuzz",\n'
785 '}\n'
786 'recurselist = ["fuzz"]')
787 write(
788 os.path.join('fuzz', 'DEPS'),
789 'deps = {\n'
790 ' "tar": "/tar",\n'
791 '}')
792
793 options, _ = gclient.OptionParser().parse_args([])
794 obj = gclient.GClient.LoadCurrentConfig(options)
795 obj.RunOnDeps('None', [])
796 self.assertEquals(
797 [
798 'svn://example.com/foo',
799 'svn://example.com/bar',
800 'svn://example.com/foo/bar',
801 # Deps after this would have been skipped if we were obeying
802 # |recurselist|.
803 'svn://example.com/foo/bar/baz',
804 'svn://example.com/foo/bar/baz/fizz',
805 # And this dep would have been picked up if we were obeying
806 # |recurselist|.
807 # 'svn://example.com/foo/bar/baz/fuzz',
808 ],
809 self._get_processed())
810
663 811
664 if __name__ == '__main__': 812 if __name__ == '__main__':
665 sys.stdout = gclient_utils.MakeFileAutoFlush(sys.stdout) 813 sys.stdout = gclient_utils.MakeFileAutoFlush(sys.stdout)
666 sys.stdout = gclient_utils.MakeFileAnnotated(sys.stdout, include_zero=True) 814 sys.stdout = gclient_utils.MakeFileAnnotated(sys.stdout, include_zero=True)
667 sys.stderr = gclient_utils.MakeFileAutoFlush(sys.stderr) 815 sys.stderr = gclient_utils.MakeFileAutoFlush(sys.stderr)
668 sys.stderr = gclient_utils.MakeFileAnnotated(sys.stderr, include_zero=True) 816 sys.stderr = gclient_utils.MakeFileAnnotated(sys.stderr, include_zero=True)
669 logging.basicConfig( 817 logging.basicConfig(
670 level=[logging.ERROR, logging.WARNING, logging.INFO, logging.DEBUG][ 818 level=[logging.ERROR, logging.WARNING, logging.INFO, logging.DEBUG][
671 min(sys.argv.count('-v'), 3)], 819 min(sys.argv.count('-v'), 3)],
672 format='%(relativeCreated)4d %(levelname)5s %(module)13s(' 820 format='%(relativeCreated)4d %(levelname)5s %(module)13s('
673 '%(lineno)d) %(message)s') 821 '%(lineno)d) %(message)s')
674 unittest.main() 822 unittest.main()
OLDNEW
« gclient.py ('K') | « gclient.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698