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

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

Issue 1215833002: Use the new test runner. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Created 5 years, 5 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) 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:pub/src/validator/size.dart';
9 import 'package:scheduled_test/scheduled_test.dart'; 9 import 'package:scheduled_test/scheduled_test.dart';
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 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();
22
23 setUp(d.validPackage.create); 21 setUp(d.validPackage.create);
24 22
25 integration('considers a package valid if it is <= 100 MB', () { 23 integration('considers a package valid if it is <= 100 MB', () {
26 expectNoValidationError(size(100)); 24 expectNoValidationError(size(100));
27 expectNoValidationError(size(100 * math.pow(2, 20))); 25 expectNoValidationError(size(100 * math.pow(2, 20)));
28 }); 26 });
29 27
30 integration('considers a package invalid if it is more than 100 MB', () { 28 integration('considers a package invalid if it is more than 100 MB', () {
31 expectValidationError(size(100 * math.pow(2, 20) + 1)); 29 expectValidationError(size(100 * math.pow(2, 20) + 1));
32 }); 30 });
33 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698