You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AntSpec.java 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. /*******************************************************************************
  2. * Copyright (c) 2005 Contributors.
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Eclipse Public License v 2.0
  6. * which accompanies this distribution and is available at
  7. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  8. *
  9. * Contributors:
  10. * Alexandre Vasseur initial implementation
  11. *******************************************************************************/
  12. package org.aspectj.testing;
  13. import java.io.BufferedReader;
  14. import java.io.File;
  15. import java.io.FileReader;
  16. import java.util.StringTokenizer;
  17. import org.apache.tools.ant.BuildEvent;
  18. import org.apache.tools.ant.BuildException;
  19. import org.apache.tools.ant.DefaultLogger;
  20. import org.apache.tools.ant.Project;
  21. import org.apache.tools.ant.ProjectHelper;
  22. import org.apache.tools.ant.Target;
  23. import org.apache.tools.ant.taskdefs.Java;
  24. import org.apache.tools.ant.types.Path;
  25. import org.aspectj.tools.ajc.AjcTestCase;
  26. import org.aspectj.util.LangUtil;
  27. /**
  28. * Element that allow to run an abritrary Ant target in a sandbox.
  29. * <p/>
  30. * Such a spec is used in a {@code <ajc-test><ant file="myAnt.xml" [target="..."] [verbose="true"]/>} XML element. The
  31. * {@code target} is optional. If not set, default <i>myAnt.xml</i> target is used. The {@code file} is looked up from
  32. * the {@code <ajc-test dir="..."/>} attribute. If @{code verbose} is set to {@code true}, the {@code ant -v} output is
  33. * piped, else nothing is reported except errors.
  34. * <p/>
  35. * The called Ant target benefits from some implicit variables:
  36. * <ul>
  37. * <li>{@code ${aj.sandbox}} points to the test current sandbox folder.</li>
  38. * <li>
  39. * {@code ${aj.path}} is an Ant refid on the classpath formed with the sandbox folder + ltw + the AjcTestCase
  40. * classpath (i.e. usually aspectjrt, junit, and testing infra).
  41. * </li>
  42. * <li>
  43. * For Java 16+, {@code ${aj.addOpensKey}} and {@code ${aj.addOpensValue}} together add {@code --add-opens} and
  44. * {@code java.base/java.lang=ALL-UNNAMED} as JVM parameters. They have to be used together and consecutively in
  45. * this order as {@code jvmarg} parameter tags inside the {@code java} Ant task.
  46. * </li>
  47. * </ul>
  48. * <p/>
  49. * Element {@code <stdout><line text="..">} and {@code <stderr><line text="..">} can be used. For now, a full match is
  50. * performed on the output of the runned target only (not the whole Ant invocation). This is experimental and you are
  51. * advised to use a {@code <junit>} task instead or a {@code <java>} whose main throws some exception upon failure.
  52. *
  53. * @author <a href="mailto:alex AT gnilux DOT com">Alexandre Vasseur</a>
  54. */
  55. public class AntSpec implements ITestStep {
  56. public static String outputFolders(String... modules) {
  57. StringBuilder s = new StringBuilder();
  58. for (String module: modules) {
  59. s.append(File.pathSeparator + ".." +File.separator + module + File.separator + "target" + File.separator + "classes");
  60. }
  61. return s.toString();
  62. }
  63. // ALSO SEE AJC
  64. private final static String DEFAULT_LTW_CLASSPATH_ENTRIES =
  65. outputFolders("asm", "bridge", "loadtime", "weaver", "org.aspectj.matcher", "bcel-builder");
  66. private boolean m_verbose = false;
  67. private AjcTest m_ajcTest;
  68. private OutputSpec m_stdErrSpec;
  69. private OutputSpec m_stdOutSpec;
  70. private String m_antFile;
  71. private String m_antTarget;
  72. public void execute(final AjcTestCase inTestCase) {
  73. final String failMessage = "test \"" + m_ajcTest.getTitle() + "\" failed: ";
  74. File buildFile = new File(m_ajcTest.getDir() + File.separatorChar + m_antFile);
  75. if (!buildFile.exists()) {
  76. AjcTestCase.fail(failMessage + "no such Ant file " + buildFile.getAbsolutePath());
  77. }
  78. Project p = new Project();
  79. final StringBuffer stdout = new StringBuffer();
  80. final StringBuffer stderr = new StringBuffer();
  81. final StringBuffer verboseLog = new StringBuffer();
  82. try {
  83. // read the Ant file
  84. p.init();
  85. p.setUserProperty("ant.file", buildFile.getAbsolutePath());
  86. // setup aj.sandbox
  87. p.setUserProperty("aj.sandbox", inTestCase.getSandboxDirectory().getAbsolutePath());
  88. // setup aj.dir "modules" folder
  89. p.setUserProperty("aj.root", new File("..").getAbsolutePath());
  90. // On Java 16+, LTW did not work on AspectJ 1.9.7 to 1.9.21 without this parameter. So, we added the argument here
  91. // and not in AjcTestCase::run, because without 'useLTW' or 'useFullLTW', there might have been a need for weaver
  92. // attachment during runtime. See also docs/release/README-1.8.7.adoc.
  93. //
  94. // Since AspectJ 1.9.21.1, '--add-opens' is no longer necessary, because we found a workaround for defining
  95. // classes in arbitrary class loaders. But some tests, e.g. AtAjLTWTests.testLTWUnweavable, still use
  96. // ClassLoader::defineClass to inject dynamically generated classes into the current class loader. Therefore, we
  97. // still set the parameters, so they can be used on demand - not for LTW as such, but for class injection. See
  98. // also tests/java5/ataspectj/ataspectj/UnweavableTest.java.
  99. //
  100. // Attention: Ant 1.6.3 under Linux neither likes "" (empty string) nor " " (space), on Windows it would not be
  101. // a problem. So we use "_dummy" Java system properties, even though they pollute the command line.
  102. p.setUserProperty(
  103. "aj.addOpensKey",
  104. LangUtil.isVMGreaterOrEqual(16) ? "--add-opens" : "-D_dummy"
  105. );
  106. p.setUserProperty(
  107. "aj.addOpensValue",
  108. LangUtil.isVMGreaterOrEqual(16) ? "java.base/java.lang=ALL-UNNAMED" : "-D_dummy"
  109. );
  110. // create the test implicit path aj.path that contains the sandbox + regular test infra path
  111. Path path = new Path(p, inTestCase.getSandboxDirectory().getAbsolutePath());
  112. populatePath(path, DEFAULT_LTW_CLASSPATH_ENTRIES);
  113. populatePath(path, AjcTestCase.DEFAULT_CLASSPATH_ENTRIES);
  114. p.addReference("aj.path", path);
  115. p.setBasedir(buildFile.getAbsoluteFile().getParent());
  116. ProjectHelper helper = ProjectHelper.getProjectHelper();
  117. helper.parse(p, buildFile);
  118. // use default target if no target specified
  119. if (m_antTarget == null) {
  120. m_antTarget = p.getDefaultTarget();
  121. }
  122. // make sure we listen for failure
  123. DefaultLogger consoleLogger = new DefaultLogger() {
  124. public void buildFinished(BuildEvent event) {
  125. super.buildFinished(event);
  126. if (event.getException() != null) {
  127. try {
  128. File antout = new File(inTestCase.getSandboxDirectory().getAbsolutePath(), "antout");
  129. if (antout.exists()) {
  130. stdout.append("Forked java command stdout:\n");
  131. System.out.println("Forked java command stdout:");
  132. FileReader fr = new FileReader(antout);
  133. BufferedReader br = new BufferedReader(fr);
  134. String line = br.readLine();
  135. while (line != null) {
  136. stdout.append(line).append("\n");
  137. System.out.println(stdout);
  138. line = br.readLine();
  139. }
  140. fr.close();
  141. }
  142. File anterr = new File(inTestCase.getSandboxDirectory().getAbsolutePath(), "anterr");
  143. if (anterr.exists()) {
  144. stdout.append("Forked java command stderr:\n");
  145. System.out.println("Forked java command stderr:");
  146. FileReader fr = new FileReader(anterr);
  147. BufferedReader br = new BufferedReader(fr);
  148. String line = br.readLine();
  149. while (line != null) {
  150. stdout.append(line).append("\n");
  151. System.out.println(stdout);
  152. line = br.readLine();
  153. }
  154. fr.close();
  155. }
  156. } catch (Exception e) {
  157. String exceptionMessage = "Exception whilst loading forked java task output " + e.getMessage() + "\n";
  158. System.out.println(exceptionMessage);
  159. e.printStackTrace();
  160. stdout.append(exceptionMessage);
  161. }
  162. // AjcTestCase.fail(failMessage + "failure " + event.getException());
  163. AjcTestCase.fail(event.getException() + "\n" + verboseLog + stdout + stderr);
  164. }
  165. }
  166. public void targetFinished(BuildEvent event) {
  167. super.targetFinished(event);
  168. if (event.getException() != null) {
  169. AjcTestCase.fail(failMessage + "failure in '" + event.getTarget() + "' " + event.getException());
  170. }
  171. }
  172. public void messageLogged(BuildEvent event) {
  173. super.messageLogged(event);
  174. Target target = event.getTarget();
  175. if (target != null && m_antTarget.equals(target.getName()) && event.getSource() instanceof Java)
  176. switch (event.getPriority()) {
  177. case Project.MSG_INFO:
  178. stdout.append(event.getMessage()).append('\n');
  179. break;
  180. case Project.MSG_WARN:
  181. stderr.append(event.getMessage()).append('\n');
  182. break;
  183. case Project.MSG_VERBOSE:
  184. verboseLog.append(event.getMessage()).append('\n');
  185. break;
  186. }
  187. }
  188. };
  189. consoleLogger.setErrorPrintStream(System.err);
  190. consoleLogger.setOutputPrintStream(System.out);
  191. consoleLogger.setMessageOutputLevel(m_verbose ? Project.MSG_VERBOSE : Project.MSG_ERR);
  192. p.addBuildListener(consoleLogger);
  193. } catch (Throwable t) {
  194. AjcTestCase.fail(failMessage + "invalid Ant script :" + t.toString());
  195. }
  196. try {
  197. p.setProperty("verbose", "true");
  198. p.fireBuildStarted();
  199. p.executeTarget(m_antTarget);
  200. p.fireBuildFinished(null);
  201. } catch (BuildException e) {
  202. p.fireBuildFinished(e);
  203. } catch (Throwable t) {
  204. AjcTestCase.fail(failMessage + "error when invoking target :" + t.toString());
  205. }
  206. // J12: Line can start with e.g. "OpenJDK 64-Bit Server VM" or "Java HotSpot(TM) 64-Bit Server VM".
  207. // J21: Line can start with e.g. "[0.016s][warning][cds]".
  208. // Therefore, we have to match a substring instead of a whole line.
  209. // Even worse, before J21, the warning appears on stdErr, but in J21+, it appears on stdOut.
  210. final String regexArchivedNonSystemClasses = "[^\n]+( warning:|\\[warning]\\[cds]) " +
  211. "Archived non-system classes are disabled because the java.system.class.loader property is specified " +
  212. ".*org.aspectj.weaver.loadtime.WeavingURLClassLoader[^\n]+\n?";
  213. /* See if stdout/stderr matches test specification */
  214. if (m_stdOutSpec != null) {
  215. String stdout2 = stdout.toString();
  216. stdout2 = stdout2.replaceAll(regexArchivedNonSystemClasses, "");
  217. m_stdOutSpec.matchAgainst(stdout2);
  218. }
  219. if (m_stdErrSpec != null) {
  220. String stderr2 = stderr.toString();
  221. // Working around this ridiculous message that still comes out of Java7 builds:
  222. if (stderr2.contains("Class JavaLaunchHelper is implemented in both") && stderr2.indexOf('\n')!=-1) {
  223. stderr2 = stderr2.replaceAll("objc\\[[0-9]*\\]: Class JavaLaunchHelper is implemented in both [^\n]*\n","");
  224. }
  225. // JDK 11 is complaining about illegal reflective calls - temporary measure ignore these - does that get all tests passing and this is the last problem?
  226. if (stderr2.contains("WARNING: Illegal reflective access using Lookup on org.aspectj.weaver.loadtime.ClassLoaderWeavingAdaptor")) {
  227. // WARNING: An illegal reflective access operation has occurred
  228. // WARNING: Illegal reflective access using Lookup on org.aspectj.weaver.loadtime.ClassLoaderWeavingAdaptor (file:/Users/aclement/gits/org.aspectj/loadtime/bin/) to class java.lang.ClassLoader
  229. // WARNING: Please consider reporting this to the maintainers of org.aspectj.weaver.loadtime.ClassLoaderWeavingAdaptor
  230. // WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
  231. // WARNING: All illegal access operations will be denied in a future release
  232. stderr2 = stderr2.replaceAll("WARNING: An illegal reflective access operation has occurred\n","");
  233. stderr2 = stderr2.replaceAll("WARNING: Illegal reflective access using Lookup on org.aspectj.weaver.loadtime.ClassLoaderWeavingAdaptor[^\n]*\n","");
  234. stderr2 = stderr2.replaceAll("WARNING: Please consider reporting this to the maintainers of org.aspectj.weaver.loadtime.ClassLoaderWeavingAdaptor\n","");
  235. stderr2 = stderr2.replaceAll("WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations\n","");
  236. stderr2 = stderr2.replaceAll("WARNING: All illegal access operations will be denied in a future release\n","");
  237. }
  238. stderr2 = stderr2.replaceAll(regexArchivedNonSystemClasses, "");
  239. m_stdErrSpec.matchAgainst(stderr2);
  240. }
  241. }
  242. public void addStdErrSpec(OutputSpec spec) {
  243. if (m_stdErrSpec != null)
  244. throw new UnsupportedOperationException("only one 'stderr' allowed in 'ant'");
  245. m_stdErrSpec = spec;
  246. }
  247. public void addStdOutSpec(OutputSpec spec) {
  248. if (m_stdOutSpec != null)
  249. throw new UnsupportedOperationException("only one 'stdout' allowed in 'ant'");
  250. m_stdOutSpec = spec;
  251. }
  252. public void setVerbose(String verbose) {
  253. if ("true".equalsIgnoreCase(verbose)) {
  254. m_verbose = true;
  255. }
  256. }
  257. public void setFile(String file) {
  258. m_antFile = file;
  259. }
  260. public void setTarget(String target) {
  261. m_antTarget = target;
  262. }
  263. public void addExpectedMessage(ExpectedMessageSpec message) {
  264. throw new UnsupportedOperationException("don't use 'message' in 'ant' specs.");
  265. }
  266. public void setBaseDir(String dir) {
  267. ;
  268. }
  269. public void setTest(AjcTest test) {
  270. m_ajcTest = test;
  271. }
  272. private static void populatePath(Path path, String pathEntries) {
  273. StringTokenizer st = new StringTokenizer(pathEntries, File.pathSeparator);
  274. while (st.hasMoreTokens()) {
  275. path.setPath(new File(st.nextToken()).getAbsolutePath());
  276. }
  277. }
  278. }