Update contrib.
1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
21 #ifdef SYMBIAN_GRAPHICS_EGL_SGIMAGELITE
22 #include <sgresource/sgimage.h>
24 #include <graphics/sgimage.h>
25 #endif //SYMBIAN_GRAPHICS_EGL_SGIMAGELITE
26 #include <test/tefunit.h> // for ASSERT macros
29 #include "egltest_general.h"
31 #include <test/egltestcommonconversion.h>
32 #include <test/egltestcommoninisettings.h>
33 #include <test/egltestcommonsgimageinfo.h>
37 @SYMTestCaseID GRAPHICS-EGL-0005
43 @SYMREQ See SGL.GT0386.401 document
46 Dump diagnostic information that may help in debugging any issues found in the other tests.
47 This is not really a test in itself, but can be listed in the test script as a specific test step.
48 It is expected always to pass.
51 Repeatedly call eglQueryString() with each of the following parameters:
56 For each call, dump the resulting string to the test log file.
57 If the result of EGL_CLIENT_APIS includes "OpenVG" then bind to the OpenVG API and repeatedly call vgGetString() with each of the following parameters
62 If the result of EGL_CLIENT_APIS includes "OpenGLES" then bind to the OpenGLES API and repeatedly call GetString() with each of the following parameters
68 @SYMTestExpectedResults
69 All data will be dumped to the test log file.
70 There are no specific pass criteria for this test case.
72 TVerdict CEglTest_DumpStrings::doTestStepL()
74 SetTestStepID(_L("GRAPHICS-EGL-0005"));
75 INFO_PRINTF1(_L("CEglTest_DumpStrings::doTestStepL"));
77 // Create display object
80 CTestEglSession* eglSess = CTestEglSession::NewLC(Logger(), iDisplay, 0);
82 // Initialise the display object
83 eglSess->InitializeL();
86 INFO_PRINTF1(_L("Dumping EGL strings"));
88 // Note that eglQueryString() MUST be called AFTER eglInitialize() for iDisplay
89 TPtrC8 ptrEglClientApis((const TText8 *)eglQueryString(iDisplay, EGL_CLIENT_APIS));
90 DumpString(_L("EGL_CLIENT_APIS"),ptrEglClientApis);
92 const char* strEglExtensions = eglQueryString(iDisplay, EGL_EXTENSIONS);
93 ASSERT_EGL_TRUE(strEglExtensions!=NULL);
94 DumpString(_L("EGL_EXTENSIONS"), TPtrC8((const TText8 *)strEglExtensions));
96 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
97 ASSERT_EGL_TRUE(strEglVendor!=NULL);
98 DumpString(_L("EGL_VENDOR"), TPtrC8((const TText8 *)strEglVendor));
100 const char* strEglVersion = eglQueryString(iDisplay, EGL_VERSION);
101 ASSERT_EGL_TRUE(strEglVersion!=NULL);
102 DumpString(_L("EGL_VERSION"), TPtrC8((const TText8 *)strEglVersion));
105 if (ptrEglClientApis.Find(_L8("OpenVG")) >= 0)
107 INFO_PRINTF1(_L("Dumping OpenVG strings"));
109 // OpenVG needs a current VG context before it will allow the call to vgGetString
110 EGLConfig currentConfig = eglSess->GetConfigExactMatchL(EPBufferAttribsColor64K);
111 eglSess->CreatePbufferSurfaceAndMakeCurrentL(currentConfig, KPixmapSize, EGL_OPENVG_API);
113 TPtrC8 ptrVgVendor((const TText8 *)vgGetString(VG_VENDOR));
114 DumpString(_L("VG_VENDOR"), ptrVgVendor);
116 TPtrC8 ptrVgRenderer((const TText8 *)vgGetString(VG_RENDERER));
117 DumpString(_L("VG_RENDERER"), ptrVgRenderer);
119 TPtrC8 ptrVgVersion((const TText8 *)vgGetString(VG_VERSION));
120 DumpString(_L("VERSION"), ptrVgVersion);
122 TPtrC8 ptrVgExtensions((const TText8 *)vgGetString(VG_EXTENSIONS));
123 DumpString(_L("VG_EXTENSIONS"), ptrVgExtensions);
125 //cleanup the context & surface
126 eglSess->CleanupSurfaceSgImageL();
130 if (ptrEglClientApis.Find(_L8("OpenGL_ES")) >= 0)
132 INFO_PRINTF1(_L("Dumping OpenGLES strings"));
134 // OpenGLES needs a current GLES context before it will allow the call to glGetString
135 EGLConfig currentConfig = eglSess->GetConfigExactMatchL(EPBufferAttribsColor64K);
136 eglSess->CreatePbufferSurfaceAndMakeCurrentL(currentConfig, KPixmapSize, EGL_OPENGL_ES_API);
138 TPtrC8 ptrGlesVendor((const TText8 *)glGetString(GL_VENDOR));
139 DumpString(_L("GL_VENDOR"), ptrGlesVendor);
141 TPtrC8 ptrGlesRenderer((const TText8 *)glGetString(GL_RENDERER));
142 DumpString(_L("GL_RENDERER"), ptrGlesRenderer);
144 TPtrC8 ptrGlesVersion((const TText8 *)glGetString(GL_VERSION));
145 DumpString(_L("GL_VERSION"), ptrGlesVersion);
147 TPtrC8 ptrGlesExtensions((const TText8 *)glGetString(GL_EXTENSIONS));
148 DumpString(_L("GL_EXTENSIONS"), ptrGlesExtensions);
150 //cleanup the context & surface
151 eglSess->CleanupSurfaceSgImageL();
154 CleanupStack::PopAndDestroy(eglSess);
157 CloseTMSGraphicsStep();
158 return TestStepResult();
161 void CEglTest_DumpStrings::DumpString(const TDesC& aField, const TDesC8& aValue)
163 const TInt KMaxValueLength = 256;
164 TBuf16<KMaxValueLength> bufValue;
165 bufValue.Copy(aValue.Left(KMaxValueLength));
166 INFO_PRINTF3(_L("%S: \"%S\""), &aField, &bufValue);
170 @SYMTestCaseID GRAPHICS-EGL-0010
176 @SYMREQ See SGL.GT0386.401 document
179 To ensure that eglQueryString() returns the correct information.
182 Call eglQueryString() with the EGL_EXTENSIONS parameter
184 @SYMTestExpectedResults
185 The returned space separated list is expected to include the items as defined in the .ini file.
186 This list is implementation specific, so the .ini file can be configured depending on each implementation.
187 As an example, the following ones are expected in most EGL implementations:
188 * EGL_NOK_pixmap_type_rsgimage
189 * EGL_SYMBIAN_COMPOSITION
191 * EGL_KHR_image_pixmap
192 * EGL_KHR_reusable_sync
193 The above list will be configurable on a per-platform basis, via an INI file. If a platform does not support
194 any of the above extensions then it may opt not to test for it via the INI file.
196 TVerdict CEglTest_QueryString_Extensions::doTestStepL()
198 SetTestStepID(_L("GRAPHICS-EGL-0010"));
199 INFO_PRINTF1(_L("CEglTest_QueryString_Extensions::doTestStepL"));
201 TInt numExtensions=0;
202 if (!GetIntFromConfig(ConfigSection(), KKeyCountExtensionsEGL, numExtensions))
204 ERR_PRINTF2(_L("Cannot find key '%S' in INI file"), &KKeyCountExtensionsEGL);
205 User::Leave(KErrArgument);
207 INFO_PRINTF2(_L("Looking for %d EGL extensions"), numExtensions);
208 TBuf<32> bufExtensionNameKey;
209 TBuf16<128> bufExtensionNameValue16;
210 TPtrC16 ptrExtensionNameValue16(bufExtensionNameValue16);
211 for(TInt i=0; i<numExtensions; i++)
213 bufExtensionNameKey.Format(KKeyExtensionEGLX, i);
214 if (!GetStringFromConfig(ConfigSection(), bufExtensionNameKey, ptrExtensionNameValue16))
216 ERR_PRINTF2(_L("Cannot find key '%S' in INI file"), &bufExtensionNameKey);
217 User::Leave(KErrArgument);
219 INFO_PRINTF2(_L("Checking for extension \"%S\""), &ptrExtensionNameValue16);
220 TEST(CheckForExtensionL(0, ptrExtensionNameValue16));
224 if (!GetIntFromConfig(ConfigSection(), KKeyCountExtensionsVG, numExtensions))
226 ERR_PRINTF2(_L("Cannot find key '%S' in INI file"), &KKeyCountExtensionsVG);
227 User::Leave(KErrArgument);
229 INFO_PRINTF2(_L("Looking for %d VG extensions"), numExtensions);
230 for(TUint i=0; i<numExtensions; i++)
232 bufExtensionNameKey.Format(KKeyExtensionVGX, i);
233 if (!GetStringFromConfig(ConfigSection(), bufExtensionNameKey, ptrExtensionNameValue16))
235 ERR_PRINTF2(_L("Cannot find key '%S' in INI file"), &bufExtensionNameKey);
236 User::Leave(KErrArgument);
238 INFO_PRINTF2(_L("Checking for extension \"%S\""), &ptrExtensionNameValue16);
239 TEST(CheckForExtensionL(0, ptrExtensionNameValue16));
243 CloseTMSGraphicsStep();
244 return TestStepResult();
248 @SYMTestCaseID GRAPHICS-EGL-0012
257 Ensure that eglGetProcAddress() returns NULL when given invalid data.
260 Call eglGetProcAddress() with a <procname> that is known not to be supported - e.g. "qwerty"
261 Call eglGetProcAddress() with an empty <procname> - i.e. ""
262 Call eglGetProcAddress() with a null <procname> - i.e. NULL
264 @SYMTestExpectedResults
265 For each case, eglGetProcAddress() should return NULL, without raising an EGL error.
267 TVerdict CEglTest_General_Negative_ProcAddress::doTestStepL()
269 SetTestStepID(_L("GRAPHICS-EGL-0012"));
270 INFO_PRINTF1(_L("CEglTest_General_Negative_ProcAddress::doTestStepL"));
272 // Create display object
275 // Initialize display object
276 INFO_PRINTF1(_L("Calling eglInitialize"));
277 TEST_EGL_ERROR(eglInitialize(iDisplay, NULL, NULL), EGL_SUCCESS);
279 INFO_PRINTF1(_L("Calling eglGetProcAddress() with a 'procname' that is known not to be supported"));
280 TEST_EGL_ERROR(eglGetProcAddress("qwerty") == NULL, EGL_SUCCESS);
282 INFO_PRINTF1(_L("Calling eglGetProcAddress() with an empty 'procname'"));
283 TEST_EGL_ERROR(eglGetProcAddress("") == NULL, EGL_SUCCESS);
285 INFO_PRINTF1(_L("Calling eglGetProcAddress() with a null 'procname'"));
286 TEST_EGL_ERROR(eglGetProcAddress(NULL) == NULL, EGL_SUCCESS);
290 CloseTMSGraphicsStep();
291 return TestStepResult();
296 @SYMTestCaseID GRAPHICS-EGL-0309
301 1. EglTerminate() with an invalid/non-existant display
302 2. Double eglTerminate() with an uninitialised display
303 3. Double eglTerminate() with an initialised display
305 @SYMTestPriority High
307 @SYMTestStatus Implemented
310 1. Call eglTerminate with an invalid display handle argument. Call eglTerminate with EGL_NO_DISPLAY argument
311 2. Create an uninitialised display and call eglTerminate() twice. Re-create and terminate the display to check for memory leaks.
312 3. Create an initialised display and call eglTerminate() twice. Re-create and terminate the display to check for memory leaks.
314 @SYMTestExpectedResults
315 1. eglTerminate should return EGL_FALSE on both calls with error EGL_BAD_DISPLAY
316 2. eglTerminate should return EGL_TRUE on all calls and the display should not be set to EGL_NO_DISPLAY.
317 3. eglTerminate should return EGL_TRUE on all calls and the display should not be set to EGL_NO_DISPLAY.
318 The UHEAP markers should indicate no memory leaks after this test case has run.
320 TVerdict CEglTest_EglTerminate_Negative::doTestStepL()
322 INFO_PRINTF1(_L("CEglTest_EglTerminate_Negative::doTestStepL"));
323 SetTestStepID(_L("GRAPHICS-EGL-0309"));
325 //Test 1 - Arbitrary invalid display handle
326 const EGLDisplay invalidDisplay = 77;
328 //Call eglTerminate with the invalid display handle
329 TEST(eglTerminate(invalidDisplay) == EGL_FALSE);
330 ASSERT_EGL_ERROR(EGL_BAD_DISPLAY);
332 //Call eglTerminate with argument EGL_NO_DISPLAY
333 TEST(eglTerminate(EGL_NO_DISPLAY) == EGL_FALSE);
334 ASSERT_EGL_ERROR(EGL_BAD_DISPLAY);
336 //Test 2 - Create display object
337 iDisplay = EGL_NO_DISPLAY;
340 //Call eglTerminate twice
341 ASSERT_EGL_TRUE(eglTerminate(iDisplay));
342 TEST(eglGetError() == EGL_SUCCESS);
344 ASSERT_EGL_TRUE(eglTerminate(iDisplay));
345 TEST(eglGetError() == EGL_SUCCESS);
347 //Recreate display object and call eglTerminate()
348 iDisplay = EGL_NO_DISPLAY;
350 ASSERT_EGL_TRUE(eglTerminate(iDisplay));
351 TEST(eglGetError() == EGL_SUCCESS);
354 iDisplay = EGL_NO_DISPLAY;
356 CTestEglSession* eglSess = CTestEglSession::NewLC(Logger(), iDisplay, 0);
358 // Initialise the display object
359 eglSess->InitializeL();
361 //Call eglTerminate twice
362 ASSERT_EGL_TRUE(eglTerminate(iDisplay));
363 TEST(eglGetError() == EGL_SUCCESS);
365 ASSERT_EGL_TRUE(eglTerminate(iDisplay));
366 TEST(eglGetError() == EGL_SUCCESS);
368 //Recreate display object
369 iDisplay = EGL_NO_DISPLAY;
373 ASSERT_EGL_TRUE(eglTerminate(iDisplay));
374 TEST(eglGetError() == EGL_SUCCESS);
376 //cleanup and stuff...
377 CleanupStack::PopAndDestroy(1, eglSess);
378 ASSERT_EGL_TRUE(eglReleaseThread());
381 CloseTMSGraphicsStep();
382 return TestStepResult();