os/ossrv/lowlevellibsandfws/apputils/tsrc/t_strings/T_StringpoolDefect.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/t_strings/T_StringpoolDefect.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,326 @@
     1.4 +// Copyright (c) 2004-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 +// Test code for stringpool defects that have been fixed, to help prevent regression
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/* this fixes a MSVC link warning */
    1.22 +#ifdef __VC32__
    1.23 +#pragma comment (linker, "/opt:noref") 
    1.24 +#endif
    1.25 +
    1.26 +#include <stringpool.h>
    1.27 +#include <f32file.h>
    1.28 +#include <e32test.h>
    1.29 +
    1.30 +#include <stringpoolerr.h>
    1.31 +
    1.32 +#define UNUSED_VAR(a) a = a
    1.33 +
    1.34 +LOCAL_D CTrapCleanup*		TheTrapCleanup=NULL;
    1.35 +
    1.36 +LOCAL_D CActiveScheduler*	TheActiveScheduler=NULL;
    1.37 +
    1.38 +LOCAL_D RTest				test(_L("T_StringpoolDefect"));
    1.39 +
    1.40 +_LIT8(KDummyString,			"Dummy String For Test");
    1.41 +
    1.42 +//
    1.43 +
    1.44 +class RStringPoolPanicTest
    1.45 +	{
    1.46 +public:
    1.47 +	RStringPoolPanicTest();
    1.48 +	~RStringPoolPanicTest();
    1.49 +	
    1.50 +	void DEF043985L();
    1.51 +	
    1.52 +private:
    1.53 +	// Functions to pass Thread creation process that invokes the defect
    1.54 +	static TInt DEF043985_StringTest_ThreadL(TAny*); 
    1.55 +	static TInt DEF043985_StringFTest_ThreadL(TAny*);
    1.56 +	static TInt DEF043985_IndexTest_Thread(TAny*);
    1.57 +	
    1.58 +	static void DEF043985_IndexTest_SubFunctionL();
    1.59 +	};
    1.60 +
    1.61 +RStringPoolPanicTest::RStringPoolPanicTest()
    1.62 +	{
    1.63 +	// do nothing
    1.64 +	}
    1.65 +
    1.66 +RStringPoolPanicTest::~RStringPoolPanicTest()
    1.67 +	{
    1.68 +	// do nothing
    1.69 +	}
    1.70 +
    1.71 +/**
    1.72 +@SYMTestCaseID          SYSLIB-BAFL-CT-0488
    1.73 +@SYMTestCaseDesc        Tests for defect number DEF043985
    1.74 +@SYMTestPriority        High
    1.75 +@SYMTestActions         Tests that the table is invalid when creating an RString
    1.76 +                        Check for panic    
    1.77 +@SYMTestExpectedResults Tests must not fail
    1.78 +@SYMREQ                 REQ0000
    1.79 +*/
    1.80 +TInt RStringPoolPanicTest::DEF043985_StringTest_ThreadL(TAny*)
    1.81 +	{
    1.82 +	__UHEAP_MARK;
    1.83 +
    1.84 +	RStringPool stringPool;
    1.85 +	stringPool.OpenL();
    1.86 +
    1.87 +	// Create a table and make it so it passes some internal tests
    1.88 +	// for validity as we are testing a particular internal test
    1.89 +	TStringTable testTable;
    1.90 +	testTable.iCaseSensitive = ETrue;
    1.91 +	testTable.iCount = 1;
    1.92 +
    1.93 +	// Test for Panic
    1.94 +	RString testString = stringPool.String(0, testTable);
    1.95 +
    1.96 +	// Test should never get this far as it Panics
    1.97 +
    1.98 +	testString.Close();
    1.99 +	stringPool.Close();
   1.100 +
   1.101 +	__UHEAP_MARKEND;
   1.102 +
   1.103 +	return KErrNone;		
   1.104 +	}
   1.105 +
   1.106 +/**
   1.107 +@SYMTestCaseID          SYSLIB-BAFL-CT-0489
   1.108 +@SYMTestCaseDesc        Tests for defect number DEF043985
   1.109 +@SYMTestPriority        High
   1.110 +@SYMTestActions         Check for Panic
   1.111 +@SYMTestExpectedResults Tests must not fail
   1.112 +@SYMREQ                 REQ0000
   1.113 +*/
   1.114 +TInt RStringPoolPanicTest::DEF043985_StringFTest_ThreadL(TAny*)
   1.115 +	{
   1.116 +	__UHEAP_MARK;
   1.117 +
   1.118 +	RStringPool stringPool;
   1.119 +	stringPool.OpenL();
   1.120 +
   1.121 +	// Create a table and make it so it passes some internal tests
   1.122 +	// for validity as we are testing a particular internal test
   1.123 +	TStringTable testTable;
   1.124 +	testTable.iCaseSensitive = EFalse;
   1.125 +	testTable.iCount = 1;
   1.126 +
   1.127 +	// Test for Panic
   1.128 +	RStringF testString = stringPool.StringF(0, testTable);
   1.129 +	
   1.130 +	// Test should never get this far as it Panics
   1.131 +
   1.132 +	testString.Close();
   1.133 +	stringPool.Close();
   1.134 +
   1.135 +	__UHEAP_MARKEND;
   1.136 +
   1.137 +	return KErrNone;		
   1.138 +	}
   1.139 +
   1.140 +/**
   1.141 +Subtest function
   1.142 +
   1.143 +@SYMTestCaseID          SYSLIB-BAFL-CT-0490
   1.144 +@SYMTestCaseDesc        Tests for defect number DEF043985
   1.145 +@SYMTestPriority        High
   1.146 +@SYMTestActions         Tests that the table is invalid when creating a folded RString
   1.147 +@SYMTestExpectedResults Tests must not fail
   1.148 +@SYMREQ                 REQ0000
   1.149 +*/
   1.150 +void RStringPoolPanicTest::DEF043985_IndexTest_SubFunctionL()
   1.151 +	{
   1.152 +	__UHEAP_MARK;
   1.153 +
   1.154 +	RStringPool stringPool;
   1.155 +	stringPool.OpenL();
   1.156 +
   1.157 +	// Create a table and make it so it passes some internal tests
   1.158 +	// for validity as we are testing a particular internal test
   1.159 +	TStringTable testTable;
   1.160 +	testTable.iCaseSensitive = ETrue;
   1.161 +	testTable.iCount = 1;
   1.162 +
   1.163 +	RString testString = stringPool.OpenStringL(KDummyString());
   1.164 +	CleanupClosePushL(testString);
   1.165 +	
   1.166 +	// Test for Panic
   1.167 +	testString.Index(testTable);
   1.168 +	
   1.169 +	// Test should never get this far as it Panics
   1.170 +	
   1.171 +	CleanupStack::PopAndDestroy(&testString);
   1.172 +	stringPool.Close();
   1.173 +	
   1.174 +	__UHEAP_MARKEND;
   1.175 +	}
   1.176 +/**
   1.177 +@SYMTestCaseID          SYSLIB-BAFL-CT-0491
   1.178 +@SYMTestCaseDesc        Tests for the functionality of RStringPool
   1.179 +@SYMTestPriority        High
   1.180 +@SYMTestActions         Tests that the table is invalid when accessing an RStrings index
   1.181 +@SYMTestExpectedResults Tests must not fail
   1.182 +@SYMREQ                 REQ0000
   1.183 +*/
   1.184 +TInt RStringPoolPanicTest::DEF043985_IndexTest_Thread(TAny*)
   1.185 +	{
   1.186 +	__UHEAP_MARK;
   1.187 +
   1.188 +	CTrapCleanup* trapCleanup = CTrapCleanup::New();
   1.189 +	__ASSERT_ALWAYS(trapCleanup!=NULL, User::Invariant());
   1.190 +
   1.191 +	TRAPD(err, DEF043985_IndexTest_SubFunctionL());
   1.192 +    UNUSED_VAR(err);
   1.193 +	
   1.194 +	delete trapCleanup;
   1.195 +	
   1.196 +	__UHEAP_MARKEND;
   1.197 +
   1.198 +	return KErrNone;		
   1.199 +	}
   1.200 +
   1.201 +/**
   1.202 +Unfound TStringTable in Bafl StringPool not treated correctly.
   1.203 +Check that the function panics when the specified table is not present.
   1.204 +
   1.205 +@SYMTestCaseID          SYSLIB-BAFL-CT-0492
   1.206 +@SYMTestCaseDesc        Tests for the functionality of RStringPool
   1.207 +@SYMTestPriority        High
   1.208 +@SYMTestActions         Tests for panic when the specified table is not present
   1.209 +@SYMTestExpectedResults Tests must not fail
   1.210 +@SYMREQ                 REQ0000
   1.211 +*/
   1.212 +void RStringPoolPanicTest::DEF043985L()
   1.213 +	{
   1.214 +	test.Next(_L("DEF043985L"));
   1.215 +	
   1.216 +#ifdef _DEBUG
   1.217 +	__UHEAP_MARK;
   1.218 +
   1.219 +	TRequestStatus threadStatus;
   1.220 +	RThread thread;
   1.221 +	TInt rc;
   1.222 +	TBool jit;
   1.223 +	jit = User::JustInTime();
   1.224 +	User::SetJustInTime(EFalse);
   1.225 +	
   1.226 +	// Test the Panics for this defect
   1.227 +	
   1.228 +	// RString Test
   1.229 +	rc = thread.Create(_L("DEF043985_StringTest_Thread Panic Test"), 
   1.230 +					   RStringPoolPanicTest::DEF043985_StringTest_ThreadL,
   1.231 +					   KDefaultStackSize, KMinHeapSize, KMinHeapSize<<2, this);
   1.232 +	test(KErrNone == rc);
   1.233 +	thread.Logon(threadStatus);
   1.234 +	thread.Resume();
   1.235 +	User::WaitForRequest(threadStatus);
   1.236 +	test (thread.ExitType() == EExitPanic);
   1.237 +	test (thread.ExitReason() == StringPoolPanic::EStringTableNotFound);
   1.238 +	thread.Close();
   1.239 +
   1.240 +	// RStringF Test
   1.241 +	rc = thread.Create(_L("DEF043985_StringFTest_Thread Panic Test"), 
   1.242 +					   RStringPoolPanicTest::DEF043985_StringFTest_ThreadL,
   1.243 +					   KDefaultStackSize, KMinHeapSize, KMinHeapSize<<2, this);
   1.244 +	test(KErrNone == rc);
   1.245 +	thread.Logon(threadStatus);
   1.246 +	thread.Resume();
   1.247 +	User::WaitForRequest(threadStatus);
   1.248 +	test (thread.ExitType() == EExitPanic);
   1.249 +	test (thread.ExitReason() == StringPoolPanic::EStringTableNotFound);
   1.250 +	thread.Close();
   1.251 +
   1.252 +	// Index Test
   1.253 +	rc = thread.Create(_L("DEF043985_IndexTest_Thread Panic Test"), 
   1.254 +					   RStringPoolPanicTest::DEF043985_IndexTest_Thread,
   1.255 +					   KDefaultStackSize, KMinHeapSize, KMinHeapSize<<2, this);
   1.256 +	test(KErrNone == rc);
   1.257 +	thread.Logon(threadStatus);
   1.258 +	thread.Resume();
   1.259 +	User::WaitForRequest(threadStatus);
   1.260 +	test (thread.ExitType() == EExitPanic);
   1.261 +	test (thread.ExitReason() == StringPoolPanic::EStringTableNotFound);
   1.262 +	thread.Close();
   1.263 +
   1.264 +
   1.265 +	User::SetJustInTime(jit);
   1.266 +
   1.267 +	__UHEAP_MARKEND;
   1.268 +	
   1.269 +#else
   1.270 +	test.Printf(_L("This test is valid for debug builds only, behaviour for release builds is undefined (DEF050908)\n"));
   1.271 +#endif
   1.272 +	}
   1.273 +
   1.274 +//===============================================================================
   1.275 +
   1.276 +/**
   1.277 +Initialise the cleanup stack and active scheduler
   1.278 +*/
   1.279 +LOCAL_C void SetupL()
   1.280 +    {    
   1.281 +	TheTrapCleanup = CTrapCleanup::New();
   1.282 +	User::LeaveIfNull(TheTrapCleanup);
   1.283 +
   1.284 +	// Construct and install the active scheduler
   1.285 +	TheActiveScheduler = new(ELeave)CActiveScheduler;
   1.286 +	CActiveScheduler::Install(TheActiveScheduler);
   1.287 +	}
   1.288 +
   1.289 +/**
   1.290 +Cleanup
   1.291 +*/
   1.292 +LOCAL_C void CleanupL()
   1.293 +    {
   1.294 +	delete TheActiveScheduler;
   1.295 +	delete TheTrapCleanup;
   1.296 +	}
   1.297 +
   1.298 +/**
   1.299 +Invoke the tests
   1.300 +*/
   1.301 +LOCAL_C void DoTestsL()
   1.302 +    {
   1.303 +	RStringPoolPanicTest mytest;	
   1.304 +	mytest.DEF043985L();
   1.305 +	}
   1.306 +
   1.307 +
   1.308 +GLDEF_C TInt E32Main()
   1.309 +	{
   1.310 +	__UHEAP_MARK;
   1.311 +
   1.312 +	test.Printf(_L("\n"));
   1.313 +	test.Title();
   1.314 +	test.Start(_L("Defect Tests"));
   1.315 +	
   1.316 +	TRAPD(err, SetupL()); 
   1.317 +	test(err == KErrNone);
   1.318 +	
   1.319 +	TRAP(err, DoTestsL());
   1.320 +	test(err == KErrNone);
   1.321 +
   1.322 +	CleanupL();
   1.323 +	
   1.324 +	test.End();
   1.325 +	test.Close();
   1.326 +
   1.327 +	__UHEAP_MARKEND;
   1.328 +	return(KErrNone);
   1.329 +	}