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.

ajc1921.xml 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. <!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd"[]>
  2. <!--
  3. JDK 21 (https://openjdk.org/projects/jdk/21/):
  4. Language features:
  5. JEP 430: String Templates (Preview)
  6. JEP 440: Record Patterns
  7. JEP 441: Pattern Matching for switch
  8. JEP 443: Unnamed Patterns and Variables (Preview)
  9. JEP 445: Unnamed Classes and Instance Main Methods (Preview)
  10. API or JVM only:
  11. JEP 431: Sequenced Collections
  12. JEP 439: Generational ZGC
  13. JEP 442: Foreign Function & Memory API (Third Preview)
  14. JEP 444: Virtual Threads
  15. JEP 446: Scoped Values (Preview)
  16. JEP 448: Vector API (Sixth Incubator)
  17. JEP 449: Deprecate the Windows 32-bit x86 Port for Removal
  18. JEP 451: Prepare to Disallow the Dynamic Loading of Agents
  19. JEP 452: Key Encapsulation Mechanism API
  20. JEP 453: Structured Concurrency (Preview)
  21. -->
  22. <suite>
  23. <!-- Java 21 final, Java 17, 18, 19, 20 preview -->
  24. <ajc-test dir="features1921/java21" vm="21" title="switch pattern matching preview 4 java">
  25. <compile files="SwitchPatternPreview4OK.java" options="-21" />
  26. <run class="SwitchPatternPreview4OK" vmargs="">
  27. <message/>
  28. <stdout>
  29. <line text="null" />
  30. <line text="int 123" />
  31. <line text="long 999" />
  32. <line text="double 12.340000" />
  33. <line text="String foo" />
  34. <line text="[123, foo, 999, 12.34]" />
  35. <line text="Non-circle" />
  36. <line text="Small circle" />
  37. <line text="Large circle" />
  38. <line text="Sealed sub-class A" />
  39. <line text="Sealed sub-class B" />
  40. <line text="Sealed sub-record C" />
  41. <line text="absolute value 1: -1" />
  42. <line text="other integer: 0" />
  43. <line text="positive integer: 42" />
  44. <line text="other integer: -99" />
  45. <line text="positive integer: 123" />
  46. <line text="value unavailable: null" />
  47. <line text="42" />
  48. </stdout>
  49. </run>
  50. </ajc-test>
  51. <!-- Java 21 final, Java 17, 18, 19, 20 preview -->
  52. <ajc-test dir="features1920/java20" vm="21" title="switch pattern matching preview 4 error">
  53. <compile files="SwitchPatternPreview4Error.java" options="-21">
  54. <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
  55. <message kind="error" file="SwitchPatternPreview4Error.java" text="This case label is dominated by one of the preceding case labels"/>
  56. </compile>
  57. </ajc-test>
  58. <!-- Java 21 final, Java 17, 18, 19, 20 preview -->
  59. <ajc-test dir="features1921/java21" vm="21" title="switch pattern matching preview 3 aspect">
  60. <compile files="SwitchPatternPreview3Aspect.aj" options="-21" />
  61. <run class="Application" vmargs="">
  62. <stdout>
  63. <line text="null" />
  64. <line text="int 123" />
  65. <line text="long 999" />
  66. <line text="double 12.340000" />
  67. <line text="String foo" />
  68. <line text="[123, foo, 999, 12.34]" />
  69. <line text="Non-circle" />
  70. <line text="Small circle" />
  71. <line text="Large circle" />
  72. <line text="Sealed sub-class A" />
  73. <line text="Sealed sub-class B" />
  74. <line text="Sealed sub-record C" />
  75. <line text="absolute value 1: -1" />
  76. <line text="other integer: 0" />
  77. <line text="positive integer: 42" />
  78. <line text="other integer: -99" />
  79. <line text="positive integer: 123" />
  80. <line text="value unavailable: null" />
  81. </stdout>
  82. </run>
  83. </ajc-test>
  84. <!-- Java 21 final, Java 17, 18, 19, 20 preview -->
  85. <ajc-test dir="features198/java17" vm="21" title="switch pattern matching error">
  86. <compile files="SwitchPatternError.java" options="-21">
  87. <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
  88. <message kind="error" file="SwitchPatternError.java" text="This case label is dominated by one of the preceding case labels"/>
  89. </compile>
  90. </ajc-test>
  91. <!-- Java 21 final, Java 17, 18, 19, 20 preview -->
  92. <ajc-test dir="features1919/java19" vm="21" title="switch pattern matching preview 3 error 1">
  93. <compile files="SwitchPatternPreview3Error1.java" options="-21">
  94. <!-- No more error message as of Java 21 -->
  95. <!--<message kind="error" file="SwitchPatternPreview3Error1.java" text="This case label is dominated by one of the preceding case labels"/>-->
  96. </compile>
  97. </ajc-test>
  98. <!-- Java 21 final, Java 17, 18, 19, 20 preview -->
  99. <ajc-test dir="features1919/java19" vm="21" title="switch pattern matching preview 3 error 2">
  100. <compile files="SwitchPatternPreview3Error2.java" options="-21">
  101. <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
  102. <message kind="error" file="SwitchPatternPreview3Error2.java" text="This case label is dominated by one of the preceding case labels"/>
  103. </compile>
  104. </ajc-test>
  105. <!-- Java 21 final, Java 19, 20 preview -->
  106. <ajc-test dir="features1919/java19" vm="21" title="record patterns">
  107. <compile files="RecordPatternsPreview1OK.java" options="-21"/>
  108. </ajc-test>
  109. <!-- Java 21 final, Java 19, 20 preview -->
  110. <ajc-test dir="features1919/java19" vm="21" title="record patterns error">
  111. <compile files="RecordPatternsPreview1Error.java" options="-21">
  112. <!-- https://github.com/eclipse-jdt/eclipse.jdt.core/issues/450 (fixed for preview 2 in Eclipse 2023-03, 4.27) -->
  113. <!--
  114. <message kind="error" file="RecordPatternsPreview1Error.java" text="Raw types are not allowed in record patterns"/>
  115. <message kind="error" file="RecordPatternsPreview1Error.java" text="Raw types are not allowed in record patterns"/>
  116. -->
  117. </compile>
  118. <run class="RecordPatternsPreview1Error" vmargs="">
  119. <stdout>
  120. <line text="I'm a box"/>
  121. <line text="I'm a box"/>
  122. </stdout>
  123. </run>
  124. </ajc-test>
  125. <!-- Java 21 final, Java 19, 20 preview -->
  126. <ajc-test dir="features1921/java21" vm="21" title="record patterns exhaustiveness 1">
  127. <compile files="RecordPatternsPreview1ExhaustivenessOK1.java" options="-21"/>
  128. <run class="RecordPatternsPreview1ExhaustivenessOK1" vmargs="">
  129. <stdout>
  130. <line text="y"/>
  131. <line text="a"/>
  132. </stdout>
  133. </run>
  134. </ajc-test>
  135. <!-- Java 21 final, Java 19, 20 preview -->
  136. <ajc-test dir="features1921/java21" vm="21" title="record patterns exhaustiveness aspect">
  137. <compile files="RecordPatternsPreview1ExhaustivenessAspect.aj" options="-21"/>
  138. <run class="RecordPatternsPreview1ExhaustivenessAspect" vmargs="">
  139. <stdout>
  140. <line text="y"/>
  141. <line text="a"/>
  142. <line text="Pair[x=C@000, y=D@000]"/>
  143. </stdout>
  144. </run>
  145. </ajc-test>
  146. <!-- Java 21 final, Java 19, 20 preview -->
  147. <ajc-test dir="features1919/java19" vm="21" title="record patterns aspect">
  148. <compile files="RecordPatternsPreview1Aspect.aj" options="-21"/>
  149. <run class="RecordPatternsPreview1Aspect" vmargs="">
  150. <stdout>
  151. <line text="9"/>
  152. <line text="14"/>
  153. <line text="Doing something with Point[x=2, y=7]"/>
  154. <line text="Upper-left color: RED"/>
  155. <line text="Upper-left color: RED"/>
  156. <line text="Upper-left x coordinate: 1"/>
  157. <line text="Doing something with Rectangle[upperLeft=ColoredPoint[p=Point[x=1, y=6], c=RED], lowerRight=ColoredPoint[p=Point[x=4, y=6], c=BLUE]]"/>
  158. </stdout>
  159. </run>
  160. </ajc-test>
  161. <!-- Java 21 final, Java 19, 20 preview -->
  162. <ajc-test dir="features1919/java19" vm="21" title="record patterns exhaustiveness error">
  163. <compile files="RecordPatternsPreview1ExhaustivenessError.java" options="-21">
  164. <message kind="error" file="RecordPatternsPreview1ExhaustivenessError.java" text="An enhanced switch statement should be exhaustive; a default label expected"/>
  165. </compile>
  166. </ajc-test>
  167. <!-- Java 21 final, Java 19, 20 preview -->
  168. <ajc-test dir="features1919/java19" vm="21" title="record patterns exhaustiveness 2">
  169. <compile files="RecordPatternsPreview1ExhaustivenessOK2.java" options="-21"/>
  170. <run class="RecordPatternsPreview1ExhaustivenessOK2" vmargs="">
  171. <stdout>
  172. <line text="Bob 12"/>
  173. </stdout>
  174. </run>
  175. </ajc-test>
  176. <!-- Java 21 preview -->
  177. <ajc-test dir="features1921/java21" vm="21" title="string patterns">
  178. <compile files="StringPatternsPreview1.java" options="--enable-preview -21"/>
  179. <run class="StringPatternsPreview1" vmargs="--enable-preview">
  180. <stdout ordered="yes">
  181. <line text="Bill Duck"/>
  182. <line text="10 + 20 = 30"/>
  183. <line text="You have a special New Year's sale discount waiting for you!"/>
  184. <line text="Access at 2011-11-11 11:11:11 from localhost/127.0.0.1"/>
  185. <line text="The file _dummy.dat does not exist"/>
  186. <line text="The time is 11:11:11 or roughly eleven after eleven"/>
  187. <line text="apples, oranges, peaches"/>
  188. <line text=""/>
  189. <line text="&lt;html&gt;"/>
  190. <line text=" &lt;head&gt;"/>
  191. <line text=" &lt;title&gt;My Web Page&lt;/title&gt;"/>
  192. <line text=" &lt;/head&gt;"/>
  193. <line text=" &lt;body&gt;"/>
  194. <line text=" &lt;p&gt;Hello, world&lt;/p&gt;"/>
  195. <line text=" &lt;/body&gt;"/>
  196. <line text="&lt;/html&gt;"/>
  197. <line text=""/>
  198. <line text="Description Width Height Area"/>
  199. <line text="Alfa 17.80 31.40 558.92"/>
  200. <line text="Bravo 9.60 12.40 119.04"/>
  201. <line text="Charlie 7.10 11.23 79.73"/>
  202. <line text=" Total 757.69"/>
  203. <line text=""/>
  204. <line text="My name is Joan"/>
  205. </stdout>
  206. </run>
  207. </ajc-test>
  208. <!-- Java 21 preview -->
  209. <ajc-test dir="features1921/java21" vm="21" title="string patterns aspect">
  210. <compile files="StringPatternsPreview1Aspect.aj" options="--enable-preview -21"/>
  211. <run class="StringPatternsPreview1Aspect" vmargs="--enable-preview">
  212. <stdout ordered="yes">
  213. <line text="execution(void StringPatternsPreview1Aspect.main(String[]))"/>
  214. <line text="Bill Duck"/>
  215. <line text="10 + 20 = 30"/>
  216. <line text="You have a special New Year's sale discount waiting for you!"/>
  217. <line text="Access at 2011-11-11 11:11:11 from localhost/127.0.0.1"/>
  218. <line text="The file _dummy.dat does not exist"/>
  219. <line text="The time is 11:11:11 or roughly eleven after eleven"/>
  220. <line text="apples, oranges, peaches"/>
  221. <line text=""/>
  222. <line text="&lt;html&gt;"/>
  223. <line text=" &lt;head&gt;"/>
  224. <line text=" &lt;title&gt;My Web Page&lt;/title&gt;"/>
  225. <line text=" &lt;/head&gt;"/>
  226. <line text=" &lt;body&gt;"/>
  227. <line text=" &lt;p&gt;Hello, world&lt;/p&gt;"/>
  228. <line text=" &lt;/body&gt;"/>
  229. <line text="&lt;/html&gt;"/>
  230. <line text=""/>
  231. <line text="Description Width Height Area"/>
  232. <line text="Alfa 17.80 31.40 558.92"/>
  233. <line text="Bravo 9.60 12.40 119.04"/>
  234. <line text="Charlie 7.10 11.23 79.73"/>
  235. <line text=" Total 757.69"/>
  236. <line text=""/>
  237. <line text="My name is Joan"/>
  238. </stdout>
  239. </run>
  240. </ajc-test>
  241. <!-- Java 21 preview -->
  242. <!-- TODO: Activate after https://github.com/eclipse-jdt/eclipse.jdt.core/issues/893 is done -->
  243. <ajc-test dir="features1921/java21" vm="21" title="unnamed patterns">
  244. <compile files="UnnamedPatternsPreview1.java" options="--enable-preview -21"/>
  245. <run class="UnnamedPatternsPreview1" vmargs="--enable-preview">
  246. <stdout ordered="yes">
  247. <line text="0"/>
  248. <line text="1"/>
  249. <line text="java.awt.Point[x=1,y=2]"/>
  250. <line text="java.awt.Point[x=4,y=5]"/>
  251. <line text="java.awt.Point[x=1,y=0]"/>
  252. <line text="java.awt.Point[x=4,y=0]"/>
  253. <line text="Bad number: 123xy"/>
  254. <line text="Doing something within scoped context"/>
  255. <line text="Closing scoped context"/>
  256. <line text="{ONE=NODATA, TWO=NODATA, THREE=NODATA}"/>
  257. </stdout>
  258. </run>
  259. </ajc-test>
  260. <!-- Java 21 preview -->
  261. <!-- TODO: Activate after https://github.com/eclipse-jdt/eclipse.jdt.core/issues/893 is done -->
  262. <ajc-test dir="features1921/java21" vm="21" title="unnamed patterns aspect">
  263. <compile files="UnnamedPatternsPreview1Aspect.java" options="--enable-preview -21"/>
  264. <run class="UnnamedPatternsPreview1Aspect" vmargs="--enable-preview">
  265. <stdout ordered="yes">
  266. <line text="execution(void UnnamedPatternsPreview1Aspect.main(String[]))"/>
  267. <line text="0"/>
  268. <line text="1"/>
  269. <line text="java.awt.Point[x=1,y=2]"/>
  270. <line text="java.awt.Point[x=4,y=5]"/>
  271. <line text="java.awt.Point[x=1,y=0]"/>
  272. <line text="java.awt.Point[x=4,y=0]"/>
  273. <line text="Bad number: 123xy"/>
  274. <line text="Doing something within scoped context"/>
  275. <line text="Closing scoped context"/>
  276. <line text="{ONE=NODATA, TWO=NODATA, THREE=NODATA}"/>
  277. </stdout>
  278. </run>
  279. </ajc-test>
  280. <!-- Java 21 preview -->
  281. <ajc-test dir="new" vm="21" title="underscore can still be used in pointcut patterns on Java 21+ - 1">
  282. <compile files="NotCharInPointcut.java" options="--enable-preview -21">
  283. <message kind="warning" line="51" text="advice defined in A has not been applied [Xlint:adviceDidNotMatch]"/>
  284. <message kind="warning" line="52" text="advice defined in A has not been applied [Xlint:adviceDidNotMatch]"/>
  285. <message kind="warning" line="53" text="advice defined in A has not been applied [Xlint:adviceDidNotMatch]"/>
  286. </compile>
  287. <run class="NotCharInPointcut" vmargs="--enable-preview"/>
  288. </ajc-test>
  289. <!-- Java 21 preview -->
  290. <ajc-test dir="features1921/java21" vm="21" title="underscore can still be used in pointcut patterns on Java 21+ - 2">
  291. <compile files="UnderscoreInPointcutAspect.aj" options="--enable-preview -21"/>
  292. <run class="UnderscoreInPointcutAspect" vmargs="--enable-preview">
  293. <stdout>
  294. <line text="[starts with underscore] execution(int UnderTest._add(int, int)) -> 12, 4"/>
  295. <line text="[contains underscore] execution(int UnderTest._add(int, int)) -> 12, 4"/>
  296. <line text="16"/>
  297. <line text="[starts with underscore] execution(int UnderTest._subtract(int, int)) -> 12, 4"/>
  298. <line text="[contains underscore] execution(int UnderTest._subtract(int, int)) -> 12, 4"/>
  299. <line text="8"/>
  300. <line text="[ends with underscore] execution(int UnderTest.multiply_(int, int)) -> 12, 4"/>
  301. <line text="[contains underscore] execution(int UnderTest.multiply_(int, int)) -> 12, 4"/>
  302. <line text="48"/>
  303. <line text="[ends with underscore] execution(int UnderTest.divide_(int, int)) -> 12, 4"/>
  304. <line text="[contains underscore] execution(int UnderTest.divide_(int, int)) -> 12, 4"/>
  305. <line text="3"/>
  306. <line text="[contains underscore] execution(int UnderTest.power_of(int, int)) -> 3, 3"/>
  307. <line text="27"/>
  308. <line text="[no underscore] execution(int UnderTest.squareRoot(int)) -> 49"/>
  309. <line text="7"/>
  310. </stdout>
  311. </run>
  312. </ajc-test>
  313. <!-- Java 21 preview -->
  314. <ajc-test dir="features1921/java21" vm="21" title="named class with simple main method">
  315. <!-- Compiles without preview mode, but needs preview mode to run -->
  316. <compile files="NamedClassWithSimpleMainMethodPreview1.java" options="-21"/>
  317. <run class="NamedClassWithSimpleMainMethodPreview1" vmargs="--enable-preview">
  318. <stdout>
  319. <line text="Hello world!"/>
  320. </stdout>
  321. </run>
  322. </ajc-test>
  323. <!-- Java 21 preview -->
  324. <ajc-test dir="features1921/java21" vm="21" title="named aspect with simple main method">
  325. <!-- Compiles without preview mode, but needs preview mode to run -->
  326. <compile files="NamedAspectWithSimpleMainMethodPreview1.aj" options="-21"/>
  327. <run class="NamedAspectWithSimpleMainMethodPreview1" vmargs="--enable-preview">
  328. <stdout>
  329. <line text="Hello world!"/>
  330. </stdout>
  331. </run>
  332. </ajc-test>
  333. <!-- Java 21 preview -->
  334. <!-- TODO: Activate after https://github.com/eclipse-jdt/eclipse.jdt.core/issues/1106 is done -->
  335. <ajc-test dir="features1921/java21" vm="21" title="unnamed class with simple main method">
  336. <compile files="UnnamedClassWithSimpleMainMethodPreview1.java" options="--enable-preview -21"/>
  337. <run class="UnnamedClassWithSimpleMainMethodPreview1" vmargs="--enable-preview">
  338. <stdout>
  339. <line text="Hello world!"/>
  340. </stdout>
  341. </run>
  342. </ajc-test>
  343. <!-- https://github.com/eclipse-aspectj/aspectj/issues/279, AspectJ 1.9.21.1 -->
  344. <ajc-test dir="bugs1921/github_279" vm="8" title="same class woven concurrently in parallel-capable classloader">
  345. <compile files="Application.java Greeter.java GreeterImpl.java ParallelCapableClassLoader.java" options="-8"/>
  346. <compile files="HelloInterceptor.java" options="-8 -Xlint:ignore"/>
  347. <!-- Problem only reproduces in forked JVM with java agent, hence Ant build -->
  348. <ant file="ant.xml" target="same class woven concurrently in parallel-capable classloader" verbose="true"/>
  349. </ajc-test>
  350. <!--
  351. https://github.com/eclipse-aspectj/aspectj/issues/285, AspectJ 1.9.21.2
  352. See also org.aspectj.systemtest.ajc171.NewFeatures::testSharedCache. This is a quasi negative test missing back in
  353. 1.7.2 when the shared cache was introduced.
  354. -->
  355. <ajc-test dir="bugs1921/github_285" title="shared cache negative test">
  356. <compile files="Unwoven.java" options="-1.5"/>
  357. <run class="Unwoven" ltw="aop.xml" usefullltw="true"
  358. vmargs="-Daj.weaving.cache.enabled=true -Daj.weaving.cache.dir=./ -Daj.weaving.cache.impl=shared">
  359. <stdout>
  360. <line text="Hello world"/>
  361. </stdout>
  362. <!--
  363. Nothing should be printed on stderr, especially no fatal NPE with message
  364. 'Cannot read the array length because "b" is null' and subsequent ajcore.*.txt
  365. -->
  366. <stderr/>
  367. </run>
  368. </ajc-test>
  369. </suite>