| OLD | NEW |
| 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.services.refactoring.extract_local; | 5 library test.services.refactoring.extract_local; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:analysis_server/src/protocol2.dart'; | 9 import 'package:analysis_server/src/protocol2.dart'; |
| 10 import 'package:analysis_server/src/services/correction/change.dart'; | |
| 11 import 'package:analysis_server/src/services/refactoring/extract_local.dart'; | 10 import 'package:analysis_server/src/services/refactoring/extract_local.dart'; |
| 12 import 'package:analysis_testing/reflective_tests.dart'; | 11 import 'package:analysis_testing/reflective_tests.dart'; |
| 13 import 'package:unittest/unittest.dart'; | 12 import 'package:unittest/unittest.dart'; |
| 14 | 13 |
| 15 import 'abstract_refactoring.dart'; | 14 import 'abstract_refactoring.dart'; |
| 16 | 15 |
| 17 | 16 |
| 18 main() { | 17 main() { |
| 19 groupSep = ' | '; | 18 groupSep = ' | '; |
| 20 runReflectiveTests(ExtractLocalTest); | 19 runReflectiveTests(ExtractLocalTest); |
| (...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 869 expectedMessage: 'Expression must be selected to activate this refacto
ring.'); | 868 expectedMessage: 'Expression must be selected to activate this refacto
ring.'); |
| 870 }); | 869 }); |
| 871 } | 870 } |
| 872 | 871 |
| 873 /** | 872 /** |
| 874 * Checks that all conditions are OK and the result of applying the [Change] | 873 * Checks that all conditions are OK and the result of applying the [Change] |
| 875 * to [testUnit] is [expectedCode]. | 874 * to [testUnit] is [expectedCode]. |
| 876 */ | 875 */ |
| 877 Future _assertSuccessfulRefactoring(String expectedCode) { | 876 Future _assertSuccessfulRefactoring(String expectedCode) { |
| 878 return assertRefactoringConditionsOK().then((_) { | 877 return assertRefactoringConditionsOK().then((_) { |
| 879 return refactoring.createChange().then((Change refactoringChange) { | 878 return refactoring.createChange().then((SourceChange refactoringChange) { |
| 880 this.refactoringChange = refactoringChange; | 879 this.refactoringChange = refactoringChange; |
| 881 assertTestChangeResult(expectedCode); | 880 assertTestChangeResult(expectedCode); |
| 882 }); | 881 }); |
| 883 }); | 882 }); |
| 884 } | 883 } |
| 885 | 884 |
| 886 void _createRefactoring(int offset, int length) { | 885 void _createRefactoring(int offset, int length) { |
| 887 refactoring = new ExtractLocalRefactoringImpl(testUnit, offset, length); | 886 refactoring = new ExtractLocalRefactoringImpl(testUnit, offset, length); |
| 888 refactoring.name = 'res'; | 887 refactoring.name = 'res'; |
| 889 } | 888 } |
| 890 | 889 |
| 891 /** | 890 /** |
| 892 * Creates a new refactoring in [refactoring] for the selection range of the | 891 * Creates a new refactoring in [refactoring] for the selection range of the |
| 893 * given [search] pattern. | 892 * given [search] pattern. |
| 894 */ | 893 */ |
| 895 void _createRefactoringForString(String search) { | 894 void _createRefactoringForString(String search) { |
| 896 int offset = findOffset(search); | 895 int offset = findOffset(search); |
| 897 int length = search.length; | 896 int length = search.length; |
| 898 _createRefactoring(offset, length); | 897 _createRefactoring(offset, length); |
| 899 } | 898 } |
| 900 | 899 |
| 901 void _createRefactoringWithSuffix(String selectionSearch, String suffix) { | 900 void _createRefactoringWithSuffix(String selectionSearch, String suffix) { |
| 902 int offset = findOffset(selectionSearch + suffix); | 901 int offset = findOffset(selectionSearch + suffix); |
| 903 int length = selectionSearch.length; | 902 int length = selectionSearch.length; |
| 904 _createRefactoring(offset, length); | 903 _createRefactoring(offset, length); |
| 905 } | 904 } |
| 906 } | 905 } |
| OLD | NEW |