sl@0: // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: //////////////////////////////////////////////////////////////////// sl@0: // egltest_t_stress_sgimage.script sl@0: // sl@0: // EGL stress tests accessing rsgimage objects shared across sl@0: // processes. sl@0: // sl@0: //////////////////////////////////////////////////////////////////// sl@0: sl@0: //! @SYMTestSuiteName egltest_t_stress_sgimage sl@0: PRINT Run Stress Tests sl@0: LOAD_SUITE egltestserver sl@0: sl@0: //! @SYMTestCaseID GRAPHICS-EGL-0427 sl@0: //! @SYMPREQ 2637 sl@0: //! @SYMCreationDate 03/11/2009 sl@0: //! @SYMTestCaseDependencies egltest_t_stress_sgimage.script sl@0: //! @SYMTestType IT sl@0: //! @SYMTestCaseDesc sl@0: //! Functional test – Open the same RSgImage from multiple processes sl@0: //! sl@0: //! @SYMTestPurpose sl@0: //! To determine that multiple processes can open the same RSgImage simultaneously and accurately read its contents. sl@0: //! sl@0: //! @SYMTestActions sl@0: //! Environmental settings: sl@0: //! • Image Size: w32 h32 sl@0: //! • List of simulated load: 0%, 30% 50% and 70% sl@0: //! • List of pixel formats sl@0: //! ESgPixelFormatARGB_8888_PRE sl@0: //! • Client process priorities - all the same sl@0: //! sl@0: //! The creation of RSgImages and launching of processes is along the lines of the method outlined in GRAPHICS-EGL-RSGIMAGE_LITE-0406 sl@0: //! The Number of client processes is configurable, suggested values are in parentheses. sl@0: //! sl@0: //! For each simulated CPU load sl@0: //! From the main process: sl@0: //! Start SimLoadApp sl@0: //! Open the RSgDriver sl@0: //! Create an RSgImage sl@0: //! Create a pixmap surface from the RSgImage and populate with known data content (e.g. by using vgClear to paint the surface blue) sl@0: //! sl@0: //! Spawn N (100) client processes and pass the RSgImage drawable ID to each one. sl@0: //! Signal all client processes to start by use of a semaphore sl@0: //! sl@0: //! From each client process: sl@0: //! Open RSgDriver sl@0: //! Open RSgImage using the drawable ID passed from the main process sl@0: //! Create EGLImage and then a VGImage sl@0: //! Close the RSgImage and the EGLImage sl@0: //! Create a pixmap surface sl@0: //! sl@0: //! Repeat 100 times sl@0: //! Copy the VGImage to the pixmap surface sl@0: //! Access the pixel data of the pixmap surface (e.g. by using vgReadPixels) and verify that it matches that populated by the main process sl@0: //! sl@0: //! Destroy the pixmap surface sl@0: //! Close VGImage and RSgDriver sl@0: //! Exit sl@0: //! sl@0: //! Main Process: sl@0: //! Repeat 100 times sl@0: //! Access the pixel data of the pixmap surface (e.g. by using vgReadPixels) and verify that it matches that populated initially sl@0: //! sl@0: //! Wait until all client processes exit and test the exit code sl@0: //! Destroy the pixmap surface sl@0: //! Close the RSgImage sl@0: //! Kill SimLoadApp sl@0: //! Exit sl@0: //! sl@0: //! @SYMTestStatus Implemented sl@0: //! @SYMTestPriority 1 sl@0: //! @SYMTestExpectedResults sl@0: //! All processes should run to completion and terminate with KErrNone sl@0: sl@0: //!The suffix on the test case id denotes the level of the simulated sl@0: //!load on the processor 000 -> 0% 030 -> 30% 050 -> 50% 070 -> 70% sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-000 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadOnly-000 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-000 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-030 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadOnly-030 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-030 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-050 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadOnly-050 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-050 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-070 sl@0: RUN_TEST_STEP 400 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadOnly-070 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-070 sl@0: sl@0: sl@0: //! @SYMTestCaseID GRAPHICS-EGL-0425 sl@0: //! @SYMPREQ 2637 sl@0: //! @SYMCreationDate 03/08/2009 sl@0: //! @SYMTestCaseDependencies egltest_t_stress_sgimage.script sl@0: //! @SYMTestType IT sl@0: //! @SYMTestCaseDesc sl@0: //! Stress test – Create and open 100 RSgImages in a specific format under various CPU load sl@0: //! sl@0: //! @SYMTestPurpose sl@0: //! To determine that the system can cope with a large number of RSgImages being accessed at the same time sl@0: //! sl@0: //! @SYMTestActions sl@0: //! Environmental settings: sl@0: //! • Image Size: w32 h32 sl@0: //! • List of simulated load: 0%, 30% 50% and 70% sl@0: //! • List of pixel format: ESgPixelFormatARGB_8888_PRE sl@0: //! • Client process priorities - all the same sl@0: //! sl@0: //! The creation of RSgImages and launching of processes is along the lines of the method outlined in GRAPHICS-EGL-RSGIMAGE_LITE-0406 sl@0: //! The Number of client processes is configurable, suggested values are in parentheses. sl@0: //! sl@0: //! Main process: sl@0: //! For each simulated CPU load sl@0: //! In the main process sl@0: //! Start SimLoadApp sl@0: //! sl@0: //! Open the RSgDriver sl@0: //! Create N (100) RSgImages with no content sl@0: //! For each RSgImage sl@0: //! Create EGLImage and then VGImage sl@0: //! Close EGLImage and RSgImage sl@0: //! End loop sl@0: //! Spawn N (100) client processes and pass a unique RSgImage drawable ID to each one. sl@0: //! sl@0: //! From each client process: sl@0: //! Open RSgDriver sl@0: //! Open RSgImage using the drawable ID passed from the main process sl@0: //! Create EGLImage and then a VGImage sl@0: //! Close the RSgImage and the EGLImage sl@0: //! Create pixmap surface sl@0: //! sl@0: //! Main Process: sl@0: //! Repeat 1000 times sl@0: //! Update each VGImage data using vgImageSubData sl@0: //! End loop sl@0: //! sl@0: //! From each client process: sl@0: //! Repeat 100 times sl@0: //! Draw VGImage using vgDrawImage into the pixmap surface sl@0: //! End loop sl@0: //! Destroy pixmap surface sl@0: //! Close VGImage and RSgDriver sl@0: //! Exit sl@0: //! sl@0: //! Main Process: sl@0: //! Wait until all client processes exit sl@0: //! Close all VGImages and the RSgDriver sl@0: //! Kill SimLoadApp sl@0: //! Exit sl@0: //! sl@0: //! @SYMTestStatus Implemented sl@0: //! @SYMTestPriority 1 sl@0: //! @SYMTestExpectedResults sl@0: //! All processes should run to completion and terminate correctly with KErrNone sl@0: sl@0: //!The suffix on the test case id denotes the level of the simulated sl@0: //!load on the processor 000 -> 0% 030 -> 30% 050 -> 50% 070 -> 70% sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-000 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressVGImage-000 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-000 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-030 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressVGImage-030 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-030 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-050 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressVGImage-050 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-050 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-070 sl@0: RUN_TEST_STEP 400 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressVGImage-070 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-070 sl@0: sl@0: //! @SYMTestCaseID GRAPHICS-EGL-0426 sl@0: //! @SYMPREQ 2637 sl@0: //! @SYMCreationDate 03/08/2009 sl@0: //! @SYMTestCaseDependencies egltest_t_stress_sgimage.script sl@0: //! @SYMTestType IT sl@0: //! @SYMTestCaseDesc sl@0: //! Stress test – Create and open 100 RSgImages in different pixel format under various CPU loads sl@0: //! sl@0: //! @SYMTestPurpose sl@0: //! To determine that the system can cope with a large number of RSgImages being accessed at the same time sl@0: //! sl@0: //! @SYMTestActions sl@0: //! Environmental settings: sl@0: //! • Image Size: w64 h64 sl@0: //! • List of simulated load: 0%, 30% 50% and 70% sl@0: //! • List of pixel format: ARGB_8888_PRE, ARGB_8888, XRGB_8888 and RGB_565 sl@0: //! • Client process priorities - all the same sl@0: //! sl@0: //! The creation of RSgImages and launching of processes is along the lines of the method outlined in GRAPHICS-EGL-RSGIMAGE_LITE-0406 sl@0: //! The Number of client processes is configurable, suggested values are in parentheses. sl@0: //! sl@0: //! Main process: sl@0: //! For each simulated CPU load and each pixel format sl@0: //! In the main process sl@0: //! Start SimLoadApp sl@0: //! sl@0: //! Open the RSgDriver sl@0: //! Create N (100) RSgImages with no content sl@0: //! For each RSgImage sl@0: //! Create EGL pixmap surface sl@0: //! Close RSgImage sl@0: //! End loop sl@0: //! Spawn N (100) client processes and pass a unique RSgImage drawable ID to each one. sl@0: //! sl@0: //! From each client process: sl@0: //! Open RSgDriver sl@0: //! Open RSgImage using the drawable ID passed from process A sl@0: //! Create EGLImage and then a VGImage sl@0: //! Close the RSgImage and the EGLImage sl@0: //! Create pixmap surface sl@0: //! sl@0: //! Main Process: sl@0: //! Repeat 1000 times sl@0: //! Update each EGL pixmap surface using vgClear with different colour sl@0: //! each time sl@0: //! End loop sl@0: //! sl@0: //! From each client process: sl@0: //! Repeat 1000 times sl@0: //! Draw VGImage using vgDrawImage into pixmap surface sl@0: //! End loop sl@0: //! Destroy pixmap surface sl@0: //! Close VGImage and RSgDriver sl@0: //! Exit sl@0: //! sl@0: //! Main process: sl@0: //! Wait until all client processes exit sl@0: //! Close all EGL pixmap surfaces and the RSgDriver sl@0: //! Kill SimLoadApp sl@0: //! Exit sl@0: //! sl@0: //! @SYMTestStatus Implemented sl@0: //! @SYMTestPriority 1 sl@0: //! @SYMTestExpectedResults sl@0: //! All processes should run to completion and terminate with KErrNone sl@0: sl@0: //!The suffix on the test case id denotes the level of the simulated sl@0: //!load on the processor 000 -> 0% 030 -> 30% 050 -> 50% 070 -> 70% sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-000 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressPixmapSurface-000 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-000 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-030 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressPixmapSurface-030 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-030 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-050 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressPixmapSurface-050 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-050 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-070 sl@0: RUN_TEST_STEP 400 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressPixmapSurface-070 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-070 sl@0: sl@0: //! @SYMTestCaseID GRAPHICS-EGL-0428 sl@0: //! @SYMPREQ 2637 sl@0: //! @SYMCreationDate 03/11/2009 sl@0: //! @SYMTestCaseDependencies egltest_t_stress_sgimage.script sl@0: //! @SYMTestType IT sl@0: //! @SYMTestCaseDesc sl@0: //! Functional test – Open the same RSgImage from multiple processes sl@0: //! Note: As data integrity cannot be guaranteed on all implementations, the pixel value checking aspects of this test can be regarded as optional. sl@0: //! sl@0: //! @SYMTestPurpose sl@0: //! To determine that multiple processes can open the same RSgImage simultaneously and modify its content. sl@0: //! sl@0: //! @SYMTestActions sl@0: //! Environmental settings: sl@0: //! • Image Size: w1024 h1024 sl@0: //! • List of simulated load: 0%, 30% 50% and 70% sl@0: //! • List of pixel formats sl@0: //! ESgPixelFormatARGB_565 sl@0: //! • Client process priorities - all the same sl@0: //! sl@0: //! The creation of RSgImages and launching of processes is along the lines of the method outlined in GRAPHICS-EGL-RSGIMAGE_LITE-0406 sl@0: //! The Number of client processes is configurable, suggested values are in parentheses. sl@0: //! sl@0: //! For each simulated CPU load sl@0: //! From the main process: sl@0: //! Start SimLoadApp sl@0: //! Open the RSgDriver sl@0: //! Create an RSgImage sl@0: //! Create a pixmap surface from the RSgImage and populate with known data content (e.g. by using vgClear to paint the surface blue) sl@0: //! sl@0: //! Spawn N (100) client processes and pass the RSgImage drawable ID to each one. sl@0: //! Signal all client processes to start by use of a semaphore sl@0: //! sl@0: //! From each client process: sl@0: //! Open RSgDriver sl@0: //! Open RSgImage using the drawable ID passed from the main process sl@0: //! Create EGLImage and then a VGImage sl@0: //! Close the RSgImage and the EGLImage sl@0: //! sl@0: //! Loop until exit condition met sl@0: //! Start loop: sl@0: //! Read the data from the VGImage into a local buffer using vgGetSubImageData sl@0: //! Read the data from the beginning of the buffer one pixel at time sl@0: //! Test that the pixel colour is either blue or red. sl@0: //! Locate the first blue pixel in the buffer and paint it red sl@0: //! Copy the buffer back to the VGImage using vgSubImageData sl@0: //! Exit conditiom - no blue pixels can be found: sl@0: //! End loop: sl@0: //! sl@0: //! Close VGImage and RSgDriver sl@0: //! Exit sl@0: //! sl@0: //! Main Process: sl@0: //! Loop until exit condition met sl@0: //! Start loop: sl@0: //! Read the data from the pixmap surface into a local buffer using vgReadPixels sl@0: //! Read the data from the beginning of the buffer one pixel at time sl@0: //! Test that the pixel colour is either blue or red. sl@0: //! Locate the first blue pixel in the surface and paint it red sl@0: //! Copy the buffer back to the surface using vgWritePixels sl@0: //! Exit condition - no blue pixels can be found: sl@0: //! End loop: sl@0: //! sl@0: //! Wait until all client processes exit and test the exit code sl@0: //! Destroy the pixmap surface sl@0: //! Close the RSgImage and RSgDriver sl@0: //! Kill SimLoadApp sl@0: //! Exit sl@0: //! sl@0: //! @SYMTestStatus Implemented sl@0: //! @SYMTestPriority 1 sl@0: //! @SYMTestExpectedResults sl@0: //! All processes should run to completion and terminate with KErrNone sl@0: sl@0: //!The suffix on the test case id denotes the level of the simulated sl@0: //!load on the processor 000 -> 0% 030 -> 30% 050 -> 50% 070 -> 70% sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-000 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteSingleImage-000 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-000 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-030 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteSingleImage-030 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-030 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-050 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteSingleImage-050 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-050 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-070 sl@0: RUN_TEST_STEP 400 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteSingleImage-070 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-070 sl@0: sl@0: //! @SYMTestCaseID GRAPHICS-EGL-0437 sl@0: //! @SYMPREQ 2637 sl@0: //! @SYMCreationDate 03/11/2009 sl@0: //! @SYMTestCaseDependencies egltest_t_stress_sgimage.script sl@0: //! @SYMTestType IT sl@0: //! @SYMTestCaseDesc sl@0: //! Stress test – Access multiple RSgImages from multiple processes sl@0: //! Note: As data integrity cannot be guaranteed on all implementations, the pixel value checking aspects of this test can be regarded as optional. sl@0: //! sl@0: //! @SYMTestPurpose sl@0: //! To determine that multiple processes can open RSgImages simultaneously and modify their contents. sl@0: //! sl@0: //! @SYMTestActions sl@0: //! Environmental settings: sl@0: //! • Image Size: w1024 h1024 sl@0: //! • List of simulated load: 0%, 30% 50% and 70% sl@0: //! sl@0: //! • List of pixel formats sl@0: //! ESgPixelFormatARGB_8888 sl@0: //! • Client process priorities - all the same sl@0: //! sl@0: //! This test case differs from GRAPHICS-EGL-0428 in that sl@0: //! 1. The environmental settings differ sl@0: //! 2. In GRAPHICS-EGL-0428, the main and client processes all read and write to a single RSgImage, but in this test case, the main process reads and writes to 10 RSgImages and the (100) client processes each access a single unique RSgImage each sl@0: //! sl@0: //! @SYMTestStatus Implemented sl@0: //! @SYMTestPriority 1 sl@0: //! @SYMTestExpectedResults sl@0: //! All processes should run to completion and terminate with KErrNone sl@0: sl@0: //!The suffix on the test case id denotes the level of the simulated sl@0: //!load on the processor 000 -> 0% 030 -> 30% 050 -> 50% 070 -> 70% sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-000 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteMultiImage-000 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-000 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-030 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteMultiImage-030 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-030 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-050 sl@0: RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteMultiImage-050 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-050 sl@0: sl@0: START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-070 sl@0: RUN_TEST_STEP 400 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteMultiImage-070 sl@0: END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-070