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

Unified Diff: utils/tests/pub/path/path_windows_test.dart

Issue 11557008: Make pub publish more user friendly: (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Blacklist '.DS_Store' files from publish. Created 8 years 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: utils/tests/pub/path/path_windows_test.dart
diff --git a/utils/tests/pub/path/path_windows_test.dart b/utils/tests/pub/path/path_windows_test.dart
index 1861a675b981ccdf723b6bea0b375bf6db159b96..b8dae382aa04e4551ad8059191d77544408178cb 100644
--- a/utils/tests/pub/path/path_windows_test.dart
+++ b/utils/tests/pub/path/path_windows_test.dart
@@ -291,6 +291,30 @@ main() {
});
});
+ group('split', () {
+ test('splits out directories', () {
+ expect(builder.split(''), []);
+ expect(builder.split('a'), ['a']);
+ expect(builder.split(r'a\b/c.txt'), ['a', 'b', 'c.txt']);
+ });
+
+ test('does not normalize', () {
+ expect(builder.split('.'), ['.']);
+ expect(builder.split('..'), ['..']);
+ expect(builder.split(r'a\b/..\c/.\d'), ['a', 'b', '..', 'c', '.', 'd']);
+ });
+
+ test('collapses empty parts', () {
+ expect(builder.split(r'a\\b\\\c'), ['a', 'b', 'c']);
+ });
+
+ test('includes the root prefix in the first part', () {
+ expect(builder.split(r'C:/a'), ['C:/a']);
+ expect(builder.split(r'C:\a\b\c'), [r'C:\a', 'b', 'c']);
+ // TODO(rnystrom): Test UNC paths.
+ });
+ });
+
test('withoutExtension', () {
expect(builder.withoutExtension(''), '');
expect(builder.withoutExtension('a'), 'a');

Powered by Google App Engine
This is Rietveld 408576698