/** * Copyright 2011 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.awt.text; 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.jogl.acore.TestSharedContextVBOES2NEWT3; import com.jogamp.opengl.test.junit.util.UITestCase; import java.awt.Frame; import java.io.IOException; import org.junit.Assert; import org.junit.Assume; import org.junit.Before; import org.junit.BeforeClass; import org.junit.After; import org.junit.Test; import org.junit.FixMethodOrder; import org.junit.runners.MethodSorters; /* * Unit tests for Bug464 * Some ATI-Drivers crash the JVM if VBO-related glFunctions are called. This test checks * if TextRenderer calls any of these functions while it's useVertexArray variable is set * to false. * 2D- and 3D-TextRendering is tested by creating a GLCanvas showing a simple line of text * while filtering all glFunction calls by using a modified version of TraceGL2. * VBO-related function are logged to the disallowedMethodCalls String of the GLEventListener * instead of being executed (to prevent JVM crashes). Therefore, if the * disallowedMethodCalls isn't an empty String after the test, the test fails. * * Other classes related to this test: * TestTextRendererGLEventListener01 * TestTextRendererTraceGL2Mock01 */ @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class TestAWTTextRendererUseVertexArrayBug464 extends UITestCase { static GLProfile glp; static GLCapabilities caps; private GLCanvas glCanvas; private Frame frame; @BeforeClass public static void initClass() { glp = GLProfile.get(GLProfile.GL2); Assert.assertNotNull(glp); caps = new GLCapabilities(glp); Assert.assertNotNull(caps); } @Before public void initTest() { glCanvas = new GLCanvas(caps); frame = new Frame("TextRenderer Test"); Assert.assertNotNull(frame); frame.add(glCanvas); try { javax.swing.SwingUtilities.invokeAndWait(new Runnable() { public void run() { frame.setSize(512, 512); frame.setVisible(true); }}); } catch( final Throwable throwable ) { throwable.printStackTrace(); Assume.assumeNoException( throwable ); } } @After public void cleanupTest() { try { javax.swing.SwingUtilities.invokeAndWait(new Runnable() { public void run() { frame.setVisible(false); frame.remove(glCanvas); frame.dispose(); }}); } catch( final Throwable throwable ) { throwable.printStackTrace(); Assume.assumeNoException( throwable ); } glCanvas=null; frame=null; } @Test public void testTextRendererDraw2D() throws InterruptedException { final TextRendererGLEventListener01 listener = new TextRendererGLEventListener01(1); Assert.assertNotNull(listener); glCanvas.addGLEventListener(listener); final Animator animator = new Animator(glCanvas); animator.start(); Thread.sleep(500); // 500 ms animator.stop(); final String disallowedMethods = listener.getDisallowedMethodCalls(); if (!disallowedMethods.equals("")) { Assert.fail("Following VBO-related glMethods have been called: "+ disallowedMethods); } } @Test public void testTextRendererDraw3D() throws InterruptedException { final TextRendererGLEventListener01 listener = new TextRendererGLEventListener01(2); Assert.assertNotNull(listener); glCanvas.addGLEventListener(listener); final Animator animator = new Animator(glCanvas); animator.start(); Thread.sleep(500); // 500 ms animator.stop(); final String disallowedMethods = listener.getDisallowedMethodCalls(); if (!disallowedMethods.equals("")) { Assert.fail("Following VBO-related glMethods have been called: "+ disallowedMethods); } } public static void main(final String args[]) throws IOException { org.junit.runner.JUnitCore.main(TestAWTTextRendererUseVertexArrayBug464.class.getName()); } }