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

Unified Diff: pkg/analyzer/test/src/util/absolute_path_test.dart

Issue 1443173004: Optimize work with absolute paths. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Updates for review comments. Created 5 years, 1 month 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 | « pkg/analyzer/lib/src/util/absolute_path.dart ('k') | pkg/analyzer/test/src/util/test_all.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/src/util/absolute_path_test.dart
diff --git a/pkg/analyzer/test/src/util/absolute_path_test.dart b/pkg/analyzer/test/src/util/absolute_path_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..04ae942f4f8fc46cbbb06cdfd932a260a54cd6cd
--- /dev/null
+++ b/pkg/analyzer/test/src/util/absolute_path_test.dart
@@ -0,0 +1,96 @@
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library test.analyzer.src.util.absolute_path;
+
+import 'package:analyzer/src/util/absolute_path.dart';
+import 'package:unittest/unittest.dart';
+
+import '../../reflective_tests.dart';
+import '../../utils.dart';
+
+main() {
+ initializeTestEnvironment();
+ runReflectiveTests(AbsolutePathContextPosixTest);
+ runReflectiveTests(AbsolutePathContextWindowsTest);
+}
+
+@reflectiveTest
+class AbsolutePathContextPosixTest {
+ AbsolutePathContext context = new AbsolutePathContext(r'/');
+
+ void test_append() {
+ expect(context.append(r'/path/to', r'foo.dart'), r'/path/to/foo.dart');
+ }
+
+ void test_basename() {
+ expect(context.basename(r'/path/to/foo.dart'), r'foo.dart');
+ expect(context.basename(r'/path/to'), r'to');
+ expect(context.basename(r'/path'), r'path');
+ expect(context.basename(r'/'), r'');
+ }
+
+ void test_dirname() {
+ expect(context.dirname(r'/path/to/foo.dart'), r'/path/to');
+ expect(context.dirname(r'/path/to'), r'/path');
+ expect(context.dirname(r'/path'), r'/');
+ expect(context.dirname(r'/'), r'/');
+ }
+
+ void test_isWithin() {
+ expect(context.isWithin(r'/root/path', r'/root/path/a'), isTrue);
+ expect(context.isWithin(r'/root/path', r'/root/other'), isFalse);
+ expect(context.isWithin(r'/root/path', r'/root/path'), isFalse);
+ }
+
+ void test_split() {
+ expect(context.split(r'/path/to/foo'), [r'', r'path', r'to', r'foo']);
+ expect(context.split(r'/path'), [r'', r'path']);
+ }
+
+ void test_suffix() {
+ expect(context.suffix(r'/root/path/a/b.dart', r'/root/path'), r'a/b.dart');
+ expect(context.suffix(r'/root/other.dart', r'/root/path'), isNull);
+ }
+}
+
+@reflectiveTest
+class AbsolutePathContextWindowsTest {
+ AbsolutePathContext context = new AbsolutePathContext(r'\');
+
+ void test_append() {
+ expect(context.append(r'C:\path\to', r'foo.dart'), r'C:\path\to\foo.dart');
+ }
+
+ void test_basename() {
+ expect(context.basename(r'C:\path\to\foo.dart'), r'foo.dart');
+ expect(context.basename(r'C:\path\to'), r'to');
+ expect(context.basename(r'C:\path'), r'path');
+ expect(context.basename(r'C:\'), r'');
+ }
+
+ void test_dirname() {
+ expect(context.dirname(r'C:\path\to\foo.dart'), r'C:\path\to');
+ expect(context.dirname(r'C:\path\to'), r'C:\path');
+ expect(context.dirname(r'C:\path'), r'C:\');
+ expect(context.dirname(r'C:\'), r'C:\');
+ }
+
+ void test_isWithin() {
+ expect(context.isWithin(r'C:\root\path', r'C:\root\path\a'), isTrue);
+ expect(context.isWithin(r'C:\root\path', r'C:\root\other'), isFalse);
+ expect(context.isWithin(r'C:\root\path', r'C:\root\path'), isFalse);
+ }
+
+ void test_split() {
+ expect(context.split(r'C:\path\to\foo'), [r'C:', r'path', r'to', r'foo']);
+ expect(context.split(r'C:\path'), [r'C:', r'path']);
+ }
+
+ void test_suffix() {
+ expect(
+ context.suffix(r'C:\root\path\a\b.dart', r'C:\root\path'), r'a\b.dart');
+ expect(context.suffix(r'C:\root\other.dart', r'C:\root\path'), isNull);
+ }
+}
« no previous file with comments | « pkg/analyzer/lib/src/util/absolute_path.dart ('k') | pkg/analyzer/test/src/util/test_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698