os/ossrv/lowlevellibsandfws/apputils/tsrc/t_strings/t_strings.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #define MY_STRINGPOOL pool
    17 
    18 #include <e32std.h>
    19 #include <e32test.h>
    20 #include <f32file.h>
    21 #include <WapTestUtils.h>
    22 #include "http.h"
    23 
    24 LOCAL_D CWapTestHarness* testHarness;
    25 
    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};
    32 
    33 const static TStringTable table = { 2,&tableContent[0]};
    34 
    35 class CHTTPTest : public CBase
    36 	{
    37 public:
    38 	static CHTTPTest* NewL();
    39 	void DoTestsL();
    40 	};
    41 
    42 CHTTPTest* CHTTPTest::NewL()
    43 	{
    44 	return new (ELeave) CHTTPTest;
    45 	}
    46 
    47 void CHTTPTest::DoTestsL()
    48 	{
    49 
    50 	testHarness->StartTestL(_L("Creating the string pool"));
    51 	RStringPool pool;
    52 	pool.OpenL(table);
    53 	testHarness->EndTest(0);
    54 	testHarness->StartTestL(_L("Creating 'hello'"));
    55 	STRDCI_L(hello, KHello);
    56 	RStringF def;
    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;
    68 	h1 = hello;
    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"));
    76 	g = goodbye;
    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"));
    90 	hello.Copy();
    91 	hello.Close();
    92 	hello.Close();
    93 	hello1.iObj.Close();
    94 	// The copys here have got a bit confused
    95 	hello1.iObj.Close();
    96 	goodbye.Close();
    97 	pool.CloseAll();
    98 	testHarness->EndTest(0);	
    99 	}
   100 
   101 GLDEF_C void TestL()
   102 	{
   103 	testHarness = CWapTestHarness::NewLC(KTitleStr);
   104 	// Set resource handle leak test
   105 	testHarness->DoResourceLeakTest(ETrue);
   106 	CHTTPTest* theTest = CHTTPTest::NewL();
   107 	theTest->DoTestsL();
   108 	delete theTest;
   109 	CleanupStack::PopAndDestroy();	//	UrlTest, wapTest
   110 	}
   111 
   112 GLDEF_C TInt E32Main()
   113 //
   114 // Main function
   115 	{
   116 	__UHEAP_MARK;
   117 	CTrapCleanup* tc=CTrapCleanup::New();
   118 	TRAPD(err,TestL());
   119 	if (err!=KErrNone)
   120 		User::Panic(_L("TSTRING"),err);
   121 	delete tc;
   122 	__UHEAP_MARKEND;
   123 	return KErrNone;
   124 	}