First public contribution.
1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #define MY_STRINGPOOL pool
21 #include <WapTestUtils.h>
24 LOCAL_D CWapTestHarness* testHarness;
26 _LIT(KTitleStr, "HTTP String Pool Test Harness");
27 _LIT8(KHello, "hello");
28 _LIT8(KHello1, "hello");
29 _LIT8(KGoodbye, "goodbye");
30 const void* tableContent[] = { (const void*)&KHello,
31 (const void*)&KGoodbye};
33 const static TStringTable table = { 2,&tableContent[0]};
35 class CHTTPTest : public CBase
38 static CHTTPTest* NewL();
42 CHTTPTest* CHTTPTest::NewL()
44 return new (ELeave) CHTTPTest;
47 void CHTTPTest::DoTestsL()
50 testHarness->StartTestL(_L("Creating the string pool"));
53 testHarness->EndTest(0);
54 testHarness->StartTestL(_L("Creating 'hello'"));
55 STRDCI_L(hello, KHello);
57 testHarness->EndTest(hello == def);
58 testHarness->StartTestL(_L("Creating another 'hello'"));
59 ASTRDCI_L(hello1, KHello1);
60 testHarness->EndTest(!(hello == hello1.iObj));
61 testHarness->StartTestL(_L("Testing !="));
62 testHarness->EndTest(hello != hello1.iObj);
63 testHarness->StartTestL(_L("Creating 'goodbye'"));
64 STRDCI_L(goodbye, KGoodbye);
65 testHarness->EndTest(hello == goodbye);
66 testHarness->StartTestL(_L("Creating string tokens"));
67 RStringTokenF h1, h2(hello), g;
69 testHarness->EndTest(h1 != h2);
70 testHarness->StartTestL(_L("Testing == on string tokens"));
71 testHarness->EndTest(!(h1 == h2));
72 testHarness->StartTestL(_L("Making a string from a token"));
73 hello1.iObj = pool.StringF(h1);
74 testHarness->EndTest(hello != hello1.iObj);
75 testHarness->StartTestL(_L("Non-equal tokens"));
77 testHarness->EndTest(hello == goodbye);
78 testHarness->StartTestL(_L("Operator != on non-equal tokens"));
79 testHarness->EndTest(!(hello != goodbye));
80 testHarness->StartTestL(_L("Copy function"));
81 hello1.iObj = hello.Copy();
82 testHarness->EndTest(hello != hello1.iObj);
83 testHarness->StartTestL(_L("String extraction (same)"));
84 testHarness->EndTest(static_cast<const TDesC8&>(hello).Compare(hello1.iObj));
85 testHarness->StartTestL(_L("String extraction (different)"));
86 testHarness->EndTest(!static_cast<const TDesC8&>(hello).Compare(goodbye));
87 testHarness->StartTestL(_L("String extraction (original)"));
88 testHarness->EndTest(static_cast<const TDesC8&>(hello).Compare(KHello));
89 testHarness->StartTestL(_L("Closing pool"));
94 // The copys here have got a bit confused
98 testHarness->EndTest(0);
103 testHarness = CWapTestHarness::NewLC(KTitleStr);
104 // Set resource handle leak test
105 testHarness->DoResourceLeakTest(ETrue);
106 CHTTPTest* theTest = CHTTPTest::NewL();
109 CleanupStack::PopAndDestroy(); // UrlTest, wapTest
112 GLDEF_C TInt E32Main()
117 CTrapCleanup* tc=CTrapCleanup::New();
120 User::Panic(_L("TSTRING"),err);