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

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

Issue 12285010: Support relative paths in path dependencies. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweak some comments. Created 7 years, 10 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/lock_file_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/pubspec_test.dart
diff --git a/utils/tests/pub/pubspec_test.dart b/utils/tests/pub/pubspec_test.dart
index f2d0b6100b168dc323eb9f24d727c67d5c8f7dcf..9813cf52c8bafcd76fe45ed7a357f68caf30da50 100644
--- a/utils/tests/pub/pubspec_test.dart
+++ b/utils/tests/pub/pubspec_test.dart
@@ -15,8 +15,10 @@ import '../../pub/version.dart';
class MockSource extends Source {
final String name = "mock";
final bool shouldCache = false;
- void validateDescription(description, {bool fromLockFile: false}) {
+ dynamic parseDescription(String filePath, description,
+ {bool fromLockFile: false}) {
if (description != 'ok') throw new FormatException('Bad');
+ return description;
}
String packageName(description) => 'foo';
}
@@ -29,12 +31,12 @@ main() {
sources.register(new MockSource());
expectFormatError(String pubspec) {
- expect(() => new Pubspec.parse(pubspec, sources),
+ expect(() => new Pubspec.parse(null, pubspec, sources),
throwsFormatException);
}
test("allows a version constraint for dependencies", () {
- var pubspec = new Pubspec.parse('''
+ var pubspec = new Pubspec.parse(null, '''
dependencies:
foo:
mock: ok
@@ -49,7 +51,7 @@ dependencies:
});
test("allows an empty dependencies map", () {
- var pubspec = new Pubspec.parse('''
+ var pubspec = new Pubspec.parse(null, '''
dependencies:
''', sources);
@@ -74,8 +76,8 @@ dependencies:
});
test("throws if 'homepage' doesn't have an HTTP scheme", () {
- new Pubspec.parse('homepage: http://ok.com', sources);
- new Pubspec.parse('homepage: https://also-ok.com', sources);
+ new Pubspec.parse(null, 'homepage: http://ok.com', sources);
+ new Pubspec.parse(null, 'homepage: https://also-ok.com', sources);
expectFormatError('homepage: ftp://badscheme.com');
expectFormatError('homepage: javascript:alert("!!!")');
@@ -89,8 +91,8 @@ dependencies:
});
test("throws if 'documentation' doesn't have an HTTP scheme", () {
- new Pubspec.parse('documentation: http://ok.com', sources);
- new Pubspec.parse('documentation: https://also-ok.com', sources);
+ new Pubspec.parse(null, 'documentation: http://ok.com', sources);
+ new Pubspec.parse(null, 'documentation: https://also-ok.com', sources);
expectFormatError('documentation: ftp://badscheme.com');
expectFormatError('documentation: javascript:alert("!!!")');
@@ -99,8 +101,8 @@ dependencies:
});
test("throws if 'authors' is not a string or a list of strings", () {
- new Pubspec.parse('authors: ok fine', sources);
- new Pubspec.parse('authors: [also, ok, fine]', sources);
+ new Pubspec.parse(null, 'authors: ok fine', sources);
+ new Pubspec.parse(null, 'authors: [also, ok, fine]', sources);
expectFormatError('authors: 123');
expectFormatError('authors: {not: {a: string}}');
@@ -108,7 +110,7 @@ dependencies:
});
test("throws if 'author' is not a string", () {
- new Pubspec.parse('author: ok fine', sources);
+ new Pubspec.parse(null, 'author: ok fine', sources);
expectFormatError('author: 123');
expectFormatError('author: {not: {a: string}}');
@@ -120,7 +122,7 @@ dependencies:
});
test("allows comment-only files", () {
- var pubspec = new Pubspec.parse('''
+ var pubspec = new Pubspec.parse(null, '''
# No external dependencies yet
# Including for completeness
# ...and hoping the spec expands to include details about author, version, etc
@@ -132,12 +134,12 @@ dependencies:
group("environment", () {
test("defaults to any SDK constraint if environment is omitted", () {
- var pubspec = new Pubspec.parse('', sources);
+ var pubspec = new Pubspec.parse(null, '', sources);
expect(pubspec.environment.sdkVersion, equals(VersionConstraint.any));
});
test("allows an empty environment map", () {
- var pubspec = new Pubspec.parse('''
+ var pubspec = new Pubspec.parse(null, '''
environment:
''', sources);
expect(pubspec.environment.sdkVersion, equals(VersionConstraint.any));
@@ -150,7 +152,7 @@ environment: []
});
test("allows a version constraint for the sdk", () {
- var pubspec = new Pubspec.parse('''
+ var pubspec = new Pubspec.parse(null, '''
environment:
sdk: ">=1.2.3 <2.3.4"
''', sources);
« no previous file with comments | « utils/tests/pub/lock_file_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698