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

Side by Side Diff: utils/tests/pub/pub_test.dart

Issue 10790079: Use a lockfile to persist Pub's installed version constellation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #library('pub_tests'); 5 #library('pub_tests');
6 6
7 #import('dart:io'); 7 #import('dart:io');
8 8
9 #import('test_pub.dart'); 9 #import('test_pub.dart');
10 #import('../../../lib/unittest/unittest.dart'); 10 #import('../../../lib/unittest/unittest.dart');
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 ]).scheduleValidate(); 247 ]).scheduleValidate();
248 248
249 dir(packagesPath, [ 249 dir(packagesPath, [
250 dir('foo', [ 250 dir('foo', [
251 file('foo.dart', 'main() => "foo";') 251 file('foo.dart', 'main() => "foo";')
252 ]) 252 ])
253 ]).scheduleValidate(); 253 ]).scheduleValidate();
254 254
255 // TODO(nweiz): remove this once we support pub update 255 // TODO(nweiz): remove this once we support pub update
256 dir(packagesPath).scheduleDelete(); 256 dir(packagesPath).scheduleDelete();
257 file('$appPath/pubspec.lock', '').scheduleDelete();
257 258
258 git('foo.git', [ 259 git('foo.git', [
259 file('foo.dart', 'main() => "foo 2";') 260 file('foo.dart', 'main() => "foo 2";')
260 ]).scheduleCommit(); 261 ]).scheduleCommit();
261 262
262 schedulePub(args: ['install'], 263 schedulePub(args: ['install'],
263 output: const RegExp(@"Dependencies installed!$")); 264 output: const RegExp(@"Dependencies installed!$"));
264 265
265 // When we download a new version of the git package, we should re-use the 266 // When we download a new version of the git package, we should re-use the
266 // git/cache directory but create a new git/ directory. 267 // git/cache directory but create a new git/ directory.
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 file('bar.dart', 'main() => print("bar 2.3.4");') 576 file('bar.dart', 'main() => print("bar 2.3.4");')
576 ]), 577 ]),
577 dir('baz', [ 578 dir('baz', [
578 file('pubspec.yaml', '{name: baz, version: 2.0.4}'), 579 file('pubspec.yaml', '{name: baz, version: 2.0.4}'),
579 file('baz.dart', 'main() => print("baz 2.0.4");') 580 file('baz.dart', 'main() => print("baz 2.0.4");')
580 ]) 581 ])
581 ]).scheduleValidate(); 582 ]).scheduleValidate();
582 583
583 run(); 584 run();
584 }); 585 });
586
587 test('keeps a Git package locked to the version in the lockfile', () {
588 ensureGit();
589
590 git('foo.git', [
591 file('foo.dart', 'main() => "foo";')
592 ]).scheduleCreate();
593
594 dir(appPath, [
595 file('pubspec.yaml', '''
596 dependencies:
597 foo:
598 git: ../foo.git
599 ''')
600 ]).scheduleCreate();
601
602 // This install should lock the foo.git dependency to the current revision.
603 schedulePub(args: ['install'],
604 output: const RegExp(@"Dependencies installed!$"));
605
606 dir(packagesPath, [
607 dir('foo', [
608 file('foo.dart', 'main() => "foo";')
609 ])
610 ]).scheduleValidate();
611
612 // Delete the packages path to simulate a new checkout of the application.
613 dir(packagesPath).scheduleDelete();
614
615 git('foo.git', [
616 file('foo.dart', 'main() => "foo 2";')
617 ]).scheduleCommit();
618
619 // This install shouldn't update the foo.git dependency due to the lockfile.
620 schedulePub(args: ['install'],
621 output: const RegExp(@"Dependencies installed!$"));
622
623 dir(packagesPath, [
624 dir('foo', [
625 file('foo.dart', 'main() => "foo";')
626 ])
627 ]).scheduleValidate();
628
629 run();
630 });
631
632 test('updates a locked Git package with a new incompatible constraint', () {
633 ensureGit();
634
635 git('foo.git', [
636 file('foo.dart', 'main() => "foo";')
637 ]).scheduleCreate();
638
639 dir(appPath, [
640 file('pubspec.yaml', '''
641 dependencies:
642 foo:
643 git: ../foo.git
644 ''')
645 ]).scheduleCreate();
646
647 schedulePub(args: ['install'],
648 output: const RegExp(@"Dependencies installed!$"));
649
650 dir(packagesPath, [
651 dir('foo', [
652 file('foo.dart', 'main() => "foo";')
653 ])
654 ]).scheduleValidate();
655
656 git('foo.git', [
657 file('foo.dart', 'main() => "foo 1.0.0";'),
658 file('pubspec.yaml', 'version: 1.0.0')
659 ]).scheduleCommit();
660
661 dir(appPath, [
662 file('pubspec.yaml', '''
663 dependencies:
664 foo:
665 git: ../foo.git
666 version: ">=1.0.0"
667 ''')
668 ]).scheduleCreate();
669
670 schedulePub(args: ['install'],
671 output: const RegExp(@"Dependencies installed!$"));
672
673 dir(packagesPath, [
674 dir('foo', [
675 file('foo.dart', 'main() => "foo 1.0.0";')
676 ])
677 ]).scheduleValidate();
678
679 run();
680 });
681
682 test("doesn't update a locked Git package with a new compatible "
683 "constraint", () {
684 ensureGit();
685
686 git('foo.git', [
687 file('foo.dart', 'main() => "foo 1.0.0";'),
688 file('pubspec.yaml', 'version: 1.0.0')
689 ]).scheduleCreate();
690
691 dir(appPath, [
692 file('pubspec.yaml', '''
693 dependencies:
694 foo:
695 git: ../foo.git
696 ''')
697 ]).scheduleCreate();
698
699 schedulePub(args: ['install'],
700 output: const RegExp(@"Dependencies installed!$"));
701
702 dir(packagesPath, [
703 dir('foo', [
704 file('foo.dart', 'main() => "foo 1.0.0";')
705 ])
706 ]).scheduleValidate();
707
708 git('foo.git', [
709 file('foo.dart', 'main() => "foo 1.0.1";'),
710 file('pubspec.yaml', 'version: 1.0.1')
711 ]).scheduleCommit();
712
713 dir(appPath, [
714 file('pubspec.yaml', '''
715 dependencies:
716 foo:
717 git: ../foo.git
718 version: ">=1.0.0"
719 ''')
720 ]).scheduleCreate();
721
722 schedulePub(args: ['install'],
723 output: const RegExp(@"Dependencies installed!$"));
724
725 dir(packagesPath, [
726 dir('foo', [
727 file('foo.dart', 'main() => "foo 1.0.0";')
728 ])
729 ]).scheduleValidate();
730
731 run();
732 });
733
734 test('keeps a pub server package locked to the version in the lockfile', () {
735 servePackages("localhost", 3123, ['{name: foo, version: 1.0.0}']);
736
737 dir(appPath, [
738 file('pubspec.yaml', '''
739 dependencies:
740 foo:
741 repo: {name: foo, url: http://localhost:3123}
742 ''')
743 ]).scheduleCreate();
744
745 // This install should lock the foo dependency to version 1.0.0.
746 schedulePub(args: ['install'],
747 output: const RegExp(@"Dependencies installed!$"));
748
749 dir(packagesPath, [
750 dir('foo', [
751 file('foo.dart', 'main() => print("foo 1.0.0");')
752 ])
753 ]).scheduleValidate();
754
755 // Delete the packages path to simulate a new checkout of the application.
756 dir(packagesPath).scheduleDelete();
757
758 // Start serving a newer package as well.
759 servePackages("localhost", 3123, [
760 '{name: foo, version: 1.0.0}',
761 '{name: foo, version: 1.0.1}'
762 ]);
763
764 // This install shouldn't update the foo dependency due to the lockfile.
765 schedulePub(args: ['install'],
766 output: const RegExp(@"Dependencies installed!$"));
767
768 dir(packagesPath, [
769 dir('foo', [
770 file('foo.dart', 'main() => print("foo 1.0.0");')
771 ])
772 ]).scheduleValidate();
773
774 run();
775 });
776
777 test('updates a locked pub server package with a new incompatible '
778 'constraint', () {
779 servePackages("localhost", 3123, ['{name: foo, version: 1.0.0}']);
780
781 dir(appPath, [
782 file('pubspec.yaml', '''
783 dependencies:
784 foo:
785 repo: {name: foo, url: http://localhost:3123}
786 ''')
787 ]).scheduleCreate();
788
789 schedulePub(args: ['install'],
790 output: const RegExp(@"Dependencies installed!$"));
791
792 dir(packagesPath, [
793 dir('foo', [
794 file('foo.dart', 'main() => print("foo 1.0.0");')
795 ])
796 ]).scheduleValidate();
797
798 servePackages("localhost", 3123, [
799 '{name: foo, version: 1.0.0}',
800 '{name: foo, version: 1.0.1}'
801 ]);
802
803 dir(appPath, [
804 file('pubspec.yaml', '''
805 dependencies:
806 foo:
807 repo: {name: foo, url: http://localhost:3123}
808 version: ">1.0.0"
809 ''')
810 ]).scheduleCreate();
811
812 schedulePub(args: ['install'],
813 output: const RegExp(@"Dependencies installed!$"));
814
815 dir(packagesPath, [
816 dir('foo', [
817 file('foo.dart', 'main() => print("foo 1.0.1");')
818 ])
819 ]).scheduleValidate();
820
821 run();
822 });
823
824 test("doesn't update a locked pub server package with a new compatible "
825 "constraint", () {
826 servePackages("localhost", 3123, ['{name: foo, version: 1.0.0}']);
827
828 dir(appPath, [
829 file('pubspec.yaml', '''
830 dependencies:
831 foo:
832 repo: {name: foo, url: http://localhost:3123}
833 ''')
834 ]).scheduleCreate();
835
836 schedulePub(args: ['install'],
837 output: const RegExp(@"Dependencies installed!$"));
838
839 dir(packagesPath, [
840 dir('foo', [
841 file('foo.dart', 'main() => print("foo 1.0.0");')
842 ])
843 ]).scheduleValidate();
844
845 servePackages("localhost", 3123, [
846 '{name: foo, version: 1.0.0}',
847 '{name: foo, version: 1.0.1}'
848 ]);
849
850 dir(appPath, [
851 file('pubspec.yaml', '''
852 dependencies:
853 foo:
854 repo: {name: foo, url: http://localhost:3123}
855 version: ">=1.0.0"
856 ''')
857 ]).scheduleCreate();
858
859 schedulePub(args: ['install'],
860 output: const RegExp(@"Dependencies installed!$"));
861
862 dir(packagesPath, [
863 dir('foo', [
864 file('foo.dart', 'main() => print("foo 1.0.0");')
865 ])
866 ]).scheduleValidate();
867
868 run();
869 });
585 } 870 }
586 871
587 versionCommand() { 872 versionCommand() {
588 test('displays the current version', () => 873 test('displays the current version', () =>
589 runPub(args: ['version'], output: VERSION_STRING)); 874 runPub(args: ['version'], output: VERSION_STRING));
590 } 875 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698