174 lines
5.9 KiB
Java
174 lines
5.9 KiB
Java
/*
|
|
* Copyright 2010-2012 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.jet.codegen;
|
|
|
|
import jet.Tuple2;
|
|
import org.jetbrains.jet.ConfigurationKind;
|
|
|
|
import java.lang.reflect.Method;
|
|
|
|
/**
|
|
* @author yole
|
|
*/
|
|
public class PatternMatchingTest extends CodegenTestCase {
|
|
|
|
@Override
|
|
protected void setUp() throws Exception {
|
|
super.setUp();
|
|
createEnvironmentWithMockJdkAndIdeaAnnotations(ConfigurationKind.JDK_ONLY);
|
|
}
|
|
|
|
@Override
|
|
protected String getPrefix() {
|
|
return "patternMatching";
|
|
}
|
|
|
|
public void testConstant() throws Exception {
|
|
loadFile();
|
|
Method foo = generateFunction();
|
|
assertTrue((Boolean) foo.invoke(null, 0));
|
|
assertFalse((Boolean) foo.invoke(null, 1));
|
|
}
|
|
|
|
public void testExceptionOnNoMatch() throws Exception {
|
|
loadFile();
|
|
Method foo = generateFunction();
|
|
assertTrue((Boolean) foo.invoke(null, 0));
|
|
assertThrows(foo, Exception.class, null, 1);
|
|
}
|
|
|
|
public void testPattern() throws Exception {
|
|
loadFile();
|
|
Method foo = generateFunction();
|
|
assertEquals("string", foo.invoke(null, ""));
|
|
assertEquals("something", foo.invoke(null, new Object()));
|
|
}
|
|
|
|
public void testInrange() throws Exception {
|
|
loadFile();
|
|
// System.out.println(generateToText());
|
|
Method foo = generateFunction();
|
|
assertEquals("array list", foo.invoke(null, 239));
|
|
assertEquals("digit", foo.invoke(null, 0));
|
|
assertEquals("digit", foo.invoke(null, 9));
|
|
assertEquals("digit", foo.invoke(null, 5));
|
|
assertEquals("not small", foo.invoke(null, 190));
|
|
assertEquals("something", foo.invoke(null, 19));
|
|
}
|
|
|
|
public void testIs() throws Exception {
|
|
loadFile();
|
|
// System.out.println(generateToText());
|
|
blackBox();
|
|
}
|
|
|
|
public void testRange() throws Exception {
|
|
blackBoxFile("patternMatching/range.jet");
|
|
}
|
|
|
|
public void testLongInRange() throws Exception {
|
|
blackBoxFile("patternMatching/longInRange.jet");
|
|
}
|
|
|
|
public void testWhenArgumentIsEvaluatedOnlyOnce() throws Exception {
|
|
blackBoxFile("patternMatching/whenArgumentIsEvaluatedOnlyOnce.kt");
|
|
}
|
|
|
|
public void testRangeChar() throws Exception {
|
|
loadFile();
|
|
// System.out.println(generateToText());
|
|
Method foo = generateFunction();
|
|
assertEquals("digit", foo.invoke(null, '0'));
|
|
assertEquals("something", foo.invoke(null, 'A'));
|
|
}
|
|
|
|
public void testWildcardPattern() throws Exception {
|
|
loadText("fun foo(x: String) = when(x) { is * -> \"something\" }");
|
|
Method foo = generateFunction();
|
|
assertEquals("something", foo.invoke(null, ""));
|
|
}
|
|
|
|
public void testNoReturnType() throws Exception {
|
|
loadText("fun foo(x: String) = when(x) { is * -> \"x\" }");
|
|
Method foo = generateFunction();
|
|
assertEquals("x", foo.invoke(null, ""));
|
|
}
|
|
|
|
public void testTuplePattern() throws Exception {
|
|
loadText("fun foo(x: #(Any, Any)) = when(x) { is #(1,2) -> \"one,two\"; else -> \"something\" }");
|
|
Method foo = generateFunction();
|
|
final Object result;
|
|
try {
|
|
result = foo.invoke(null, new Tuple2<Integer, Integer>(1, 2));
|
|
} catch (Exception e) {
|
|
System.out.println(generateToText());
|
|
throw e;
|
|
}
|
|
assertEquals("one,two", result);
|
|
assertEquals("something", foo.invoke(null, new Tuple2<String, String>("not", "tuple")));
|
|
}
|
|
|
|
// Commented for KT-621
|
|
// public void testCall() throws Exception {
|
|
// loadText("fun foo(s: String) = when(s) { .startsWith(\"J\") => \"JetBrains\"; else => \"something\" }");
|
|
// Method foo = generateFunction();
|
|
// try {
|
|
// assertEquals("JetBrains", foo.invoke(null, "Java"));
|
|
// assertEquals("something", foo.invoke(null, "C#"));
|
|
// }
|
|
// catch (Throwable t) {
|
|
// System.out.println(generateToText());
|
|
// t.printStackTrace();
|
|
// }
|
|
// }
|
|
|
|
public void testCallProperty() throws Exception {
|
|
blackBoxFile("patternMatching/callProperty.jet");
|
|
}
|
|
|
|
public void testNames() throws Exception {
|
|
loadText("fun foo(x: #(Any, Any)) = when(x) { is #(val a is String, *) -> a; else -> \"something\" }");
|
|
Method foo = generateFunction();
|
|
assertEquals("JetBrains", foo.invoke(null, new Tuple2<String, String>("JetBrains", "s.r.o.")));
|
|
assertEquals("something", foo.invoke(null, new Tuple2<Integer, Integer>(1, 2)));
|
|
}
|
|
|
|
public void testMultipleConditions() throws Exception {
|
|
loadText("fun foo(x: Any) = when(x) { is 0, 1 -> \"bit\"; else -> \"something\" }");
|
|
Method foo = generateFunction();
|
|
assertEquals("bit", foo.invoke(null, 0));
|
|
assertEquals("bit", foo.invoke(null, 1));
|
|
assertEquals("something", foo.invoke(null, 2));
|
|
}
|
|
|
|
public void testNullableWhen() throws Exception { // KT-2148
|
|
blackBoxFile("patternMatching/nullableWhen.kt");
|
|
}
|
|
|
|
public void testKt2466() throws Exception {
|
|
blackBoxFile("patternMatching/kt2466.kt");
|
|
}
|
|
|
|
public void testMatchNotNullAgainstNullable() throws Exception {
|
|
blackBoxFile("patternMatching/matchNotNullAgainstNullable.kt");
|
|
}
|
|
|
|
public void testKt2457() throws Exception {
|
|
blackBoxFile("regressions/kt2457.kt");
|
|
}
|
|
}
|