blob: 8c704b5e75be5467617a0f945755f3ec15475275 [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 TestIfStatement extends BaseFormatterTests {
@Test
public void testPlaceOpenBraceOnNewLineWithEmptyBlock() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatActionScriptText(
// @formatter:off
"if (true) {\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (true)\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.formatActionScriptText(
// @formatter:off
"if (true)\n" +
"{\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (true) {\n" +
"}",
// @formatter:on
result);
}
@Test
public void testInsertSpaceAfterControlFlowKeyword() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatActionScriptText(
// @formatter:off
"if(true)\n" +
"{\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (true)\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.formatActionScriptText(
// @formatter:off
"if (true)\n" +
"{\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if(true)\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.formatActionScriptText(
// @formatter:off
"if (true) {\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (true)\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.formatActionScriptText(
// @formatter:off
"if (true)\n" +
"{\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (true) {\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.formatActionScriptText(
// @formatter:off
"if (true) statement;",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (true)\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.formatActionScriptText(
// @formatter:off
"if (true);",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (true);",
// @formatter:on
result);
}
@Test
public void testCommentBeforeStartBody() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatActionScriptText(
// @formatter:off
"if (true) //comment\n" +
"{\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (true) // comment\n" +
"{\n" +
"\tstatement;\n" +
"}",
// @formatter:on
result);
}
@Test
public void testCommentBeforeEndBody() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatActionScriptText(
// @formatter:off
"if (true)\n" +
"{\n" +
"\tstatement; // comment\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (true)\n" +
"{\n" +
"\tstatement; // comment\n" +
"}",
// @formatter:on
result);
}
@Test
public void testNextIndentWithEmptyBlock() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatActionScriptText(
// @formatter:off
"{\n" +
"\tif (condition)\n" +
"\t{\n" +
"\t}\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"{\n" +
"\tif (condition)\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.formatActionScriptText(
// @formatter:off
"{\n" +
"\tif (true)\n" +
"\t\tstatement;\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"{\n" +
"\tif (true)\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.formatActionScriptText(
// @formatter:off
"{\n" +
"\tif (true)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"{\n" +
"\tif (true)\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.formatActionScriptText(
// @formatter:off
"{\n" +
"\tif (true);\n" +
"\tstatement;\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"{\n" +
"\tif (true);\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.formatActionScriptText(
// @formatter:off
"if (condition1)\n" +
"{\n" +
"\tif (condition2)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (condition1)\n" +
"{\n" +
"\tif (condition2)\n" +
"\t{\n" +
"\t\tstatement;\n" +
"\t}\n" +
"}",
// @formatter:on
result);
}
@Test
public void testNestedBodiesWithoutParentheses() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = true;
formatter.insertSpaces = false;
String result = formatter.formatActionScriptText(
// @formatter:off
"{if (condition1) if (condition2) statement;}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"{\n" +
"\tif (condition1)\n" +
"\t\tif (condition2)\n" +
"\t\t\tstatement;\n" +
"}",
// @formatter:on
result);
}
@Test
public void testCollapseEmptyBlock() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = false;
formatter.collapseEmptyBlocks = true;
String result = formatter.formatActionScriptText(
// @formatter:off
"if (condition1) {\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (condition1) {}",
// @formatter:on
result);
}
@Test
public void testConditionsOnMultipleLines() {
FORMATTER formatter = new FORMATTER();
formatter.insertSpaceAfterKeywordsInControlFlowStatements = true;
formatter.placeOpenBraceOnNewLine = false;
formatter.insertSpaces = false;
String result = formatter.formatActionScriptText(
// @formatter:off
"if (condition1 &&\n" +
"\tcondition2\n" +
") {\n" +
"}",
// @formatter:on
problems
);
assertEquals(
// @formatter:off
"if (condition1 &&\n" +
"\t\tcondition2\n" +
"\t) {\n" +
"}",
// @formatter:on
result);
}
}