You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by em...@apache.org on 2020/09/28 20:24:55 UTC

[groovy] branch master updated: GROOVY-9719: add test case

This is an automated email from the ASF dual-hosted git repository.

emilles pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new 4acca28  GROOVY-9719: add test case
4acca28 is described below

commit 4acca2856baf7483b23bdf9002b35a6bf4501da2
Author: Eric Milles <er...@thomsonreuters.com>
AuthorDate: Mon Sep 28 15:24:41 2020 -0500

    GROOVY-9719: add test case
---
 src/test/groovy/bugs/Groovy9719.groovy | 79 ++++++++++++++++++++++++++++++++++
 1 file changed, 79 insertions(+)

diff --git a/src/test/groovy/bugs/Groovy9719.groovy b/src/test/groovy/bugs/Groovy9719.groovy
new file mode 100644
index 0000000..a09e764
--- /dev/null
+++ b/src/test/groovy/bugs/Groovy9719.groovy
@@ -0,0 +1,79 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 groovy.bugs
+
+import org.codehaus.groovy.control.*
+import org.junit.Test
+
+import static groovy.test.GroovyAssert.assertScript
+
+final class Groovy9719 {
+    @Test
+    void testInnerClassRef() {
+        def config = new CompilerConfiguration()
+        config.with {
+            targetDirectory = File.createTempDir()
+            jointCompilationOptions = [stubDir: File.createTempDir()]
+        }
+        def parentDir = File.createTempDir()
+        try {
+            new File(parentDir, 'p').mkdir()
+            new File(parentDir, 'q').mkdir()
+
+            def a = new File(parentDir, 'p/A.groovy')
+            a.write '''\
+                package p
+                import q.B
+                class A {
+                    @SuppressWarnings([B.C.prop])
+                    A() {
+                        println(B.C.name)
+                        println(B.C.prop)
+                    }
+                }
+            '''.stripIndent()
+            def b = new File(parentDir, 'q/B.groovy')
+            b.write '''\
+                package q
+                class B {
+                    interface C {
+                        String prop = 'rawtypes'
+                    }
+                }
+            '''.stripIndent()
+
+            def loader = new GroovyClassLoader(this.class.classLoader)
+            def cu = new CompilationUnit(config, null, loader)
+            cu.addSources(a, b)
+            cu.compile()
+
+            def basePath = config.targetDirectory.absolutePath.replace('\\', '/')
+            assertScript """
+                def loader = new GroovyClassLoader(this.class.classLoader)
+                loader.addClasspath('$basePath')
+                def a = loader.loadClass('p.A')
+                a.newInstance()
+            """
+        } finally {
+            parentDir.deleteDir()
+            config.targetDirectory.deleteDir()
+            config.jointCompilationOptions.stubDir.deleteDir()
+        }
+    }
+}