blob: 880830337ecee8398ea61db0f1b604500eda0ee0 [file] [log] [blame]
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You 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 org.apache.royale.formatter;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
public class TestElseIfStatement extends BaseFormatterTests {
@Test
public void testPlaceOpenBraceOnNewLineWithEmptyBlock() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"if (condition1) {\n" +
"\tstatement;\n" +
"}\n" +
"else if (condition2) {\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (condition1)\n" +
"{\n" +
"\tstatement;\n" +
"}\n" +
"else if (condition2)\n" +
"{\n" +
"}",
// @formatter:on
result);
}
@Test
public void testDisablePlaceOpenBraceOnNewLineWithEmptyBlock() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = false;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"if (condition1)\n" +
"{\n" +
"\tstatement;\n" +
"}\n" +
"else if (condition2)\n" +
"{\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (condition1) {\n" +
"\tstatement;\n" +
"}\n" +
"else if (condition2) {\n" +
"}",
// @formatter:on
result);
}
@Test
public void testPlaceOpenBraceOnNewLineWithEmptyIfAndElseIfBlocks() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"if (condition1) {\n" +
"}\n" +
"else if (condition2) {\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (condition1)\n" +
"{\n" +
"}\n" +
"else if (condition2)\n" +
"{\n" +
"}",
// @formatter:on
result);
}
@Test
public void testDisablePlaceOpenBraceOnNewLineWithEmptyIfAndElseIfBlocks() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = false;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"if (condition1)\n" +
"{\n" +
"}\n" +
"else if (condition2)\n" +
"{\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (condition1) {\n" +
"}\n" +
"else if (condition2) {\n" +
"}",
// @formatter:on
result);
}
@Test
public void testInsertSpaceAfterControlFlowKeyword() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"if(condition1)\n" +
"{\n" +
"\tstatement;\n" +
"}\n" +
"else if(condition2)\n" +
"{\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (condition1)\n" +
"{\n" +
"\tstatement;\n" +
"}\n" +
"else if (condition2)\n" +
"{\n" +
"\tstatement;\n" +
"}",
// @formatter:on
result);
}
@Test
public void testDisableInsertSpaceAfterControlFlowKeyword() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = false;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"if (condition1)\n" +
"{\n" +
"\tstatement;\n" +
"}\n" +
"else if (condition2)\n" +
"{\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if(condition1)\n" +
"{\n" +
"\tstatement;\n" +
"}\n" +
"else if(condition2)\n" +
"{\n" +
"\tstatement;\n" +
"}",
// @formatter:on
result);
}
@Test
public void testPlaceOpenBraceOnNewLineWithStatement() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"if (condition1) {\n" +
"\tstatement;\n" +
"}\n" +
"else if (condition2) {\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (condition1)\n" +
"{\n" +
"\tstatement;\n" +
"}\n" +
"else if (condition2)\n" +
"{\n" +
"\tstatement;\n" +
"}",
// @formatter:on
result);
}
@Test
public void testDisablePlaceOpenBraceOnNewLineWithStatement() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = false;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"if (condition1)\n" +
"{\n" +
"\tstatement;\n" +
"}\n" +
"else if (condition2)\n" +
"{\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (condition1) {\n" +
"\tstatement;\n" +
"}\n" +
"else if (condition2) {\n" +
"\tstatement;\n" +
"}",
// @formatter:on
result);
}
@Test
public void testBodyWithoutParentheses() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"if (condition1) statement;\n" +
"else if (condition2) statement;",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (condition1)\n" +
"\tstatement;\n" +
"else if (condition2)\n" +
"\tstatement;",
// @formatter:on
result);
}
@Test
public void testWithBodyIsSemicolonOnSameLine() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"if (condition1);\n" +
"else if (condition2);",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (condition1);\n" +
"else if (condition2);",
// @formatter:on
result);
}
@Test
public void testNextIndentWithEmptyBlock() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"{\n" +
"\tif (condition1)\n" +
"\t{\n" +
"\t}\n" +
"\telse if (condition2)\n" +
"\t{\n" +
"\t}\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"{\n" +
"\tif (condition1)\n" +
"\t{\n" +
"\t}\n" +
"\telse if (condition2)\n" +
"\t{\n" +
"\t}\n" +
"\tstatement;\n" +
"}",
// @formatter:on
result);
}
@Test
public void testNextIndentWithBodyWithoutParentheses() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"{\n" +
"\tif (condition1)\n" +
"\t\tstatement;\n" +
"\telse if (condition2)\n" +
"\t\tstatement;\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"{\n" +
"\tif (condition1)\n" +
"\t\tstatement;\n" +
"\telse if (condition2)\n" +
"\t\tstatement;\n" +
"\tstatement;\n" +
"}",
// @formatter:on
result);
}
@Test
public void testNextIndentWithBodyWithParentheses() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"{\n" +
"\tif (condition1)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"\telse if (condition2)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"{\n" +
"\tif (condition1)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"\telse if (condition2)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"\tstatement;\n" +
"}",
// @formatter:on
result);
}
@Test
public void testNextIntentWithBodyIsSemicolonOnSameLine() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"{\n" +
"\tif (condition1);\n" +
"\telse if (condition2);\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"{\n" +
"\tif (condition1);\n" +
"\telse if (condition2);\n" +
"\tstatement;\n" +
"}",
// @formatter:on
result);
}
@Test
public void testNested() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatText(
// @formatter:off
"if (condition)\n" +
"{\n" +
"\tif (condition)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"\telse if (condition)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"}\n" +
"else if (condition)\n" +
"{\n" +
"\tif (condition)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"\telse if (condition)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (condition)\n" +
"{\n" +
"\tif (condition)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"\telse if (condition)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"}\n" +
"else if (condition)\n" +
"{\n" +
"\tif (condition)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"\telse if (condition)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"}",
// @formatter:on
result);
}
}