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