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

Unified Diff: packages/analyzer/test/src/util/glob_test.dart

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 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: packages/analyzer/test/src/util/glob_test.dart
diff --git a/packages/analyzer/test/src/util/glob_test.dart b/packages/analyzer/test/src/util/glob_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c4c037e0cf5236ce464a288a764b801ba5962909
--- /dev/null
+++ b/packages/analyzer/test/src/util/glob_test.dart
@@ -0,0 +1,133 @@
+// 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 analyzer.test.src.util.glob_test;
+
+import 'package:analyzer/src/util/glob.dart';
+import 'package:test_reflective_loader/test_reflective_loader.dart';
+import 'package:unittest/unittest.dart';
+
+import '../../utils.dart';
+
+main() {
+ initializeTestEnvironment();
+ defineReflectiveTests(GlobPosixTest);
+ defineReflectiveTests(GlobWindowsTest);
+}
+
+@reflectiveTest
+class GlobPosixTest {
+ void test_case() {
+ Glob glob = new Glob(r'\', r'**.DaRt');
+ expect(glob.matches(r'aaa.dart'), isTrue);
+ expect(glob.matches(r'bbb.DART'), isTrue);
+ expect(glob.matches(r'ccc.dArT'), isTrue);
+ expect(glob.matches(r'ddd.DaRt'), isTrue);
+ }
+
+ void test_question() {
+ Glob glob = new Glob(r'/', r'?.dart');
+ expect(glob.matches(r'a.dart'), isTrue);
+ expect(glob.matches(r'b.dart'), isTrue);
+ expect(glob.matches(r'cc.dart'), isFalse);
+ }
+
+ void test_specialChars() {
+ Glob glob = new Glob(r'/', r'*.dart');
+ expect(glob.matches(r'a.dart'), isTrue);
+ expect(glob.matches('_-\a.dart'), isTrue);
+ expect(glob.matches(r'^$*?.dart'), isTrue);
+ expect(glob.matches(r'()[]{}.dart'), isTrue);
+ expect(glob.matches('\u2665.dart'), isTrue);
+ }
+
+ void test_specialChars2() {
+ Glob glob = new Glob(r'/', r'a[]b.dart');
+ expect(glob.matches(r'a[]b.dart'), isTrue);
+ expect(glob.matches(r'aNb.dart'), isFalse);
+ }
+
+ void test_star() {
+ Glob glob = new Glob(r'/', r'web/*.dart');
+ expect(glob.matches(r'web/foo.dart'), isTrue);
+ expect(glob.matches(r'web/barbaz.dart'), isTrue);
+ // does not end with 'dart'
+ expect(glob.matches(r'web/foo.html'), isFalse);
+ // not in 'web'
+ expect(glob.matches(r'lib/foo.dart'), isFalse);
+ expect(glob.matches(r'/web/foo.dart'), isFalse);
+ // in sub-folder
+ expect(glob.matches(r'web/sub/foo.dart'), isFalse);
+ }
+
+ void test_starStar() {
+ Glob glob = new Glob(r'/', r'**.dart');
+ expect(glob.matches(r'foo/bar.dart'), isTrue);
+ expect(glob.matches(r'foo/bar/baz.dart'), isTrue);
+ expect(glob.matches(r'/foo/bar.dart'), isTrue);
+ expect(glob.matches(r'/foo/bar/baz.dart'), isTrue);
+ // does not end with 'dart'
+ expect(glob.matches(r'/web/foo.html'), isFalse);
+ }
+
+ void test_starStar_star() {
+ Glob glob = new Glob(r'/', r'**/*.dart');
+ expect(glob.matches(r'foo/bar.dart'), isTrue);
+ expect(glob.matches(r'foo/bar/baz.dart'), isTrue);
+ expect(glob.matches(r'/foo/bar.dart'), isTrue);
+ expect(glob.matches(r'/foo/bar/baz.dart'), isTrue);
+ // does not end with 'dart'
+ expect(glob.matches(r'/web/foo.html'), isFalse);
+ }
+}
+
+@reflectiveTest
+class GlobWindowsTest {
+ void test_case() {
+ Glob glob = new Glob(r'\', r'**.dart');
+ expect(glob.matches(r'aaa.dart'), isTrue);
+ expect(glob.matches(r'bbb.DART'), isTrue);
+ expect(glob.matches(r'ccc.dArT'), isTrue);
+ expect(glob.matches(r'ddd.DaRt'), isTrue);
+ }
+
+ void test_question() {
+ Glob glob = new Glob(r'\', r'?.dart');
+ expect(glob.matches(r'a.dart'), isTrue);
+ expect(glob.matches(r'b.dart'), isTrue);
+ expect(glob.matches(r'cc.dart'), isFalse);
+ }
+
+ void test_specialChars() {
+ Glob glob = new Glob(r'\', r'*.dart');
+ expect(glob.matches(r'a.dart'), isTrue);
+ expect(glob.matches('_-\a.dart'), isTrue);
+ expect(glob.matches(r'^$*?.dart'), isTrue);
+ expect(glob.matches(r'()[]{}.dart'), isTrue);
+ expect(glob.matches('\u2665.dart'), isTrue);
+ }
+
+ void test_star() {
+ Glob glob = new Glob(r'\', r'web/*.dart');
+ expect(glob.matches(r'web\foo.dart'), isTrue);
+ expect(glob.matches(r'web\barbaz.dart'), isTrue);
+ // does not end with 'dart'
+ expect(glob.matches(r'web\foo.html'), isFalse);
+ // not in 'web'
+ expect(glob.matches(r'lib\foo.dart'), isFalse);
+ expect(glob.matches(r'\web\foo.dart'), isFalse);
+ // in sub-folder
+ expect(glob.matches(r'web\sub\foo.dart'), isFalse);
+ }
+
+ void test_starStar() {
+ Glob glob = new Glob(r'\', r'**.dart');
+ expect(glob.matches(r'foo\bar.dart'), isTrue);
+ expect(glob.matches(r'foo\bar\baz.dart'), isTrue);
+ expect(glob.matches(r'C:\foo\bar.dart'), isTrue);
+ expect(glob.matches(r'C:\foo\bar\baz.dart'), isTrue);
+ // does not end with 'dart'
+ expect(glob.matches(r'C:\web\foo.html'), isFalse);
+ }
+}
« no previous file with comments | « packages/analyzer/test/src/util/fast_uri_test.dart ('k') | packages/analyzer/test/src/util/lru_map_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698