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

Side by Side Diff: sdk/lib/_internal/pub_generated/test/global/binstubs/name_collision_with_overwrite_test.dart

Issue 887223007: Revert "Use native async/await support in pub." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 import 'package:scheduled_test/scheduled_stream.dart'; 5 import 'package:scheduled_test/scheduled_stream.dart';
6 import 'package:scheduled_test/scheduled_test.dart'; 6 import 'package:scheduled_test/scheduled_test.dart';
7 7
8 import '../../descriptor.dart' as d; 8 import '../../descriptor.dart' as d;
9 import '../../test_pub.dart'; 9 import '../../test_pub.dart';
10 10
11 main() { 11 main() {
12 initConfig(); 12 initConfig();
13 integration("overwrites an existing binstub if --overwrite is passed", () { 13 integration("overwrites an existing binstub if --overwrite is passed", () {
14 d.dir("foo", [ 14 d.dir("foo", [d.pubspec({
15 d.pubspec({
16 "name": "foo", 15 "name": "foo",
17 "executables": { 16 "executables": {
18 "foo": "foo", 17 "foo": "foo",
19 "collide1": "foo", 18 "collide1": "foo",
20 "collide2": "foo" 19 "collide2": "foo"
21 } 20 }
22 }), 21 }),
23 d.dir("bin", [ 22 d.dir("bin", [d.file("foo.dart", "main() => print('ok');")])]).create( );
24 d.file("foo.dart", "main() => print('ok');")
25 ])
26 ]).create();
27 23
28 d.dir("bar", [ 24 d.dir("bar", [d.pubspec({
29 d.pubspec({
30 "name": "bar", 25 "name": "bar",
31 "executables": { 26 "executables": {
32 "bar": "bar", 27 "bar": "bar",
33 "collide1": "bar", 28 "collide1": "bar",
34 "collide2": "bar" 29 "collide2": "bar"
35 } 30 }
36 }), 31 }),
37 d.dir("bin", [ 32 d.dir("bin", [d.file("bar.dart", "main() => print('ok');")])]).create( );
38 d.file("bar.dart", "main() => print('ok');")
39 ])
40 ]).create();
41 33
42 schedulePub(args: ["global", "activate", "-spath", "../foo"]); 34 schedulePub(args: ["global", "activate", "-spath", "../foo"]);
43 35
44 var pub = startPub(args: [ 36 var pub =
45 "global", "activate", "-spath", "../bar", "--overwrite" 37 startPub(args: ["global", "activate", "-spath", "../bar", "--overwrite"] );
46 ]); 38 pub.stdout.expect(
47 pub.stdout.expect(consumeThrough( 39 consumeThrough("Installed executables bar, collide1 and collide2."));
48 "Installed executables bar, collide1 and collide2."));
49 pub.stderr.expect("Replaced collide1 previously installed from foo."); 40 pub.stderr.expect("Replaced collide1 previously installed from foo.");
50 pub.stderr.expect("Replaced collide2 previously installed from foo."); 41 pub.stderr.expect("Replaced collide2 previously installed from foo.");
51 pub.shouldExit(); 42 pub.shouldExit();
52 43
53 d.dir(cachePath, [ 44 d.dir(
54 d.dir("bin", [ 45 cachePath,
55 d.matcherFile(binStubName("foo"), contains("foo:foo")), 46 [
56 d.matcherFile(binStubName("bar"), contains("bar:bar")), 47 d.dir(
57 d.matcherFile(binStubName("collide1"), contains("bar:bar")), 48 "bin",
58 d.matcherFile(binStubName("collide2"), contains("bar:bar")) 49 [
59 ]) 50 d.matcherFile(binStubName("foo"), contains("foo:foo")),
60 ]).validate(); 51 d.matcherFile(binStubName("bar"), contains("bar:bar")),
52 d.matcherFile(binStubName("collide1"), contains("bar:bar")),
53 d.matcherFile(binStubName("collide2"), contains("bar:bar"))] )]).validate();
61 }); 54 });
62 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698