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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 expect(builder.resolve(r'a\', 'b'), r'/root/path/a\/b'); | 258 expect(builder.resolve(r'a\', 'b'), r'/root/path/a\/b'); |
259 }); | 259 }); |
260 | 260 |
261 test('ignores parts before an absolute path', () { | 261 test('ignores parts before an absolute path', () { |
262 expect(builder.resolve('a', '/b', '/c', 'd'), '/c/d'); | 262 expect(builder.resolve('a', '/b', '/c', 'd'), '/c/d'); |
263 expect(builder.resolve('a', r'c:\b', 'c', 'd'), r'/root/path/a/c:\b/c/d'); | 263 expect(builder.resolve('a', r'c:\b', 'c', 'd'), r'/root/path/a/c:\b/c/d'); |
264 expect(builder.resolve('a', r'\\b', 'c', 'd'), r'/root/path/a/\\b/c/d'); | 264 expect(builder.resolve('a', r'\\b', 'c', 'd'), r'/root/path/a/\\b/c/d'); |
265 }); | 265 }); |
266 }); | 266 }); |
267 | 267 |
| 268 group('split', () { |
| 269 test('splits out directories', () { |
| 270 expect(builder.split(''), []); |
| 271 expect(builder.split('a'), ['a']); |
| 272 expect(builder.split('a/b/c.txt'), ['a', 'b', 'c.txt']); |
| 273 }); |
| 274 |
| 275 test('does not normalize', () { |
| 276 expect(builder.split('.'), ['.']); |
| 277 expect(builder.split('..'), ['..']); |
| 278 expect(builder.split('a/b/../c/./d'), ['a', 'b', '..', 'c', '.', 'd']); |
| 279 }); |
| 280 |
| 281 test('collapses empty parts', () { |
| 282 expect(builder.split('a//b///c'), ['a', 'b', 'c']); |
| 283 }); |
| 284 |
| 285 test('includes the root prefix in the first part', () { |
| 286 expect(builder.split('/'), ['/']); |
| 287 expect(builder.split('/a/b/c'), ['/a', 'b', 'c']); |
| 288 }); |
| 289 }); |
| 290 |
268 test('withoutExtension', () { | 291 test('withoutExtension', () { |
269 expect(builder.withoutExtension(''), ''); | 292 expect(builder.withoutExtension(''), ''); |
270 expect(builder.withoutExtension('a'), 'a'); | 293 expect(builder.withoutExtension('a'), 'a'); |
271 expect(builder.withoutExtension('.a'), '.a'); | 294 expect(builder.withoutExtension('.a'), '.a'); |
272 expect(builder.withoutExtension('a.b'), 'a'); | 295 expect(builder.withoutExtension('a.b'), 'a'); |
273 expect(builder.withoutExtension('a/b.c'), 'a/b'); | 296 expect(builder.withoutExtension('a/b.c'), 'a/b'); |
274 expect(builder.withoutExtension('a/b.c.d'), 'a/b.c'); | 297 expect(builder.withoutExtension('a/b.c.d'), 'a/b.c'); |
275 expect(builder.withoutExtension('a/'), 'a/'); | 298 expect(builder.withoutExtension('a/'), 'a/'); |
276 expect(builder.withoutExtension('a/b/'), 'a/b/'); | 299 expect(builder.withoutExtension('a/b/'), 'a/b/'); |
277 expect(builder.withoutExtension('a/.'), 'a/.'); | 300 expect(builder.withoutExtension('a/.'), 'a/.'); |
278 expect(builder.withoutExtension('a/.b'), 'a/.b'); | 301 expect(builder.withoutExtension('a/.b'), 'a/.b'); |
279 expect(builder.withoutExtension('a.b/c'), 'a.b/c'); | 302 expect(builder.withoutExtension('a.b/c'), 'a.b/c'); |
280 expect(builder.withoutExtension(r'a.b\c'), r'a'); | 303 expect(builder.withoutExtension(r'a.b\c'), r'a'); |
281 expect(builder.withoutExtension(r'a/b\c'), r'a/b\c'); | 304 expect(builder.withoutExtension(r'a/b\c'), r'a/b\c'); |
282 expect(builder.withoutExtension(r'a/b\c.d'), r'a/b\c'); | 305 expect(builder.withoutExtension(r'a/b\c.d'), r'a/b\c'); |
283 }); | 306 }); |
284 } | 307 } |
OLD | NEW |