diff options
author | Sven Gothel <[email protected]> | 2013-11-10 16:08:16 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-11-10 16:08:16 +0100 |
commit | b7672bbe54d406dbf347673a85b9c9e4a8e6469a (patch) | |
tree | 2b2b85b27344ad8c6270308bd0faeb39bb86dc5b /src/test | |
parent | ce255aba6475c0a7b12f044a8ea700d5184f2b91 (diff) |
Add TestGLWindows03NEWTAnimResize: Test NEWT basic resize while holding position .. (to be refined)
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/newt/TestGLWindows03NEWTAnimResize.java | 138 |
1 files changed, 138 insertions, 0 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/newt/TestGLWindows03NEWTAnimResize.java b/src/test/com/jogamp/opengl/test/junit/newt/TestGLWindows03NEWTAnimResize.java new file mode 100644 index 000000000..026656607 --- /dev/null +++ b/src/test/com/jogamp/opengl/test/junit/newt/TestGLWindows03NEWTAnimResize.java @@ -0,0 +1,138 @@ +/** + * Copyright 2013 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.newt; + + +import java.io.IOException; + +import javax.media.opengl.GLCapabilities; +import javax.media.opengl.GLCapabilitiesImmutable; +import javax.media.opengl.GLEventListener; +import javax.media.opengl.GLProfile; + +import org.junit.Assert; +import org.junit.BeforeClass; +import org.junit.FixMethodOrder; +import org.junit.Test; +import org.junit.runners.MethodSorters; + +import com.jogamp.newt.event.TraceWindowAdapter; +import com.jogamp.newt.opengl.GLWindow; +import com.jogamp.opengl.test.junit.jogl.demos.es2.GearsES2; +import com.jogamp.opengl.test.junit.util.MiscUtils; +import com.jogamp.opengl.test.junit.util.UITestCase; +import com.jogamp.opengl.util.Animator; + +@FixMethodOrder(MethodSorters.NAME_ASCENDING) +public class TestGLWindows03NEWTAnimResize extends UITestCase { + static GLProfile glp; + static int step = 4; + static int width, height; + static long durationPerTest = step*500; // ms + + @BeforeClass + public static void initClass() { + width = 800; + height = 600; + glp = GLProfile.getDefault(); + } + + static void test(GLCapabilitiesImmutable caps, boolean undecorated) throws InterruptedException { + Assert.assertNotNull(caps); + + // + // Create native windowing resources .. X11/Win/OSX + // + final GLWindow glWindow = GLWindow.create(caps); + + glWindow.setUpdateFPSFrames(1, null); + Assert.assertNotNull(glWindow); + glWindow.setUndecorated(undecorated); + + GLEventListener demo = new GearsES2(1); + glWindow.addGLEventListener(demo); + glWindow.addWindowListener(new TraceWindowAdapter()); + Assert.assertEquals(false,glWindow.isNativeValid()); + + glWindow.setPosition(100, 100); + glWindow.setSize(width/step, height/step); + Assert.assertEquals(false,glWindow.isVisible()); + glWindow.setVisible(true); + Assert.assertEquals(true,glWindow.isVisible()); + Assert.assertEquals(true,glWindow.isNativeValid()); + + final Animator animator = new Animator(glWindow); + animator.setUpdateFPSFrames(1, null); + Assert.assertTrue(animator.start()); + + int step_i = 0; + for(int i=0; i<durationPerTest; i+=50) { + Thread.sleep(50); + int j = (int) ( i / (durationPerTest/step) ) + 1; + if(j>step_i) { + final int w = width/step * j; + final int h = height/step * j; + System.err.println("resize: "+step_i+" -> "+j+" - "+w+"x"+h); + glWindow.setSize(w, h); + step_i = j; + } + } + Thread.sleep(50); + + animator.stop(); + glWindow.destroy(); + Assert.assertEquals(false, glWindow.isNativeValid()); + Assert.assertEquals(false, glWindow.isVisible()); + } + + @Test + public void test01WindowDecor() throws InterruptedException { + GLCapabilities caps = new GLCapabilities(glp); + Assert.assertNotNull(caps); + test(caps, false /* undecorated */); + } + + @Test + public void test02WindowUndecor() throws InterruptedException { + GLCapabilities caps = new GLCapabilities(glp); + Assert.assertNotNull(caps); + test(caps, true /* undecorated */); + } + + public static void main(String args[]) throws IOException { + for(int i=0; i<args.length; i++) { + if(args[i].equals("-time")) { + durationPerTest = MiscUtils.atol(args[++i], durationPerTest); + } + } + String tstname = TestGLWindows03NEWTAnimResize.class.getName(); + org.junit.runner.JUnitCore.main(tstname); + } + +} |