sl@0: // Copyright (c) 2009 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: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: #include "egltest_endpointimage.h" sl@0: #include "egltest_surface.h" sl@0: #include "egltest_endpoint_util.h" sl@0: sl@0: CEglTest_LocalTestStep_EndpointImageLifetimeProcess::CEglTest_LocalTestStep_EndpointImageLifetimeProcess() sl@0: { sl@0: TRAPD(err, TEndpointUtil::SetLoggerForProcessWrapperL(Logger())); sl@0: if (err != KErrNone) sl@0: { sl@0: RDebug::Printf("Logging is not set up... Err = %d. Panicking...", err); sl@0: ENGINE_ASSERT(0); sl@0: } sl@0: } sl@0: sl@0: sl@0: //function used for creating the queues. sl@0: TVerdict CEglTest_LocalTestStep_EndpointImageLifetimeProcess::doTestStepPreambleL() sl@0: { sl@0: //Open the queues. sl@0: User::LeaveIfError(iResultOutQueue.OpenGlobal(KResultProcessQueueName)); sl@0: User::LeaveIfError(iParamsInQueue.OpenGlobal(KParamsProcessQueueName)); sl@0: SetTestStepResult(EPass); sl@0: return EPass; sl@0: } sl@0: sl@0: TVerdict CEglTest_LocalTestStep_EndpointImageLifetimeProcess::doTestStepPostambleL() sl@0: { sl@0: iResultOutQueue.Close(); sl@0: iParamsInQueue.Close(); sl@0: return EPass; sl@0: } sl@0: sl@0: CEglTest_LocalTestStep_EndpointImageLifetimeProcess::~CEglTest_LocalTestStep_EndpointImageLifetimeProcess() sl@0: { sl@0: //closing an already closed handle is harmless sl@0: iResultOutQueue.Close(); sl@0: iParamsInQueue.Close(); sl@0: } sl@0: sl@0: sl@0: TVerdict CEglTest_LocalTestStep_EndpointImageLifetimeProcess::doTestStepL() sl@0: { sl@0: EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); sl@0: sl@0: if (!eglInitialize(dpy, NULL, NULL)) sl@0: { sl@0: INFO_PRINTF2(_L("EglInitialize failed, error %x"), eglGetError()); sl@0: User::Leave(KErrNotFound); sl@0: } sl@0: sl@0: TInt surfType; sl@0: iResultOutQueue.ReceiveBlocking(surfType); sl@0: sl@0: CSurface *surface = CSurface::SurfaceFactoryL(static_cast(surfType)); sl@0: CleanupStack::PushL(surface); sl@0: sl@0: surface->CreateL(EStandardSurface); sl@0: INFO_PRINTF2(_L("Using surface type %s"), surface->GetSurfaceTypeStr()); sl@0: TSurfaceId id = surface->SurfaceId(); sl@0: iParamsInQueue.SendBlocking(id); sl@0: sl@0: TInt result; sl@0: iResultOutQueue.ReceiveBlocking(result); sl@0: sl@0: // Draw something. sl@0: surface->DrawContentL(0); sl@0: User::LeaveIfError(surface->SubmitContent(ETrue)); sl@0: sl@0: if (result) sl@0: { sl@0: User::Panic(_L("Expected Panic"), 1); sl@0: } sl@0: sl@0: eglTerminate(dpy); sl@0: eglReleaseThread(); sl@0: CleanupStack::PopAndDestroy(surface); sl@0: return EPass; sl@0: } sl@0: sl@0: sl@0: // static sl@0: void CEglTest_LocalTestStep_EndpointImageLifetimeProcess::MainL() sl@0: { sl@0: #ifdef __WINS__ sl@0: // Construct and destroy a process-wide state object in emulator builds. sl@0: // This will cause initialisation of PLS for EGL and SgDriver sl@0: // and allow checking for leaks in tests sl@0: eglReleaseThread(); sl@0: #endif //__WINS__ sl@0: sl@0: // Create test step and perform CTestStep style initialisation (e.g. logging) sl@0: CEglTest_LocalTestStep_EndpointImageLifetimeProcess* testStep = new CEglTest_LocalTestStep_EndpointImageLifetimeProcess(); sl@0: if (testStep == NULL) sl@0: { sl@0: User::Leave(KErrNotFound); sl@0: } sl@0: CleanupStack::PushL(testStep); sl@0: sl@0: // perform CTestStep pre-amble sl@0: User::LeaveIfError(testStep->doTestStepPreambleL()); sl@0: sl@0: testStep->doTestStepL(); sl@0: // perform CTestStep post-amble sl@0: User::LeaveIfError(testStep->doTestStepPostambleL()); sl@0: sl@0: //clean-up sl@0: CleanupStack::PopAndDestroy(testStep); sl@0: } sl@0: sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: //When EGL Logging is enabled this causes a file server session to be allocated sl@0: //Which needs to be done before any allocation checks otherwise the test will fail sl@0: eglReleaseThread(); sl@0: sl@0: __UHEAP_MARK; sl@0: CTrapCleanup* cleanup = CTrapCleanup::New(); sl@0: if(cleanup == NULL) sl@0: { sl@0: return KErrNoMemory; sl@0: } sl@0: sl@0: TRAPD(err, CEglTest_LocalTestStep_EndpointImageLifetimeProcess::MainL()); sl@0: sl@0: delete cleanup; sl@0: __UHEAP_MARKEND; sl@0: sl@0: return err; sl@0: } sl@0: sl@0: