JS backend: added tests for labels

This commit is contained in:
Alexey Tsvetkov
2014-10-13 20:43:58 +04:00
parent 0bc05135d8
commit 09c98226c8
12 changed files with 378 additions and 4 deletions
@@ -180,10 +180,6 @@ public final class InlineTest extends SingleFileTranslationWithDirectivesTest {
checkFooBoxIsOkWithInlineDirectives();
}
public void testLabelNameClashing() throws Exception {
checkFooBoxIsOkWithInlineDirectives();
}
public void testClassObject() throws Exception {
checkFooBoxIsOkWithInlineDirectives();
}
@@ -0,0 +1,61 @@
/*
* Copyright 2010-2014 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 org.jetbrains.k2js.test.semantics;
import org.jetbrains.k2js.test.SingleFileTranslationWithDirectivesTest;
public class LabelTest extends SingleFileTranslationWithDirectivesTest {
public LabelTest() {
super("labels/");
}
public void testSimpleLabel() throws Exception {
checkFooBoxIsOkWithInlineDirectives();
}
public void testSiblingLabels() throws Exception {
checkFooBoxIsOkWithInlineDirectives();
}
public void testNestedLabels() throws Exception {
checkFooBoxIsOkWithInlineDirectives();
}
public void testSimpleLabelInlined() throws Exception {
checkFooBoxIsOkWithInlineDirectives();
}
public void testSiblingLabelsInlined() throws Exception {
checkFooBoxIsOkWithInlineDirectives();
}
public void testSiblingLabelsInlinedClashing() throws Exception {
checkFooBoxIsOkWithInlineDirectives();
}
public void testNestedLabelsInlinedClashing() throws Exception {
checkFooBoxIsOkWithInlineDirectives();
}
public void testLabelWithVariableClashing() throws Exception {
checkFooBoxIsOkWithInlineDirectives();
}
public void testNestedLabelsInlinedClashingAtFunctionsWithClosure() throws Exception {
checkFooBoxIsOkWithInlineDirectives();
}
}
@@ -17,6 +17,7 @@
package org.jetbrains.k2js.test.utils;
import com.google.dart.compiler.backend.js.ast.JsFunction;
import com.google.dart.compiler.backend.js.ast.JsLabel;
import com.google.dart.compiler.backend.js.ast.JsNode;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
@@ -27,6 +28,7 @@ import static org.jetbrains.jet.InTextDirectivesUtils.findLinesWithPrefixesRemov
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.jetbrains.k2js.inline.util.UtilPackage.collectInstances;
public class DirectiveTestUtils {
@@ -89,12 +91,39 @@ public class DirectiveTestUtils {
}
};
private static final DirectiveHandler COUNT_LABELS = new DirectiveHandler("CHECK_LABELS_COUNT") {
@Override
void processEntry(@NotNull JsNode ast, @NotNull ArgumentsHelper arguments) throws Exception {
String functionName = arguments.findNamedArgument("function");
String labelName = arguments.findNamedArgument("name");
String countStr = arguments.findNamedArgument("count");
assert countStr != null;
int expectedCount = Integer.valueOf(countStr);
JsNode scope = AstSearchUtil.getFunction(ast, functionName);
List<JsLabel> labels = collectInstances(JsLabel.class, scope);
int actualCount = 0;
for (JsLabel label : labels) {
if (label.getName().getIdent().equals(labelName)) {
actualCount++;
}
}
String message = "Label " + labelName +
" is expected to be counted " + expectedCount +
" times at function " + functionName +
" but was encountered " + actualCount + " times";
assertEquals(message, expectedCount, actualCount);
}
};
public static void processDirectives(@NotNull JsNode ast, @NotNull String sourceCode) throws Exception {
FUNCTION_CONTAINS_NO_CALLS.process(ast, sourceCode);
FUNCTION_NOT_CALLED.process(ast, sourceCode);
FUNCTION_CALLED_IN_SCOPE.process(ast, sourceCode);
FUNCTION_NOT_CALLED_IN_SCOPE.process(ast, sourceCode);
FUNCTIONS_HAVE_SAME_LINES.process(ast, sourceCode);
COUNT_LABELS.process(ast, sourceCode);
}
public static void checkFunctionContainsNoCalls(JsNode node, String functionName) throws Exception {