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

Side by Side Diff: test/cache/repair/handles_corrupted_binstub_test.dart

Issue 1556243002: Fix analyzer hints and warnings in test/. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Created 4 years, 11 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
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 library pub_tests; 5 library pub_tests;
6 6
7 import 'dart:io';
8
9 import 'package:scheduled_test/scheduled_test.dart'; 7 import 'package:scheduled_test/scheduled_test.dart';
10 8
11 import '../../descriptor.dart' as d; 9 import '../../descriptor.dart' as d;
12 import '../../test_pub.dart'; 10 import '../../test_pub.dart';
13 11
14 main() { 12 main() {
15 integration('handles a corrupted binstub script', () { 13 integration('handles a corrupted binstub script', () {
16 servePackages((builder) { 14 servePackages((builder) {
17 builder.serve("foo", "1.0.0", contents: [ 15 builder.serve("foo", "1.0.0", contents: [
18 d.dir("bin", [ 16 d.dir("bin", [
19 d.file("script.dart", "main(args) => print('ok');") 17 d.file("script.dart", "main(args) => print('ok');")
20 ]) 18 ])
21 ]); 19 ]);
22 }); 20 });
23 21
24 schedulePub(args: ["global", "activate", "foo"]); 22 schedulePub(args: ["global", "activate", "foo"]);
25 23
26 d.dir(cachePath, [ 24 d.dir(cachePath, [
27 d.dir('bin', [ 25 d.dir('bin', [
28 d.file(binStubName('script'), 'junk') 26 d.file(binStubName('script'), 'junk')
29 ]) 27 ])
30 ]).create(); 28 ]).create();
31 29
32 schedulePub(args: ["cache", "repair"], 30 schedulePub(args: ["cache", "repair"],
33 error: contains('Error reading binstub for "script":')); 31 error: contains('Error reading binstub for "script":'));
34 }); 32 });
35 } 33 }
OLDNEW
« no previous file with comments | « test/barback/fails_on_disallowed_directories_test.dart ('k') | test/cache/repair/recompiles_snapshots_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698