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

Side by Side Diff: sdk/lib/_internal/pub/test/get/git/check_out_and_upgrade_test.dart

Issue 1165473002: Start pulling pub from its own repo. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Code review changes Created 5 years, 6 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
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 library pub_tests;
6
7 import 'package:scheduled_test/scheduled_test.dart';
8
9 import '../../descriptor.dart' as d;
10 import '../../test_pub.dart';
11
12 main() {
13 initConfig();
14 integration('checks out and upgrades a package from Git', () {
15 ensureGit();
16
17 d.git('foo.git', [
18 d.libDir('foo'),
19 d.libPubspec('foo', '1.0.0')
20 ]).create();
21
22 d.appDir({"foo": {"git": "../foo.git"}}).create();
23
24 pubGet();
25
26 d.dir(cachePath, [
27 d.dir('git', [
28 d.dir('cache', [d.gitPackageRepoCacheDir('foo')]),
29 d.gitPackageRevisionCacheDir('foo')
30 ])
31 ]).validate();
32
33 d.dir(packagesPath, [
34 d.dir('foo', [
35 d.file('foo.dart', 'main() => "foo";')
36 ])
37 ]).validate();
38
39 d.git('foo.git', [
40 d.libDir('foo', 'foo 2'),
41 d.libPubspec('foo', '1.0.0')
42 ]).commit();
43
44 pubUpgrade(output: contains("Changed 1 dependency!"));
45
46 // When we download a new version of the git package, we should re-use the
47 // git/cache directory but create a new git/ directory.
48 d.dir(cachePath, [
49 d.dir('git', [
50 d.dir('cache', [d.gitPackageRepoCacheDir('foo')]),
51 d.gitPackageRevisionCacheDir('foo'),
52 d.gitPackageRevisionCacheDir('foo', 2)
53 ])
54 ]).validate();
55
56 d.dir(packagesPath, [
57 d.dir('foo', [
58 d.file('foo.dart', 'main() => "foo 2";')
59 ])
60 ]).validate();
61 });
62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698