OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library path_test; | 5 library path_test; |
6 | 6 |
7 import 'dart:io' as io; | 7 import 'dart:io' as io; |
8 | 8 |
9 import '../../../../pkg/unittest/lib/unittest.dart'; | 9 import '../../../../pkg/unittest/lib/unittest.dart'; |
10 import '../../../pub/path.dart' as path; | 10 import '../../../pub/path.dart' as path; |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 expect(builder.resolve('a/', 'b'), r'C:\root\path\a/b'); | 284 expect(builder.resolve('a/', 'b'), r'C:\root\path\a/b'); |
285 }); | 285 }); |
286 | 286 |
287 test('ignores parts before an absolute path', () { | 287 test('ignores parts before an absolute path', () { |
288 expect(builder.resolve('a', '/b', '/c', 'd'), r'C:\root\path\a/b/c\d'); | 288 expect(builder.resolve('a', '/b', '/c', 'd'), r'C:\root\path\a/b/c\d'); |
289 expect(builder.resolve('a', r'c:\b', 'c', 'd'), r'c:\b\c\d'); | 289 expect(builder.resolve('a', r'c:\b', 'c', 'd'), r'c:\b\c\d'); |
290 expect(builder.resolve('a', r'\\b', r'\\c', 'd'), r'\\c\d'); | 290 expect(builder.resolve('a', r'\\b', r'\\c', 'd'), r'\\c\d'); |
291 }); | 291 }); |
292 }); | 292 }); |
293 | 293 |
| 294 group('split', () { |
| 295 test('splits out directories', () { |
| 296 expect(builder.split(''), []); |
| 297 expect(builder.split('a'), ['a']); |
| 298 expect(builder.split(r'a\b/c.txt'), ['a', 'b', 'c.txt']); |
| 299 }); |
| 300 |
| 301 test('does not normalize', () { |
| 302 expect(builder.split('.'), ['.']); |
| 303 expect(builder.split('..'), ['..']); |
| 304 expect(builder.split(r'a\b/..\c/.\d'), ['a', 'b', '..', 'c', '.', 'd']); |
| 305 }); |
| 306 |
| 307 test('collapses empty parts', () { |
| 308 expect(builder.split(r'a\\b\\\c'), ['a', 'b', 'c']); |
| 309 }); |
| 310 |
| 311 test('includes the root prefix in the first part', () { |
| 312 expect(builder.split(r'C:/a'), ['C:/a']); |
| 313 expect(builder.split(r'C:\a\b\c'), [r'C:\a', 'b', 'c']); |
| 314 // TODO(rnystrom): Test UNC paths. |
| 315 }); |
| 316 }); |
| 317 |
294 test('withoutExtension', () { | 318 test('withoutExtension', () { |
295 expect(builder.withoutExtension(''), ''); | 319 expect(builder.withoutExtension(''), ''); |
296 expect(builder.withoutExtension('a'), 'a'); | 320 expect(builder.withoutExtension('a'), 'a'); |
297 expect(builder.withoutExtension('.a'), '.a'); | 321 expect(builder.withoutExtension('.a'), '.a'); |
298 expect(builder.withoutExtension('a.b'), 'a'); | 322 expect(builder.withoutExtension('a.b'), 'a'); |
299 expect(builder.withoutExtension(r'a\b.c'), r'a\b'); | 323 expect(builder.withoutExtension(r'a\b.c'), r'a\b'); |
300 expect(builder.withoutExtension(r'a\b.c.d'), r'a\b.c'); | 324 expect(builder.withoutExtension(r'a\b.c.d'), r'a\b.c'); |
301 expect(builder.withoutExtension(r'a\'), r'a\'); | 325 expect(builder.withoutExtension(r'a\'), r'a\'); |
302 expect(builder.withoutExtension(r'a\b\'), r'a\b\'); | 326 expect(builder.withoutExtension(r'a\b\'), r'a\b\'); |
303 expect(builder.withoutExtension(r'a\.'), r'a\.'); | 327 expect(builder.withoutExtension(r'a\.'), r'a\.'); |
304 expect(builder.withoutExtension(r'a\.b'), r'a\.b'); | 328 expect(builder.withoutExtension(r'a\.b'), r'a\.b'); |
305 expect(builder.withoutExtension(r'a.b\c'), r'a.b\c'); | 329 expect(builder.withoutExtension(r'a.b\c'), r'a.b\c'); |
306 expect(builder.withoutExtension(r'a/b.c/d'), r'a/b.c/d'); | 330 expect(builder.withoutExtension(r'a/b.c/d'), r'a/b.c/d'); |
307 expect(builder.withoutExtension(r'a\b/c'), r'a\b/c'); | 331 expect(builder.withoutExtension(r'a\b/c'), r'a\b/c'); |
308 expect(builder.withoutExtension(r'a\b/c.d'), r'a\b/c'); | 332 expect(builder.withoutExtension(r'a\b/c.d'), r'a\b/c'); |
309 expect(builder.withoutExtension(r'a.b/c'), r'a.b/c'); | 333 expect(builder.withoutExtension(r'a.b/c'), r'a.b/c'); |
310 }); | 334 }); |
311 } | 335 } |
OLD | NEW |