1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/t_strings/t_strings.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,124 @@
1.4 +// Copyright (c) 2001-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 +//
1.18 +
1.19 +#define MY_STRINGPOOL pool
1.20 +
1.21 +#include <e32std.h>
1.22 +#include <e32test.h>
1.23 +#include <f32file.h>
1.24 +#include <WapTestUtils.h>
1.25 +#include "http.h"
1.26 +
1.27 +LOCAL_D CWapTestHarness* testHarness;
1.28 +
1.29 +_LIT(KTitleStr, "HTTP String Pool Test Harness");
1.30 +_LIT8(KHello, "hello");
1.31 +_LIT8(KHello1, "hello");
1.32 +_LIT8(KGoodbye, "goodbye");
1.33 +const void* tableContent[] = { (const void*)&KHello,
1.34 + (const void*)&KGoodbye};
1.35 +
1.36 +const static TStringTable table = { 2,&tableContent[0]};
1.37 +
1.38 +class CHTTPTest : public CBase
1.39 + {
1.40 +public:
1.41 + static CHTTPTest* NewL();
1.42 + void DoTestsL();
1.43 + };
1.44 +
1.45 +CHTTPTest* CHTTPTest::NewL()
1.46 + {
1.47 + return new (ELeave) CHTTPTest;
1.48 + }
1.49 +
1.50 +void CHTTPTest::DoTestsL()
1.51 + {
1.52 +
1.53 + testHarness->StartTestL(_L("Creating the string pool"));
1.54 + RStringPool pool;
1.55 + pool.OpenL(table);
1.56 + testHarness->EndTest(0);
1.57 + testHarness->StartTestL(_L("Creating 'hello'"));
1.58 + STRDCI_L(hello, KHello);
1.59 + RStringF def;
1.60 + testHarness->EndTest(hello == def);
1.61 + testHarness->StartTestL(_L("Creating another 'hello'"));
1.62 + ASTRDCI_L(hello1, KHello1);
1.63 + testHarness->EndTest(!(hello == hello1.iObj));
1.64 + testHarness->StartTestL(_L("Testing !="));
1.65 + testHarness->EndTest(hello != hello1.iObj);
1.66 + testHarness->StartTestL(_L("Creating 'goodbye'"));
1.67 + STRDCI_L(goodbye, KGoodbye);
1.68 + testHarness->EndTest(hello == goodbye);
1.69 + testHarness->StartTestL(_L("Creating string tokens"));
1.70 + RStringTokenF h1, h2(hello), g;
1.71 + h1 = hello;
1.72 + testHarness->EndTest(h1 != h2);
1.73 + testHarness->StartTestL(_L("Testing == on string tokens"));
1.74 + testHarness->EndTest(!(h1 == h2));
1.75 + testHarness->StartTestL(_L("Making a string from a token"));
1.76 + hello1.iObj = pool.StringF(h1);
1.77 + testHarness->EndTest(hello != hello1.iObj);
1.78 + testHarness->StartTestL(_L("Non-equal tokens"));
1.79 + g = goodbye;
1.80 + testHarness->EndTest(hello == goodbye);
1.81 + testHarness->StartTestL(_L("Operator != on non-equal tokens"));
1.82 + testHarness->EndTest(!(hello != goodbye));
1.83 + testHarness->StartTestL(_L("Copy function"));
1.84 + hello1.iObj = hello.Copy();
1.85 + testHarness->EndTest(hello != hello1.iObj);
1.86 + testHarness->StartTestL(_L("String extraction (same)"));
1.87 + testHarness->EndTest(static_cast<const TDesC8&>(hello).Compare(hello1.iObj));
1.88 + testHarness->StartTestL(_L("String extraction (different)"));
1.89 + testHarness->EndTest(!static_cast<const TDesC8&>(hello).Compare(goodbye));
1.90 + testHarness->StartTestL(_L("String extraction (original)"));
1.91 + testHarness->EndTest(static_cast<const TDesC8&>(hello).Compare(KHello));
1.92 + testHarness->StartTestL(_L("Closing pool"));
1.93 + hello.Copy();
1.94 + hello.Close();
1.95 + hello.Close();
1.96 + hello1.iObj.Close();
1.97 + // The copys here have got a bit confused
1.98 + hello1.iObj.Close();
1.99 + goodbye.Close();
1.100 + pool.CloseAll();
1.101 + testHarness->EndTest(0);
1.102 + }
1.103 +
1.104 +GLDEF_C void TestL()
1.105 + {
1.106 + testHarness = CWapTestHarness::NewLC(KTitleStr);
1.107 + // Set resource handle leak test
1.108 + testHarness->DoResourceLeakTest(ETrue);
1.109 + CHTTPTest* theTest = CHTTPTest::NewL();
1.110 + theTest->DoTestsL();
1.111 + delete theTest;
1.112 + CleanupStack::PopAndDestroy(); // UrlTest, wapTest
1.113 + }
1.114 +
1.115 +GLDEF_C TInt E32Main()
1.116 +//
1.117 +// Main function
1.118 + {
1.119 + __UHEAP_MARK;
1.120 + CTrapCleanup* tc=CTrapCleanup::New();
1.121 + TRAPD(err,TestL());
1.122 + if (err!=KErrNone)
1.123 + User::Panic(_L("TSTRING"),err);
1.124 + delete tc;
1.125 + __UHEAP_MARKEND;
1.126 + return KErrNone;
1.127 + }