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

Side by Side Diff: sdk/lib/_internal/pub/test/hosted/offline_test.dart

Issue 114193010: Show the dependender(s) for missing packages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 7 years 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 '../descriptor.dart' as d; 7 import '../descriptor.dart' as d;
8 import '../test_pub.dart'; 8 import '../test_pub.dart';
9 9
10 main() { 10 main() {
(...skipping 28 matching lines...) Expand all
39 }).validate(); 39 }).validate();
40 }); 40 });
41 41
42 integration('fails gracefully if a dependency is not cached', () { 42 integration('fails gracefully if a dependency is not cached', () {
43 // Run the server so that we know what URL to use in the system cache. 43 // Run the server so that we know what URL to use in the system cache.
44 servePackages([]); 44 servePackages([]);
45 45
46 d.appDir({"foo": "any"}).create(); 46 d.appDir({"foo": "any"}).create();
47 47
48 pubCommand(command, args: ['--offline'], 48 pubCommand(command, args: ['--offline'],
49 error: 'Could not find package "foo" in cache.'); 49 error: "Could not find package foo in cache.");
50 }); 50 });
51 51
52 integration('fails gracefully no cached versions match', () { 52 integration('fails gracefully no cached versions match', () {
53 // Run the server so that we know what URL to use in the system cache. 53 // Run the server so that we know what URL to use in the system cache.
54 servePackages([]); 54 servePackages([]);
55 55
56 d.cacheDir({ 56 d.cacheDir({
57 "foo": ["1.2.2", "1.2.3"] 57 "foo": ["1.2.2", "1.2.3"]
58 }, includePubspecs: true).create(); 58 }, includePubspecs: true).create();
59 59
60 d.appDir({"foo": ">2.0.0"}).create(); 60 d.appDir({"foo": ">2.0.0"}).create();
61 61
62 pubCommand(command, args: ['--offline'], error: 62 pubCommand(command, args: ['--offline'], error:
63 "Package 'foo' has no versions that match >2.0.0 derived from:\n" 63 "Package foo has no versions that match >2.0.0 derived from:\n"
64 "- 'myapp' depends on version >2.0.0"); 64 "- myapp depends on version >2.0.0");
65 }); 65 });
66 }); 66 });
67 } 67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698