OLD | NEW |
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 } |
OLD | NEW |