os/graphics/windowing/windowserver/test/tauto/tclosepanicwindowprocess.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/tauto/tclosepanicwindowprocess.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,88 @@
     1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// The process to close all the panic window.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/**
    1.22 + @file
    1.23 + @test
    1.24 + @internalComponent - Internal Symbian test code
    1.25 +*/
    1.26 +
    1.27 +#include <e32base.h>
    1.28 +#include <e32cons.h>
    1.29 +#include <e32test.h>
    1.30 +#include <e32std.h>
    1.31 +#include <e32debug.h>
    1.32 +#include <w32debug.h>
    1.33 +#include <w32std.h>
    1.34 +
    1.35 +// Simulate 50 escape-keys down to close all the panic window
    1.36 +static TInt CloseAllPanicWindows(RWsSession& aWs) 
    1.37 +	{
    1.38 +	TInt idFocus = aWs.GetFocusWindowGroup();
    1.39 +	TWsEvent event;
    1.40 +	event.SetType(EEventKey); 
    1.41 +	TKeyEvent* keyEvent = event.Key();
    1.42 +	keyEvent->iCode = EKeyEscape;
    1.43 +	keyEvent->iScanCode = EStdKeyEscape;
    1.44 +	keyEvent->iModifiers = 0;
    1.45 +	TInt theLimit = 50;
    1.46 +	TInt err = KErrNone;
    1.47 +	while(idFocus != NULL && (theLimit-- > 0))
    1.48 +		{
    1.49 +		err = aWs.SendEventToAllWindowGroups(event);
    1.50 +		if (err != KErrNone && err != KErrNoMemory)
    1.51 +			{
    1.52 +			return err;
    1.53 +			}
    1.54 +		User::After(1000);	//give it time to process
    1.55 +		idFocus = aWs.GetFocusWindowGroup();
    1.56 +		}
    1.57 +	return KErrNone;
    1.58 +	}
    1.59 +
    1.60 +
    1.61 +// Real main function
    1.62 +void MainL()
    1.63 +	{
    1.64 +	// Open wserv session
    1.65 +	RWsSession ws;
    1.66 +	TInt err = ws.Connect();
    1.67 +	if (err != KErrNone)
    1.68 +		{
    1.69 +		User::Leave(err);
    1.70 +		}	
    1.71 +
    1.72 +	CleanupClosePushL(ws);
    1.73 +	
    1.74 +	User::LeaveIfError(CloseAllPanicWindows(ws));
    1.75 +			
    1.76 +	CleanupStack::PopAndDestroy(&ws);
    1.77 +	}
    1.78 +
    1.79 +// Cleanup stack harness
    1.80 +GLDEF_C TInt E32Main()
    1.81 +	{
    1.82 +	__UHEAP_MARK;
    1.83 +	CTrapCleanup* cleanupStack = CTrapCleanup::New();
    1.84 +	TRAPD(error, MainL());
    1.85 +	_LIT(KTCloseAllPanicWindowPanic,"tcloseallpanicwindow");
    1.86 +	// Panic the current process
    1.87 +	__ASSERT_ALWAYS(!error, User::Panic(KTCloseAllPanicWindowPanic, error));
    1.88 +	delete cleanupStack;
    1.89 +	__UHEAP_MARKEND;
    1.90 +	return KErrNone;
    1.91 +	}