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

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

Issue 16034002: Use helper methods for running pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Get rid of unnecessary RegExps in tests. 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
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 'package:pathos/path.dart' as path; 9 import 'package:pathos/path.dart' as path;
10 10
11 import '../descriptor.dart' as d; 11 import '../descriptor.dart' as d;
12 import '../test_pub.dart'; 12 import '../test_pub.dart';
13 13
14 main() { 14 main() {
15 initConfig(); 15 initConfig();
16 integration('replaces a broken "packages" symlink', () { 16 integration('replaces a broken "packages" symlink', () {
17 d.dir(appPath, [ 17 d.dir(appPath, [
18 d.appPubspec([]), 18 d.appPubspec([]),
19 d.libDir('foo'), 19 d.libDir('foo'),
20 d.dir("bin") 20 d.dir("bin")
21 ]).create(); 21 ]).create();
22 22
23 // Create a broken "packages" symlink in "bin". 23 // Create a broken "packages" symlink in "bin".
24 scheduleSymlink("nonexistent", path.join(appPath, "packages")); 24 scheduleSymlink("nonexistent", path.join(appPath, "packages"));
25 25
26 schedulePub(args: ['install'], 26 pubInstall();
27 output: new RegExp(r"Dependencies installed!$"));
28 27
29 d.dir(appPath, [ 28 d.dir(appPath, [
30 d.dir("bin", [ 29 d.dir("bin", [
31 d.dir("packages", [ 30 d.dir("packages", [
32 d.dir("myapp", [ 31 d.dir("myapp", [
33 d.file('foo.dart', 'main() => "foo";') 32 d.file('foo.dart', 'main() => "foo";')
34 ]) 33 ])
35 ]) 34 ])
36 ]) 35 ])
37 ]).validate(); 36 ]).validate();
38 }); 37 });
39 38
40 integration('replaces a broken secondary "packages" symlink', () { 39 integration('replaces a broken secondary "packages" symlink', () {
41 d.dir(appPath, [ 40 d.dir(appPath, [
42 d.appPubspec([]), 41 d.appPubspec([]),
43 d.libDir('foo'), 42 d.libDir('foo'),
44 d.dir("bin") 43 d.dir("bin")
45 ]).create(); 44 ]).create();
46 45
47 // Create a broken "packages" symlink in "bin". 46 // Create a broken "packages" symlink in "bin".
48 scheduleSymlink("nonexistent", path.join(appPath, "bin", "packages")); 47 scheduleSymlink("nonexistent", path.join(appPath, "bin", "packages"));
49 48
50 schedulePub(args: ['install'], 49 pubInstall();
51 output: new RegExp(r"Dependencies installed!$"));
52 50
53 d.dir(appPath, [ 51 d.dir(appPath, [
54 d.dir("bin", [ 52 d.dir("bin", [
55 d.dir("packages", [ 53 d.dir("packages", [
56 d.dir("myapp", [ 54 d.dir("myapp", [
57 d.file('foo.dart', 'main() => "foo";') 55 d.file('foo.dart', 'main() => "foo";')
58 ]) 56 ])
59 ]) 57 ])
60 ]) 58 ])
61 ]).validate(); 59 ]).validate();
62 }); 60 });
63 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698