os/graphics/windowing/windowserver/test/twsgraphic/TWsGraphicShareTest.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent - Internal Symbian test code
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include <w32stdgraphic.h>
sl@0
    23
sl@0
    24
// bitmap to load for comparison
sl@0
    25
#define MY_TEST_BITMAP _L("Z:\\WSTEST\\MYTEST.MBM")
sl@0
    26
sl@0
    27
const TUint32 ENullWsHandle=0xFFFFFFFF;
sl@0
    28
const TInt KErrTestExeFailure = -666;
sl@0
    29
sl@0
    30
// class to check if a shared CWsGraphic can be drawn correctly
sl@0
    31
class CWsGraphicShareBase : public CBase
sl@0
    32
	{
sl@0
    33
public:
sl@0
    34
	CWsGraphicShareBase();
sl@0
    35
	~CWsGraphicShareBase();
sl@0
    36
	void ConstructL();
sl@0
    37
	void DoTestDrawGraphicCompareL(TPtrC aShare);
sl@0
    38
private :
sl@0
    39
	void Test(TInt aCondition);
sl@0
    40
	
sl@0
    41
	
sl@0
    42
private :
sl@0
    43
	TInt iScreenNumber;
sl@0
    44
	CWindowGc *iGc;
sl@0
    45
	RWsSession iWs;
sl@0
    46
	RWindowGroup *iGroupWin;
sl@0
    47
	CWsScreenDevice *iScreen;
sl@0
    48
	RWindow *iWin;	
sl@0
    49
	};
sl@0
    50
sl@0
    51
CWsGraphicShareBase::CWsGraphicShareBase() 
sl@0
    52
	{
sl@0
    53
		iScreenNumber = 0;
sl@0
    54
	}
sl@0
    55
	
sl@0
    56
CWsGraphicShareBase::~CWsGraphicShareBase() 
sl@0
    57
	{
sl@0
    58
		iWin->Close();
sl@0
    59
		delete iWin;
sl@0
    60
		delete iScreen;
sl@0
    61
		delete iGc;
sl@0
    62
		delete iGroupWin;
sl@0
    63
		iWs.Close();
sl@0
    64
	}
sl@0
    65
	
sl@0
    66
void CWsGraphicShareBase::ConstructL()
sl@0
    67
	{
sl@0
    68
	User::LeaveIfError(iWs.Connect());
sl@0
    69
	iScreen=new(ELeave) CWsScreenDevice(iWs);
sl@0
    70
	User::LeaveIfError(iScreen->Construct(iScreenNumber));
sl@0
    71
	iGc=new(ELeave) CWindowGc(iScreen);
sl@0
    72
	User::LeaveIfError(iGc->Construct());
sl@0
    73
	iGroupWin=new(ELeave) RWindowGroup(iWs);
sl@0
    74
	iGroupWin->Construct(1);
sl@0
    75
		
sl@0
    76
	iWin=new(ELeave) RWindow(iWs);
sl@0
    77
	iWin->Construct(*iGroupWin,ENullWsHandle);
sl@0
    78
	iWin->SetRequiredDisplayMode(EColor256);
sl@0
    79
	iWin->SetExtent(TPoint(0,0),iScreen->SizeInPixels());
sl@0
    80
	iWin->Activate();
sl@0
    81
	iWin->BeginRedraw();
sl@0
    82
	iWin->EndRedraw();
sl@0
    83
	iWs.Flush();
sl@0
    84
	}	
sl@0
    85
sl@0
    86
// Checks that the shared graphic is drawn or not. This is done by creating a new graphic in this process
sl@0
    87
// which looks the same as the shared graphic. The new graphic is then drawn to the screen followed by an 
sl@0
    88
// attempt to draw the shared graphic. The two graphics are then compared. In cases where the shared graphic
sl@0
    89
// should be drawn the two graphics should compare exactly. In cases where the shared graphic should not be 
sl@0
    90
// drawn the comparison will fail.
sl@0
    91
   
sl@0
    92
void CWsGraphicShareBase::DoTestDrawGraphicCompareL(TPtrC aShare)
sl@0
    93
	{
sl@0
    94
	// UID of the shared graphic
sl@0
    95
	TUid uid1 = {0x12000021};
sl@0
    96
	TWsGraphicId twsGraphicId1(uid1);
sl@0
    97
sl@0
    98
	_LIT8(KTestData,"HelloWorld");
sl@0
    99
	
sl@0
   100
	CFbsBitmap bitmap1;
sl@0
   101
	CFbsBitmap mask1;
sl@0
   102
	
sl@0
   103
	TSize screenSize = iScreen->SizeInPixels();
sl@0
   104
	User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
sl@0
   105
	mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
sl@0
   106
	
sl@0
   107
		CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
sl@0
   108
	
sl@0
   109
	// divide the screen into two equal rectangles
sl@0
   110
	TRect position1(0,0,screenSize.iWidth/2,screenSize.iHeight);
sl@0
   111
	TRect position2(screenSize.iWidth/2,0,screenSize.iWidth,screenSize.iHeight);
sl@0
   112
	
sl@0
   113
	// draw the new graphic and attempt to draw the shared graphic
sl@0
   114
	iGc->Activate(*iWin);
sl@0
   115
	iWin->Invalidate();
sl@0
   116
	iWin->BeginRedraw();
sl@0
   117
	iGc->Clear(position1);
sl@0
   118
	iGc->Clear(position2);
sl@0
   119
sl@0
   120
	iGc->DrawWsGraphic(bTest->Id(),position1,KTestData);
sl@0
   121
	iGc->DrawWsGraphic(twsGraphicId1.Uid(),position2,KTestData);
sl@0
   122
sl@0
   123
	iGc->Deactivate();	
sl@0
   124
	iWin->EndRedraw();
sl@0
   125
	
sl@0
   126
	iWs.Flush();
sl@0
   127
	iWs.Finish();
sl@0
   128
	// compare the graphic in both positions
sl@0
   129
	if (aShare==_L("false"))
sl@0
   130
		Test(!iScreen->RectCompare(position1,position2));
sl@0
   131
	else
sl@0
   132
		Test(iScreen->RectCompare(position1,position2));	
sl@0
   133
		
sl@0
   134
	delete bTest;
sl@0
   135
	}
sl@0
   136
sl@0
   137
// Failures are written to WSERV.log
sl@0
   138
void CWsGraphicShareBase::Test(TInt aCondition)
sl@0
   139
	{
sl@0
   140
	if(!aCondition)
sl@0
   141
		{
sl@0
   142
		TLogMessageText buf;
sl@0
   143
		_LIT(Fail,"AUTO Failed in WsGraphics Test : DrawSharedGraphic");
sl@0
   144
		buf.Format(Fail);
sl@0
   145
		iWs.LogMessage(buf);
sl@0
   146
		iWs.Flush();
sl@0
   147
		RProcess().Terminate(KErrTestExeFailure); // terminate this process immediately. Expect TWsGraph test step (TAutoServer.exe) to capture this
sl@0
   148
		}
sl@0
   149
	}
sl@0
   150
	
sl@0
   151
void MainL()
sl@0
   152
	{
sl@0
   153
	// read the argument from the command line of whether the graphic should be shared or not
sl@0
   154
	TBuf<256> commandLine;
sl@0
   155
    User::CommandLine(commandLine);
sl@0
   156
    TLex lex(commandLine);
sl@0
   157
    TPtrC toShare = lex.NextToken();    
sl@0
   158
    
sl@0
   159
    CActiveScheduler* activeScheduler=new(ELeave) CActiveScheduler;
sl@0
   160
	CActiveScheduler::Install(activeScheduler);
sl@0
   161
	CleanupStack::PushL(activeScheduler);
sl@0
   162
sl@0
   163
    CWsGraphicShareBase testBase;
sl@0
   164
    testBase.ConstructL();
sl@0
   165
       
sl@0
   166
    testBase.DoTestDrawGraphicCompareL(toShare);
sl@0
   167
    
sl@0
   168
	CleanupStack::PopAndDestroy(activeScheduler);
sl@0
   169
	}
sl@0
   170
sl@0
   171
GLDEF_C TInt E32Main()
sl@0
   172
	{
sl@0
   173
	CTrapCleanup* cleanUpStack=CTrapCleanup::New();
sl@0
   174
	if(cleanUpStack==NULL)
sl@0
   175
		{
sl@0
   176
		return KErrNoMemory;
sl@0
   177
		}
sl@0
   178
	TRAP_IGNORE(MainL())
sl@0
   179
	delete cleanUpStack;
sl@0
   180
	
sl@0
   181
	return(KErrNone);
sl@0
   182
	}