1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
/*
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import java.io.IOException;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
import org.testng.ITestResult;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.Test;
import tools.javac.combo.JavacTemplateTestBase;
import static java.util.stream.Collectors.toList;
@Test
public class ScopeTest extends JavacTemplateTestBase {
private static String st_block(String... statements) {
return Arrays.stream(statements).collect(Collectors.joining("", "{", "}"));
}
private static String st_if(String condition, String then, String els) {
return "if (" + condition + ") " + then + " else " + els;
}
private static String st_while(String condition, String body) {
return "while (" + condition + ") " + body;
}
private static String st_do_while(String body, String condition) {
return "do " + body + " while (" + condition + ");";
}
private static String st_for(String init, String condition, String update, String body) {
return "for (" + init + "; " + condition + "; " + update + ") " + body;
}
private static String st_s_use() {
return "s.length();";
}
private static String st_break() {
return "break;";
}
private static String st_return() {
return "return;";
}
private static String st_noop() {
return ";";
}
private static String expr_empty() {
return "";
}
private static String expr_o_match_str() {
return "o instanceof String s";
}
private static String expr_not(String expr) {
return "!(" + expr + ")";
}
@AfterMethod
public void dumpTemplateIfError(ITestResult result) {
// Make sure offending template ends up in log file on failure
if (!result.isSuccess()) {
System.err.printf("Diagnostics: %s%nTemplate: %s%n", diags.errorKeys(), sourceFiles.stream().map(p -> p.snd).collect(toList()));
}
}
private void program(String block) {
String s = "class C { void m(Object o) " + block + "}";
addSourceFile("C.java", s);
}
private void assertOK(String block) {
reset();
program(block);
try {
compile();
}
catch (IOException e) {
throw new RuntimeException(e);
}
assertCompileSucceeded();
}
private void assertFail(String expectedDiag, String block) {
reset();
program(block);
try {
compile();
}
catch (IOException e) {
throw new RuntimeException(e);
}
assertCompileFailed(expectedDiag);
}
public void testIf() {
assertOK(st_block(st_if(expr_o_match_str(), st_s_use(), st_return()), st_s_use()));
assertOK(st_block(st_if(expr_not(expr_o_match_str()), st_return(), st_s_use()), st_s_use()));
assertFail("compiler.err.cant.resolve.location", st_block(st_if(expr_o_match_str(), st_s_use(), st_noop()), st_s_use()));
assertFail("compiler.err.cant.resolve.location", st_block(st_if(expr_not(expr_o_match_str()), st_noop(), st_s_use()), st_s_use()));
}
public void testWhile() {
assertOK(st_block(st_while(expr_not(expr_o_match_str()), st_noop()), st_s_use()));
assertFail("compiler.err.cant.resolve.location", st_block(st_while(expr_not(expr_o_match_str()), st_break()), st_s_use()));
}
public void testDoWhile() {
assertOK(st_block(st_do_while(st_noop(), expr_not(expr_o_match_str())), st_s_use()));
assertFail("compiler.err.cant.resolve.location", st_block(st_do_while(st_break(), expr_not(expr_o_match_str())), st_s_use()));
}
public void testFor() {
assertOK(st_block(st_for(expr_empty(), expr_not(expr_o_match_str()), expr_empty(), st_noop()), st_s_use()));
assertFail("compiler.err.cant.resolve.location", st_block(st_for(expr_empty(), expr_not(expr_o_match_str()), expr_empty(), st_break()), st_s_use()));
}
}
|