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

Side by Side Diff: test/validator/size_test.dart

Issue 1153643002: Use "package:" imports for pub. (Closed) Base URL: git@github.com:dart-lang/pub_test@master
Patch Set: Code review changes Created 5 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
« no previous file with comments | « test/validator/sdk_constraint_test.dart ('k') | test/validator/utf8_readme_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 'dart:async'; 5 import 'dart:async';
6 import 'dart:math' as math; 6 import 'dart:math' as math;
7 7
8 import 'package:pub/src/validator/size.dart';
8 import 'package:scheduled_test/scheduled_test.dart'; 9 import 'package:scheduled_test/scheduled_test.dart';
9 10
10 import '../../lib/src/validator/size.dart';
11 import '../descriptor.dart' as d; 11 import '../descriptor.dart' as d;
12 import '../test_pub.dart'; 12 import '../test_pub.dart';
13 import 'utils.dart'; 13 import 'utils.dart';
14 14
15 Function size(int size) { 15 Function size(int size) {
16 return (entrypoint) => 16 return (entrypoint) =>
17 new SizeValidator(entrypoint, new Future.value(size)); 17 new SizeValidator(entrypoint, new Future.value(size));
18 } 18 }
19 19
20 main() { 20 main() {
21 initConfig(); 21 initConfig();
22 22
23 setUp(d.validPackage.create); 23 setUp(d.validPackage.create);
24 24
25 integration('considers a package valid if it is <= 100 MB', () { 25 integration('considers a package valid if it is <= 100 MB', () {
26 expectNoValidationError(size(100)); 26 expectNoValidationError(size(100));
27 expectNoValidationError(size(100 * math.pow(2, 20))); 27 expectNoValidationError(size(100 * math.pow(2, 20)));
28 }); 28 });
29 29
30 integration('considers a package invalid if it is more than 100 MB', () { 30 integration('considers a package invalid if it is more than 100 MB', () {
31 expectValidationError(size(100 * math.pow(2, 20) + 1)); 31 expectValidationError(size(100 * math.pow(2, 20) + 1));
32 }); 32 });
33 } 33 }
OLDNEW
« no previous file with comments | « test/validator/sdk_constraint_test.dart ('k') | test/validator/utf8_readme_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698