blob: 6961877d7bae332a13f4adc914fc1ee9dc83937f [file] [log] [blame]
/*
* Copyright 2000-2010 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.psi.formatter.java;
import com.intellij.openapi.util.TextRange;
import com.intellij.util.IncorrectOperationException;
/**
* @author Denis Zhdanov
* @since May 11, 2010 5:30:28 PM
*/
public class JavaIndenterTest extends AbstractJavaFormatterTest {
private static final String CARET_TOKEN = "<caret>";
public void testIndentAlignedMethodParameter() {
// Inspired by IDEA-22020
getSettings().ALIGN_MULTILINE_PARAMETERS_IN_CALLS = true;
String initial =
"class BrokenAlignment {\n" +
" public\n" +
"\tstatic int foo(String a, String b, String c,\n" +
" String d) {\n" +
" return -1;\n" +
" }\n" +
"}";
int start = initial.indexOf(" String d");
int end = initial.indexOf("\n", start);
myTextRange = new TextRange(start, end);
doTextTest(initial,
"class BrokenAlignment {\n" +
" public\n" +
"\tstatic int foo(String a, String b, String c,\n" +
" String d) {\n" +
" return -1;\n" +
" }\n" +
"}"
);
}
public void testMethodBodyShiftedToComment() {
// Inspired by IDEA-53778
doTextTest(
"class Test {\n" +
" // some comment\n" +
" public void doSmth(int[] p) {\n" +
"<caret>\n" +
" }" +
"}",
"class Test {\n" +
" // some comment\n" +
" public void doSmth(int[] p) {\n" +
" \n" +
" }" +
"}");
}
@Override
public void doTextTest(String text, String textAfter) throws IncorrectOperationException {
doTextTest(Action.INDENT, adjustTextIfNecessary(text), textAfter);
}
private String adjustTextIfNecessary(String text) {
int caretIndex = text.indexOf(CARET_TOKEN);
if (caretIndex < 0) {
return text;
}
if (caretIndex < text.length() && text.indexOf(CARET_TOKEN, caretIndex + 1) >= 0) {
fail(String.format("Invalid indentation test 'before' text - it contains more than one caret meta-token (%s). Text: %n%s",
CARET_TOKEN, text));
}
myTextRange = new TextRange(caretIndex, caretIndex);
return text.substring(0, caretIndex) + text.substring(caretIndex + CARET_TOKEN.length());
}
}