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

Unified Diff: sdk/lib/_internal/pub/test/preprocess_test.dart

Issue 423823010: Support source_span spans in barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 6 years, 5 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
Index: sdk/lib/_internal/pub/test/preprocess_test.dart
diff --git a/sdk/lib/_internal/pub/test/preprocess_test.dart b/sdk/lib/_internal/pub/test/preprocess_test.dart
index d908f1fdd4df21ad0942b76ee0886f8c4640bbb5..98aef17ba5ec4becfb075a5f2f2212de391aff6c 100644
--- a/sdk/lib/_internal/pub/test/preprocess_test.dart
+++ b/sdk/lib/_internal/pub/test/preprocess_test.dart
@@ -37,8 +37,9 @@ some text
});
group("if", () {
- test("removes sections with non-matching versions", () {
- expect(_preprocess('''
+ group("with a version range", () {
+ test("removes sections with non-matching versions", () {
+ expect(_preprocess('''
before
//# if barback <1.0.0
inside
@@ -48,10 +49,10 @@ after
before
after
'''));
- });
+ });
- test("doesn't insert section with non-matching versions", () {
- expect(_preprocess('''
+ test("doesn't insert section with non-matching versions", () {
+ expect(_preprocess('''
before
//# if barback <1.0.0
//> inside
@@ -61,10 +62,10 @@ after
before
after
'''));
- });
+ });
- test("doesn't remove sections with matching versions", () {
- expect(_preprocess('''
+ test("doesn't remove sections with matching versions", () {
+ expect(_preprocess('''
before
//# if barback >1.0.0
inside
@@ -75,10 +76,10 @@ before
inside
after
'''));
- });
+ });
- test("inserts sections with matching versions", () {
- expect(_preprocess('''
+ test("inserts sections with matching versions", () {
+ expect(_preprocess('''
before
//# if barback >1.0.0
//> inside
@@ -89,10 +90,10 @@ before
inside
after
'''));
- });
+ });
- test("allows version ranges", () {
- expect(_preprocess('''
+ test("allows multi-element version ranges", () {
+ expect(_preprocess('''
before
//# if barback >=1.0.0 <2.0.0
inside 1
@@ -106,6 +107,63 @@ before
inside 1
after
'''));
+ });
+ });
+
+ group("with a package name", () {
+ test("removes sections for a nonexistent package", () {
+ expect(_preprocess('''
+before
+//# if fblthp
+inside
+//# end
+after
+'''), equals('''
+before
+after
+'''));
+ });
+
+ test("doesn't insert sections for a nonexistent package", () {
+ expect(_preprocess('''
+before
+//# if fblthp
+//> inside
+//# end
+after
+'''), equals('''
+before
+after
+'''));
+ });
+
+ test("doesn't remove sections with an existent package", () {
+ expect(_preprocess('''
+before
+//# if barback
+inside
+//# end
+after
+'''), equals('''
+before
+inside
+after
+'''));
+ });
+
+ test("inserts sections with an existent package", () {
+ expect(_preprocess('''
+before
+//# if barback
+//> inside
+//# end
+after
+'''), equals('''
+before
+inside
+after
+'''));
+ });
});
});
@@ -189,21 +247,11 @@ after
expect(() => _preprocess('//# if\n//# end'), throwsFormatException);
});
- test("disallows if with no version range", () {
- expect(() => _preprocess('//# if barback\n//# end'),
- throwsFormatException);
- });
-
test("disallows if with no package", () {
expect(() => _preprocess('//# if <=1.0.0\n//# end'),
throwsFormatException);
});
- test("disallows unknown package name", () {
- expect(() => _preprocess('//# if polymer <=1.0.0\n//# end'),
- throwsFormatException);
- });
-
test("disallows invalid version constraint", () {
expect(() => _preprocess('//# if barback >=1.0\n//# end'),
throwsFormatException);
@@ -252,4 +300,4 @@ after
}
String _preprocess(String input) =>
- preprocess(input, new Version.parse("1.2.3"), 'source/url');
+ preprocess(input, {'barback': new Version.parse("1.2.3")}, 'source/url');

Powered by Google App Engine
This is Rietveld 408576698