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

Unified Diff: utils/tests/pub/lock_file_test.dart

Issue 14297021: Move pub into sdk/lib/_internal. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Disallow package: imports of pub. Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « utils/tests/pub/lish/utils.dart ('k') | utils/tests/pub/oauth2/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/lock_file_test.dart
diff --git a/utils/tests/pub/lock_file_test.dart b/utils/tests/pub/lock_file_test.dart
deleted file mode 100644
index 715cff6822b8ddf16dab3f3930b4e215baadfc75..0000000000000000000000000000000000000000
--- a/utils/tests/pub/lock_file_test.dart
+++ /dev/null
@@ -1,186 +0,0 @@
-// Copyright (c) 2012, 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.
-
-library lock_file_test;
-
-import 'package:unittest/unittest.dart';
-import 'package:yaml/yaml.dart';
-
-import '../../pub/lock_file.dart';
-import '../../pub/package.dart';
-import '../../pub/source.dart';
-import '../../pub/source_registry.dart';
-import '../../pub/utils.dart';
-import '../../pub/version.dart';
-
-class MockSource extends Source {
- final String name = 'mock';
- final bool shouldCache = false;
-
- dynamic parseDescription(String filePath, String description,
- {bool fromLockFile: false}) {
- if (!description.endsWith(' desc')) throw new FormatException();
- return description;
- }
-
- String packageName(String description) {
- // Strip off ' desc'.
- return description.substring(0, description.length - 5);
- }
-}
-
-main() {
- var sources = new SourceRegistry();
- var mockSource = new MockSource();
- sources.register(mockSource);
-
- group('LockFile', () {
- group('parse()', () {
- test('returns an empty lockfile if the contents are empty', () {
- var lockFile = new LockFile.parse('', sources);
- expect(lockFile.packages.length, equals(0));
- });
-
- test('returns an empty lockfile if the contents are whitespace', () {
- var lockFile = new LockFile.parse(' \t\n ', sources);
- expect(lockFile.packages.length, equals(0));
- });
-
- test('parses a series of package descriptions', () {
- var lockFile = new LockFile.parse('''
-packages:
- bar:
- version: 1.2.3
- source: mock
- description: bar desc
- foo:
- version: 2.3.4
- source: mock
- description: foo desc
-''', sources);
-
- expect(lockFile.packages.length, equals(2));
-
- var bar = lockFile.packages['bar'];
- expect(bar.name, equals('bar'));
- expect(bar.version, equals(new Version(1, 2, 3)));
- expect(bar.source, equals(mockSource));
- expect(bar.description, equals('bar desc'));
-
- var foo = lockFile.packages['foo'];
- expect(foo.name, equals('foo'));
- expect(foo.version, equals(new Version(2, 3, 4)));
- expect(foo.source, equals(mockSource));
- expect(foo.description, equals('foo desc'));
- });
-
- test("throws if the version is missing", () {
- expect(() {
- new LockFile.parse('''
-packages:
- foo:
- source: mock
- description: foo desc
-''', sources);
- }, throwsFormatException);
- });
-
- test("throws if the version is invalid", () {
- expect(() {
- new LockFile.parse('''
-packages:
- foo:
- version: vorpal
- source: mock
- description: foo desc
-''', sources);
- }, throwsFormatException);
- });
-
- test("throws if the source is missing", () {
- expect(() {
- new LockFile.parse('''
-packages:
- foo:
- version: 1.2.3
- description: foo desc
-''', sources);
- }, throwsFormatException);
- });
-
- test("throws if the source is unknown", () {
- expect(() {
- new LockFile.parse('''
-packages:
- foo:
- version: 1.2.3
- source: notreal
- description: foo desc
-''', sources);
- }, throwsFormatException);
- });
-
- test("throws if the description is missing", () {
- expect(() {
- new LockFile.parse('''
-packages:
- foo:
- version: 1.2.3
- source: mock
-''', sources);
- }, throwsFormatException);
- });
-
- test("throws if the description is invalid", () {
- expect(() {
- new LockFile.parse('''
-packages:
- foo:
- version: 1.2.3
- source: mock
- description: foo desc is bad
-''', sources);
- }, throwsFormatException);
- });
-
- test("ignores extra stuff in file", () {
- var lockFile = new LockFile.parse('''
-extra:
- some: stuff
-packages:
- foo:
- bonus: not used
- version: 1.2.3
- source: mock
- description: foo desc
-''', sources);
- });
- });
-
- group('serialize()', () {
- test('dumps the lockfile to YAML', () {
- var lockfile = new LockFile.empty();
- lockfile.packages['foo'] = new PackageId(
- 'foo', mockSource, new Version.parse('1.2.3'), 'foo desc');
- lockfile.packages['bar'] = new PackageId(
- 'foo', mockSource, new Version.parse('3.2.1'), 'bar desc');
-
- expect(loadYaml(lockfile.serialize()), equals({
- 'packages': {
- 'foo': {
- 'version': '1.2.3',
- 'source': 'mock',
- 'description': 'foo desc'
- },
- 'bar': {
- 'version': '3.2.1',
- 'source': 'mock',
- 'description': 'bar desc'
- }
- }
- }));
- });
- });
- });
-}
« no previous file with comments | « utils/tests/pub/lish/utils.dart ('k') | utils/tests/pub/oauth2/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698