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

Side by Side Diff: sdk/lib/_internal/pub/test/install/unknown_source_test.dart

Issue 15347004: Gracefully handle pubspecs with dependencies using unknown sources. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Handle bad sources in dev deps. Created 7 years, 7 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
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS d.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 d.file.
4
5 library pub_tests;
6
7 import 'dart:io';
8
9 import '../descriptor.dart' as d;
10 import '../test_pub.dart';
11
12 main() {
13 initConfig();
14 integration('fails gracefully on a dependency from an unknown source', () {
15 d.appDir([{"bad": "foo"}]).create();
16
17 schedulePub(args: ['install'],
18 error: new RegExp("Package 'myapp' depends on 'foo' from unknown "
19 "source 'bad'.\$"),
20 exitCode: 1);
21 });
22
23 integration('fails gracefully on transitive dependency from an unknown '
24 'source', () {
25 d.dir('foo', [
26 d.libDir('foo', 'foo 0.0.1'),
27 d.libPubspec('foo', '0.0.1', deps: [{"bad": "bar"}])
28 ]).create();
29
30 d.appDir([{"path": "../foo"}]).create();
31
32 schedulePub(args: ['install'],
33 error: new RegExp("Package 'foo' depends on 'bar' from unknown "
34 "source 'bad'.\$"),
35 exitCode: 1);
36 });
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698