sl@0: // Copyright (c) 2001-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: #define MY_STRINGPOOL pool sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "http.h" sl@0: sl@0: LOCAL_D CWapTestHarness* testHarness; sl@0: sl@0: _LIT(KTitleStr, "HTTP String Pool Test Harness"); sl@0: _LIT8(KHello, "hello"); sl@0: _LIT8(KHello1, "hello"); sl@0: _LIT8(KGoodbye, "goodbye"); sl@0: const void* tableContent[] = { (const void*)&KHello, sl@0: (const void*)&KGoodbye}; sl@0: sl@0: const static TStringTable table = { 2,&tableContent[0]}; sl@0: sl@0: class CHTTPTest : public CBase sl@0: { sl@0: public: sl@0: static CHTTPTest* NewL(); sl@0: void DoTestsL(); sl@0: }; sl@0: sl@0: CHTTPTest* CHTTPTest::NewL() sl@0: { sl@0: return new (ELeave) CHTTPTest; sl@0: } sl@0: sl@0: void CHTTPTest::DoTestsL() sl@0: { sl@0: sl@0: testHarness->StartTestL(_L("Creating the string pool")); sl@0: RStringPool pool; sl@0: pool.OpenL(table); sl@0: testHarness->EndTest(0); sl@0: testHarness->StartTestL(_L("Creating 'hello'")); sl@0: STRDCI_L(hello, KHello); sl@0: RStringF def; sl@0: testHarness->EndTest(hello == def); sl@0: testHarness->StartTestL(_L("Creating another 'hello'")); sl@0: ASTRDCI_L(hello1, KHello1); sl@0: testHarness->EndTest(!(hello == hello1.iObj)); sl@0: testHarness->StartTestL(_L("Testing !=")); sl@0: testHarness->EndTest(hello != hello1.iObj); sl@0: testHarness->StartTestL(_L("Creating 'goodbye'")); sl@0: STRDCI_L(goodbye, KGoodbye); sl@0: testHarness->EndTest(hello == goodbye); sl@0: testHarness->StartTestL(_L("Creating string tokens")); sl@0: RStringTokenF h1, h2(hello), g; sl@0: h1 = hello; sl@0: testHarness->EndTest(h1 != h2); sl@0: testHarness->StartTestL(_L("Testing == on string tokens")); sl@0: testHarness->EndTest(!(h1 == h2)); sl@0: testHarness->StartTestL(_L("Making a string from a token")); sl@0: hello1.iObj = pool.StringF(h1); sl@0: testHarness->EndTest(hello != hello1.iObj); sl@0: testHarness->StartTestL(_L("Non-equal tokens")); sl@0: g = goodbye; sl@0: testHarness->EndTest(hello == goodbye); sl@0: testHarness->StartTestL(_L("Operator != on non-equal tokens")); sl@0: testHarness->EndTest(!(hello != goodbye)); sl@0: testHarness->StartTestL(_L("Copy function")); sl@0: hello1.iObj = hello.Copy(); sl@0: testHarness->EndTest(hello != hello1.iObj); sl@0: testHarness->StartTestL(_L("String extraction (same)")); sl@0: testHarness->EndTest(static_cast(hello).Compare(hello1.iObj)); sl@0: testHarness->StartTestL(_L("String extraction (different)")); sl@0: testHarness->EndTest(!static_cast(hello).Compare(goodbye)); sl@0: testHarness->StartTestL(_L("String extraction (original)")); sl@0: testHarness->EndTest(static_cast(hello).Compare(KHello)); sl@0: testHarness->StartTestL(_L("Closing pool")); sl@0: hello.Copy(); sl@0: hello.Close(); sl@0: hello.Close(); sl@0: hello1.iObj.Close(); sl@0: // The copys here have got a bit confused sl@0: hello1.iObj.Close(); sl@0: goodbye.Close(); sl@0: pool.CloseAll(); sl@0: testHarness->EndTest(0); sl@0: } sl@0: sl@0: GLDEF_C void TestL() sl@0: { sl@0: testHarness = CWapTestHarness::NewLC(KTitleStr); sl@0: // Set resource handle leak test sl@0: testHarness->DoResourceLeakTest(ETrue); sl@0: CHTTPTest* theTest = CHTTPTest::NewL(); sl@0: theTest->DoTestsL(); sl@0: delete theTest; sl@0: CleanupStack::PopAndDestroy(); // UrlTest, wapTest sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: // sl@0: // Main function sl@0: { sl@0: __UHEAP_MARK; sl@0: CTrapCleanup* tc=CTrapCleanup::New(); sl@0: TRAPD(err,TestL()); sl@0: if (err!=KErrNone) sl@0: User::Panic(_L("TSTRING"),err); sl@0: delete tc; sl@0: __UHEAP_MARKEND; sl@0: return KErrNone; sl@0: }