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

Unified Diff: tests/utils/dartdoc_search_test.dart

Issue 10829361: 'Find-as-you-type'-search in dartdoc/apidoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased Created 8 years, 4 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
« no previous file with comments | « pkg/dartdoc/static/styles.css ('k') | utils/apidoc/apidoc.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/utils/dartdoc_search_test.dart
diff --git a/tests/utils/dartdoc_search_test.dart b/tests/utils/dartdoc_search_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..4f9d79b86824350a5cb45b2acf09ef6c49e61dfc
--- /dev/null
+++ b/tests/utils/dartdoc_search_test.dart
@@ -0,0 +1,51 @@
+// Copyright (c) 2012, 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('dartdoc_search_test');
+
+#source('../../pkg/dartdoc/nav.dart');
+#source('../../pkg/dartdoc/search.dart');
+
+const String URL = 'dummy-url';
+
+testTopLevelVsMembers() {
+ var search = new SearchText('timer');
+ var match = obtainMatch(search, 'timer');
+ // Matching a top-level field 'timer';
+ var topLevelResult = new Result(match, FIELD, URL);
+ // Matching a member field 'timer' in 'Foo';
+ var memberResult = new Result(match, FIELD, URL, type: 'Foo');
+ Expect.equals(-1, resultComparator(topLevelResult, memberResult),
+ "Top level fields should be preferred to member fields");
+}
+
+testTopLevelFullVsPrefix() {
+ var search = new SearchText('cancel');
+ var fullMatch = obtainMatch(search, 'cancel');
+ var prefixMatch = obtainMatch(search, 'cancelable');
+ // Matching a top-level method 'cancel';
+ var fullResult = new Result(fullMatch, METHOD, URL);
+ // Matching a top-level method 'cancelable';
+ var prefixResult = new Result(prefixMatch, METHOD, URL);
+ Expect.equals(-1, resultComparator(fullResult, prefixResult),
+ "Full matches should be preferred to prefix matches");
+}
+
+testMemberFullVsPrefix() {
+ var search = new SearchText('cancel');
+ var fullMatch = obtainMatch(search, 'cancel');
+ var prefixMatch = obtainMatch(search, 'cancelable');
+ // Matching a member method 'cancel' in 'Isolate';
+ var fullResult = new Result(fullMatch, METHOD, URL, type: 'Isolate');
+ // Matching a member field 'cancelable' in 'Event';
+ var prefixResult = new Result(prefixMatch, FIELD, URL, type: 'Event');
+ Expect.equals(-1, resultComparator(fullResult, prefixResult),
+ "Full matches should be preferred to prefix matches");
+}
+
+void main() {
+ testTopLevelVsMembers();
+ testTopLevelFullVsPrefix();
+ testMemberFullVsPrefix();
+}
« no previous file with comments | « pkg/dartdoc/static/styles.css ('k') | utils/apidoc/apidoc.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698