blob: ba5151d71021005c4a6a7ea3e38dcb3f714ca7de [file] [log] [blame]
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:async';
import 'package:pub/src/validator/size.dart';
import 'package:test/test.dart';
import '../descriptor.dart' as d;
import '../test_pub.dart';
import 'utils.dart';
Future<void> expectSizeValidationError(Matcher matcher) async {
await expectValidation(
() => SizeValidator(),
size: 100 * (1 << 20) + 1,
errors: contains(matcher),
);
}
void main() {
test('considers a package valid if it is <= 100 MB', () async {
await d.validPackage.create();
await expectValidation(() => SizeValidator(), size: 100);
await expectValidation(() => SizeValidator(), size: 100 * (1 << 20));
});
group('considers a package invalid if it is more than 100 MB', () {
test('package is not under source control and no .gitignore exists',
() async {
await d.validPackage.create();
await expectSizeValidationError(
equals('Your package is 100.0 MB. Hosted packages must '
'be smaller than 100 MB.'));
});
test('package is not under source control and .gitignore exists', () async {
await d.validPackage.create();
await d.dir(appPath, [d.file('.gitignore', 'ignored')]).create();
await expectSizeValidationError(allOf(
contains('Hosted packages must be smaller than 100 MB.'),
contains('Your .gitignore has no effect since your project '
'does not appear to be in version control.')));
});
test('package is under source control and no .gitignore exists', () async {
await d.validPackage.create();
await d.git(appPath).create();
await expectSizeValidationError(allOf(
contains('Hosted packages must be smaller than 100 MB.'),
contains('Consider adding a .gitignore to avoid including '
'temporary files.')));
});
test('package is under source control and .gitignore exists', () async {
await d.validPackage.create();
await d.git(appPath, [d.file('.gitignore', 'ignored')]).create();
await expectSizeValidationError(
equals('Your package is 100.0 MB. Hosted packages must '
'be smaller than 100 MB.'));
});
});
}