aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2020-03-27 16:28:48 +0100
committerSven Gothel <[email protected]>2020-04-06 12:57:33 +0200
commitc25a2e2a445c29db99d45bc00286585c57a19700 (patch)
treef2ffa6ac94a5fb09db89a0af2b925d17ca9f4252
parentdadf50b4768bee9b1a44851f4de69d1e6b910c68 (diff)
Bug 1398: Adding test case of commit f33681bbeeb459af4de81331d6d9241d8c9a75de
-rw-r--r--src/test/com/jogamp/opengl/test/junit/jogl/acore/TestBug1398Deadlock02AWT.java151
1 files changed, 151 insertions, 0 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestBug1398Deadlock02AWT.java b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestBug1398Deadlock02AWT.java
new file mode 100644
index 000000000..f5bf105bf
--- /dev/null
+++ b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestBug1398Deadlock02AWT.java
@@ -0,0 +1,151 @@
+/**
+ * Copyright 2020 JogAmp Community. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of JogAmp Community.
+ */
+
+package com.jogamp.opengl.test.junit.jogl.acore;
+
+import com.jogamp.opengl.GLProfile;
+import com.jogamp.opengl.GLCapabilities;
+import com.jogamp.opengl.awt.GLCanvas;
+import com.jogamp.opengl.util.Animator;
+import com.jogamp.opengl.test.junit.util.AWTRobotUtil;
+import com.jogamp.opengl.test.junit.util.UITestCase;
+import com.jogamp.opengl.test.junit.jogl.demos.es2.GearsES2;
+
+import java.awt.Frame;
+import java.awt.event.WindowAdapter;
+import java.awt.event.WindowEvent;
+
+import org.junit.Assert;
+import org.junit.Assume;
+import org.junit.BeforeClass;
+import org.junit.Test;
+import org.junit.FixMethodOrder;
+import org.junit.runners.MethodSorters;
+
+
+@FixMethodOrder(MethodSorters.NAME_ASCENDING)
+public class TestBug1398Deadlock02AWT extends UITestCase {
+ @BeforeClass
+ public static void startup() {
+ System.out.println("GLProfile "+GLProfile.glAvailabilityToString());
+ }
+
+ protected void runTestGL(final GLCapabilities caps, final boolean triggerDeadlock) throws InterruptedException {
+ final Frame frame = new Frame("TestBug1398AWT");
+ Assert.assertNotNull(frame);
+
+ final GLCanvas glCanvas = new GLCanvas(caps);
+ Assert.assertNotNull(glCanvas);
+
+ glCanvas.addGLEventListener(new GearsES2());
+
+ final Animator animator = new Animator(glCanvas);
+ animator.setUpdateFPSFrames(10, System.err);
+
+ frame.add(glCanvas);
+
+ frame.addWindowListener(new WindowAdapter() {
+ @Override
+ public void windowClosing(final WindowEvent e) {
+ animator.stop();
+ frame.dispose();
+ System.exit(0);
+ }
+ });
+
+ try {
+ javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
+ @Override
+ public void run() {
+ // Revalidate size/layout.
+ // Always validate if component added/removed.
+ // Ensure 1st paint of GLCanvas will have a valid size, hence drawable gets created.
+ frame.setSize(512, 512);
+ if( triggerDeadlock ) {
+ frame.setExtendedState(java.awt.Frame.MAXIMIZED_BOTH); // Bug1398 special case of AWTEDT(JOGL) -> AppKit -> AWTEDT deadlock
+ }
+ frame.validate();
+
+ frame.setVisible(true);
+ }});
+ } catch (final Throwable t) {
+ t.printStackTrace();
+ Assume.assumeNoException(t);
+ }
+ animator.start();
+ Assert.assertEquals(true, AWTRobotUtil.waitForRealized(glCanvas, true));
+ Assert.assertEquals(true, AWTRobotUtil.waitForContextCreated(glCanvas, true));
+
+ Thread.sleep(1000); // 1s
+
+ Assert.assertTrue(0 < animator.getTotalFPSFrames());
+
+ animator.stop();
+
+ try {
+ javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
+ @Override
+ public void run() {
+ frame.setVisible(false);
+ frame.remove(glCanvas);
+ frame.dispose();
+ }});
+ } catch (final Throwable t) {
+ t.printStackTrace();
+ Assume.assumeNoException(t);
+ }
+ }
+
+ @Test(timeout = 10000)
+ public void test01NoDeadlock() throws InterruptedException {
+ final GLProfile glp = GLProfile.getDefault();
+ System.out.println("GLProfile Default: "+glp);
+ if(glp.isGL2ES2()) {
+ final GLCapabilities caps = new GLCapabilities(glp);
+ runTestGL(caps, false);
+ } else {
+ System.out.println("not a GL2ES2 profile");
+ }
+ }
+
+ @Test(timeout = 10000)
+ public void test02TriggerDeadlock() throws InterruptedException {
+ final GLProfile glp = GLProfile.getDefault();
+ System.out.println("GLProfile Default: "+glp);
+ if(glp.isGL2ES2()) {
+ final GLCapabilities caps = new GLCapabilities(glp);
+ runTestGL(caps, true);
+ } else {
+ System.out.println("not a GL2ES2 profile");
+ }
+ }
+
+ public static void main(final String args[]) {
+ org.junit.runner.JUnitCore.main(TestBug1398Deadlock02AWT.class.getName());
+ }
+}