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

Side by Side Diff: pkg/analysis_server/test/search/member_references_test.dart

Issue 477323005: Use generated classes to create requests in analysis server unit tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 test.search.member_references; 5 library test.search.member_references;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:analysis_server/src/constants.dart'; 9 import 'package:analysis_server/src/constants.dart';
10 import 'package:analysis_server/src/protocol.dart'; 10 import 'package:analysis_server/src/protocol.dart';
11 import 'package:analysis_server/src/protocol2.dart' show
12 SearchFindMemberReferencesParams;
11 import 'package:analysis_server/src/search/search_result.dart'; 13 import 'package:analysis_server/src/search/search_result.dart';
12 import 'package:analysis_testing/reflective_tests.dart'; 14 import 'package:analysis_testing/reflective_tests.dart';
13 import 'package:unittest/unittest.dart'; 15 import 'package:unittest/unittest.dart';
14 16
15 import 'abstract_search_domain.dart'; 17 import 'abstract_search_domain.dart';
16 18
17 19
18 main() { 20 main() {
19 groupSep = ' | '; 21 groupSep = ' | ';
20 runReflectiveTests(MemberReferencesTest); 22 runReflectiveTests(MemberReferencesTest);
21 } 23 }
22 24
23 25
24 @ReflectiveTestCase() 26 @ReflectiveTestCase()
25 class MemberReferencesTest extends AbstractSearchDomainTest { 27 class MemberReferencesTest extends AbstractSearchDomainTest {
26 void assertHasRef(SearchResultKind kind, String search, bool isPotential) { 28 void assertHasRef(SearchResultKind kind, String search, bool isPotential) {
27 assertHasResult(kind, search); 29 assertHasResult(kind, search);
28 expect(result.isPotential, isPotential); 30 expect(result.isPotential, isPotential);
29 } 31 }
30 32
31 Future findMemberReferences(String name) { 33 Future findMemberReferences(String name) {
32 return waitForTasksFinished().then((_) { 34 return waitForTasksFinished().then((_) {
33 Request request = new Request('0', SEARCH_FIND_MEMBER_REFERENCES); 35 Request request = new SearchFindMemberReferencesParams(name).toRequest('0' );
34 request.setParameter(NAME, name);
35 Response response = handleSuccessfulRequest(request); 36 Response response = handleSuccessfulRequest(request);
36 searchId = response.getResult(ID); 37 searchId = response.getResult(ID);
37 results.clear(); 38 results.clear();
38 return waitForSearchResults(); 39 return waitForSearchResults();
39 }); 40 });
40 } 41 }
41 42
42 test_fields_explicit() { 43 test_fields_explicit() {
43 addTestFile(''' 44 addTestFile('''
44 class A { 45 class A {
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 } 116 }
116 '''); 117 ''');
117 return findMemberReferences('foo').then((_) { 118 return findMemberReferences('foo').then((_) {
118 assertHasRef(SearchResultKind.INVOCATION, 'foo(1)', false); 119 assertHasRef(SearchResultKind.INVOCATION, 'foo(1)', false);
119 assertHasRef(SearchResultKind.INVOCATION, 'foo(2)', false); 120 assertHasRef(SearchResultKind.INVOCATION, 'foo(2)', false);
120 assertHasRef(SearchResultKind.INVOCATION, 'foo(10)', true); 121 assertHasRef(SearchResultKind.INVOCATION, 'foo(10)', true);
121 assertHasRef(SearchResultKind.INVOCATION, 'foo(20)', true); 122 assertHasRef(SearchResultKind.INVOCATION, 'foo(20)', true);
122 }); 123 });
123 } 124 }
124 } 125 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/search/member_declarations_test.dart ('k') | pkg/analysis_server/test/search/search_domain_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698