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

Side by Side Diff: pkg/analysis_server/test/search/member_declarations_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_declarations; 5 library test.search.member_declarations;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:analysis_server/src/computer/element.dart'; 9 import 'package:analysis_server/src/computer/element.dart';
10 import 'package:analysis_server/src/constants.dart'; 10 import 'package:analysis_server/src/constants.dart';
11 import 'package:analysis_server/src/protocol.dart'; 11 import 'package:analysis_server/src/protocol.dart';
12 import 'package:analysis_server/src/protocol2.dart' show
13 SearchFindMemberDeclarationsParams;
12 import 'package:analysis_server/src/search/search_result.dart'; 14 import 'package:analysis_server/src/search/search_result.dart';
13 import 'package:analysis_testing/reflective_tests.dart'; 15 import 'package:analysis_testing/reflective_tests.dart';
14 import 'package:unittest/unittest.dart'; 16 import 'package:unittest/unittest.dart';
15 17
16 import 'abstract_search_domain.dart'; 18 import 'abstract_search_domain.dart';
17 19
18 20
19 main() { 21 main() {
20 groupSep = ' | '; 22 groupSep = ' | ';
21 runReflectiveTests(MemberDeclarationsTest); 23 runReflectiveTests(MemberDeclarationsTest);
(...skipping 11 matching lines...) Expand all
33 35
34 void assertNoDeclaration(ElementKind kind, String className) { 36 void assertNoDeclaration(ElementKind kind, String className) {
35 result = findTopLevelResult(kind, className); 37 result = findTopLevelResult(kind, className);
36 if (result != null) { 38 if (result != null) {
37 fail('Unexpected: kind=$kind in="$className"\nin\n' + results.join('\n')); 39 fail('Unexpected: kind=$kind in="$className"\nin\n' + results.join('\n'));
38 } 40 }
39 } 41 }
40 42
41 Future findMemberDeclarations(String name) { 43 Future findMemberDeclarations(String name) {
42 return waitForTasksFinished().then((_) { 44 return waitForTasksFinished().then((_) {
43 Request request = new Request('0', SEARCH_FIND_MEMBER_DECLARATIONS); 45 Request request =
44 request.setParameter(NAME, name); 46 new SearchFindMemberDeclarationsParams(name).toRequest('0');
45 Response response = handleSuccessfulRequest(request); 47 Response response = handleSuccessfulRequest(request);
46 searchId = response.getResult(ID); 48 searchId = response.getResult(ID);
47 results.clear(); 49 results.clear();
48 return waitForSearchResults(); 50 return waitForSearchResults();
49 }); 51 });
50 } 52 }
51 53
52 SearchResult findTopLevelResult(ElementKind kind, String enclosingClass) { 54 SearchResult findTopLevelResult(ElementKind kind, String enclosingClass) {
53 for (SearchResult result in results) { 55 for (SearchResult result in results) {
54 Element element = result.path[0]; 56 Element element = result.path[0];
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 set foo(x) {} 169 set foo(x) {}
168 } 170 }
169 '''); 171 ''');
170 return findMemberDeclarations('foo').then((_) { 172 return findMemberDeclarations('foo').then((_) {
171 expect(results, hasLength(2)); 173 expect(results, hasLength(2));
172 assertHasDeclaration(ElementKind.METHOD, 'A'); 174 assertHasDeclaration(ElementKind.METHOD, 'A');
173 assertHasDeclaration(ElementKind.SETTER, 'B'); 175 assertHasDeclaration(ElementKind.SETTER, 'B');
174 }); 176 });
175 } 177 }
176 } 178 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698