You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2020/05/16 09:14:30 UTC

[groovy] 02/02: GROOVY-9506: Joint compilation is broken (add test case)

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

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

commit e5e9a0f48125855d76dc79929caf4e895ffe3952
Author: Paul King <pa...@asert.com.au>
AuthorDate: Sat May 16 19:14:06 2020 +1000

    GROOVY-9506: Joint compilation is broken (add test case)
---
 .../AutoImplementWithJointCompilation.groovy       | 50 ++++++++++++++++++++++
 1 file changed, 50 insertions(+)

diff --git a/src/test/org/codehaus/groovy/tools/stubgenerator/AutoImplementWithJointCompilation.groovy b/src/test/org/codehaus/groovy/tools/stubgenerator/AutoImplementWithJointCompilation.groovy
new file mode 100644
index 0000000..9cbefa6
--- /dev/null
+++ b/src/test/org/codehaus/groovy/tools/stubgenerator/AutoImplementWithJointCompilation.groovy
@@ -0,0 +1,50 @@
+/*
+ *  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 org.codehaus.groovy.tools.stubgenerator
+
+/**
+ * Checks that {@code @AutoImplement} annotated classes work correctly with stubs.
+ */
+class AutoImplementWithJointCompilation extends StringSourcesStubTestCase {
+
+    Map<String, String> provideSources() {
+        [
+                'foo/JavaI.java': '''package foo;
+                    public interface JavaI {}
+                ''',
+                'foo/GroovyClass.groovy': '''package foo
+                    @groovy.transform.AutoImplement
+                    class GroovyClass implements Runnable {}
+                ''',
+                'foo/Main.groovy': '''package foo
+                    class Main {
+                        boolean runGroovyClass() {
+                            new GroovyClass().run()
+                            return true
+                        }
+                    }
+                '''
+        ]
+    }
+
+    void verifyStubs() {
+        def main = loader.loadClass('foo.Main').newInstance()
+        assert main.runGroovyClass()
+    }
+}