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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
|
/*
* Copyright (c) 2021, 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.
*/
package compiler.lib.ir_framework;
import compiler.lib.ir_framework.test.DeclaredTest;
import compiler.lib.ir_framework.shared.TestRunException;
import compiler.lib.ir_framework.test.TestVM;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Test info class which provides some useful utility methods and information about a <b>custom run test</b>.
*
* @see Run
*/
public class RunInfo extends AbstractInfo {
private final Method testMethod;
private final DeclaredTest test;
private final Map<String, DeclaredTest> tests;
private final boolean hasMultipleTests;
public RunInfo(List<DeclaredTest> tests) {
super(tests.get(0).getTestMethod().getDeclaringClass());
this.test = tests.get(0);
this.testMethod = test.getTestMethod();
this.hasMultipleTests = tests.size() != 1;
if (hasMultipleTests) {
this.tests = new HashMap<>();
for (DeclaredTest test : tests) {
this.tests.put(test.getTestMethod().getName(), test);
}
} else {
this.tests = null;
}
}
/**
* Get the associated test method object of this custom run test. This method can only be called if <i>one</i> test
* method is specified in the custom run test ({@link Run#test()}). Otherwise, use {@link #getTest(String)}.
*
* @return the associated test method object.
* @throws TestRunException if called for a custom run test that specifies multiple test methods in {@link Run#test()}.
*/
public Method getTest() {
checkSingleTest("getTest");
return testMethod;
}
/**
* Get the associated method object of the test method with the name {@code testName}. This method can only be called
* if the custom run test specifies more than one test method in ({@link Run#test()}). Otherwise, use {@link #getTest()}.
*
* @param testName the test method for which the method object should be returned.
* @return the associated test method object with the name {@code testName}.
* @throws TestRunException if there is no test method with the name {@code testName} or if called with only
* <i>one</i> associated test method.
*/
public Method getTest(String testName) {
checkMultipleTests("getTest");
return getMethod(testName);
}
/**
* Return a boolean indicating if the framework skipped a compilation of the associated test method after the warm-up
* due to VM flags not allowing a compilation on the requested level in {@link Test#compLevel()}. This method can only
* be called if <i>one</i> test method is specified in the custom run test ({@link Run#test()}). Otherwise, use
* {@link #isCompilationSkipped(String)}.
*
* @return {@code true} if the framework skipped compilation of the test;
* {@code false} otherwise.
* @throws TestRunException if called for a custom run test that specifies multiple test methods in {@link Run#test()}.
*/
public boolean isCompilationSkipped() {
checkSingleTest("isCompilationSkipped");
return test.getCompLevel() == CompLevel.SKIP;
}
/**
* Return a boolean indicating if the framework skipped a compilation of the associated test method with the name
* {@code testName} after the warm-up due to VM flags not allowing a compilation on the requested level in
* {@link Test#compLevel()}. This method can only be called if the custom run test specifies more than one test method
* in ({@link Run#test()}). Otherwise, use {@link #isCompilationSkipped()}.
*
* @param testName the test method for which the method object should be returned.
* @return {@code true} if the framework skipped compilation of the test;
* {@code false} otherwise.
* @throws TestRunException if there is no test method with the name {@code testName} or if called with only
* <i>one</i> associated test method.
*/
public boolean isCompilationSkipped(String testName) {
checkMultipleTests("isCompilationSkipped");
return getDeclaredTest(testName).getCompLevel() == CompLevel.SKIP;
}
/**
* Returns a boolean indicating if the associated test method is C1 compiled. This method can only be called if
* <i>one</i> test method is specified in the custom run test ({@link Run#test()}). Otherwise, use
* {@link #isTestC1Compiled(String)}.
*
* @return {@code true} if the associated test method is C1 compiled;
* {@code false} otherwise.
* @throws TestRunException if called for a custom run test that specifies multiple test methods in {@link Run#test()}.
*/
public boolean isTestC1Compiled() {
checkSingleTest("isTestC1Compiled");
return TestVM.isC1Compiled(testMethod);
}
/**
* Returns a boolean indicating if the associated test method with the name {@code testName} is C1 compiled.
* This method can only be called if the custom run test specifies more than one test method in ({@link Run#test()}).
* Otherwise, use {@link #isTestC1Compiled()}.
*
* @param testName the name of the test method.
* @return {@code true} if the test method with the name {@code testName} is C1 compiled;
* {@code false} otherwise.
* @throws TestRunException if there is no test method with the name {@code testName} or if called with only
* <i>one</i> associated test method.
*/
public boolean isTestC1Compiled(String testName) {
checkMultipleTests("isTestC1Compiled");
return TestVM.isC1Compiled(getMethod(testName));
}
/**
* Returns a boolean indicating if the associated test method is C2 compiled. This method can only be called if
* <i>one</i> test method is specified in the custom run test ({@link Run#test()}). Otherwise, use
* {@link #isTestC2Compiled(String)}.
*
* @return {@code true} if the associated test method is C2 compiled;
* {@code false} otherwise.
* @throws TestRunException if called for a custom run test that specifies multiple test methods in {@link Run#test()}.
*/
public boolean isTestC2Compiled() {
checkSingleTest("isTestC2Compiled");
return TestVM.isC2Compiled(testMethod);
}
/**
* Returns a boolean indicating if the associated test method with the name {@code testName} is C2 compiled.
* This method can only be called if the custom run test specifies more than one test method in ({@link Run#test()}).
* Otherwise, use {@link #isTestC2Compiled()}.
*
* @param testName the name of the test method.
* @return {@code true} if the test method with the name {@code testName} is C2 compiled;
* {@code false} otherwise.
* @throws TestRunException if there is no test method with the name {@code testName} or if called with only
* <i>one</i> associated test method.
*/
public boolean isTestC2Compiled(String testName) {
checkMultipleTests("isTestC2Compiled");
return TestVM.isC2Compiled(getMethod(testName));
}
/**
* Returns a boolean indicating if the associated test method is compiled at {@code compLevel}. This method can only
* be called if <i>one</i> test method is specified in the custom run test ({@link Run#test()}).
* Otherwise, use {@link #isTestCompiledAtLevel(String, CompLevel)}.
*
* @param compLevel the compilation level
* @return {@code true} if the associated test method is compiled at {@code compLevel};
* {@code false} otherwise.
* @throws TestRunException if called for a custom run test that specifies multiple test methods in {@link Run#test()}.
*/
public boolean isTestCompiledAtLevel(CompLevel compLevel) {
checkSingleTest("isTestCompiledAtLevel");
return TestVM.isCompiledAtLevel(testMethod, compLevel);
}
/**
* Returns a boolean indicating if the associated test method with the name {@code testName} is compiled at
* {@code compLevel}. This method can only be called if the custom run test specifies more than one test method
* in ({@link Run#test()}). Otherwise, use {@link #isTestCompiledAtLevel(CompLevel)}.
*
* @param testName the name of the test method.
* @param compLevel the compilation level.
* @return {@code true} if the test method with the name {@code testName} is compiled at {@code compLevel};
* {@code false} otherwise.
* @throws TestRunException if there is no test method with the name {@code testName} oor if called with only
* <i>one</i> associated test method.
*/
public boolean isTestCompiledAtLevel(String testName, CompLevel compLevel) {
checkMultipleTests("isTestCompiledAtLevel");
return TestVM.isCompiledAtLevel(getMethod(testName), compLevel);
}
private void checkSingleTest(String calledMethod) {
if (hasMultipleTests) {
throw new TestRunException("Use " + calledMethod + "(String) with testName String argument in @Run method " +
"for custom run test that specifies more than one @Test method.");
}
}
private void checkMultipleTests(String calledMethod) {
if (!hasMultipleTests) {
throw new TestRunException("Use " + calledMethod + "() without testName String argument in @Run method " +
"for custom run test that specifies exactly one @Test method.");
}
}
private DeclaredTest getDeclaredTest(String testName) {
DeclaredTest test = tests.get(testName);
if (test == null) {
throw new TestRunException("Could not find @Test \"" + testName + "\" in " + testClass + " being associated with" +
" corresponding @Run method.");
}
return test;
}
private Method getMethod(String testName) {
return getDeclaredTest(testName).getTestMethod();
}
}
|