os/ossrv/lowlevellibsandfws/pluginfw/Framework/RomOnlyTest/t_romonly.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2003-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 // This test assumes the following setup:
    15 // EComRomOnlyExampleOnC/10009DB6 on C:
    16 // EComRomOnlyExampleOnZ/10009DB5 on Z:
    17 // The tests work by checking that the correct implementations are chosen from two plug-ins, one on C:, one on Z:
    18 // Implementation:		On C:					On Z:								Expected result:
    19 // 10009DCA			version 2				version 1, not ROM-only				ECom selects version 2 on C:
    20 // 10009DCB			version 2, ROM-only	f	version 1, not ROM-only				ECom selects version 1 on Z:
    21 // 10009DCC			version 1				version 2, not ROM-only				ECom selects version 2 on Z:
    22 // 10009DCD			version 2				version 1, ROM-only					ECom selects version 1 on Z:
    23 // 10009DCE			version 1				version 2, ROM-only					ECom selects version 2 on Z:
    24 // 10009DCF			version 3				version 1 & version 2, ROM-only		ECom selects version 2 on Z:
    25 // 
    26 //
    27 
    28 
    29 #include <e32test.h>
    30 #include <f32file.h>
    31 #include <bautils.h>
    32 
    33 #include <ecom/ecom.h>
    34 #include "EComUidCodes.h"
    35 #include "Interface.h" // interface to Plugins
    36 #include "../EcomTestUtils/EcomTestUtils.h"
    37 
    38 const TUid KUidInterface = {0x10009DC9};
    39 const TInt KUidImplementationAValue = 0x10009DCA;
    40 const TInt KUidImplementationBValue = 0x10009DCB;
    41 const TInt KUidImplementationCValue = 0x10009DCC;
    42 const TInt KUidImplementationDValue = 0x10009DCD;
    43 const TInt KUidImplementationEValue = 0x10009DCE;
    44 const TInt KUidImplementationFValue = 0x10009DCF;
    45 const TInt KOneSecond = 1000000;
    46 
    47 LOCAL_D RTest test(_L("t_romonly.exe"));
    48 
    49 _LIT(KEComPluginOnZ, "z:\\RAMOnly\\EComRomOnlyExampleOnC.dll");
    50 
    51 _LIT(KEComPluginOnC, "c:\\sys\\bin\\EComRomOnlyExampleOnC.dll");
    52 _LIT(KEComPluginRscOnZ, "z:\\RAMOnly\\EComRomOnlyExampleOnC.rsc");
    53 _LIT(KEComPluginRscOnC, "c:\\resource\\plugins\\EComRomOnlyExampleOnC.rsc");
    54 
    55 class TheTest
    56 	{
    57 public:
    58 	void StartTestL();
    59 	};
    60 
    61 void CopyFiles()
    62 	{
    63 	TRAPD(err, EComTestUtils::FileManCopyFileL(KEComPluginOnZ, KEComPluginOnC));
    64 	test(err==KErrNone);
    65 
    66 	TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginRscOnZ, KEComPluginRscOnC));
    67 	test(err==KErrNone);
    68 	}
    69 
    70 void CleanupFiles()
    71 	{
    72 	TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComPluginOnC));
    73 	TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginRscOnC));
    74 	}
    75 
    76 /**
    77 @SYMTestCaseID          SYSLIB-ECOM-CT-0665
    78 @SYMTestCaseDesc	    Tests for REComSession::ListImplementationsL() function
    79 @SYMTestPriority 	    High
    80 @SYMTestActions  	    Checks that the correct implementations are chosen from two plug-ins, one on C:, one on Z:
    81 @SYMTestExpectedResults The test must not fail.
    82 @SYMREQ                 REQ0000
    83 */
    84 LOCAL_C void TestImplementationsL()
    85 	{
    86 	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0665 TestImplementationsL "));
    87 
    88 	// Set up for heap leak checking
    89 	__UHEAP_MARK;
    90 
    91 	// and leaking thread handles
    92 	TInt startProcessHandleCount;
    93 	TInt startThreadHandleCount;
    94 	TInt endProcessHandleCount;
    95 	TInt endThreadHandleCount;
    96 	// Test Starts...
    97 
    98 	RThread thisThread;
    99 	thisThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
   100 
   101 	RImplInfoPtrArray ifArray;
   102 
   103 	TEComResolverParams ResolverParams;
   104 	_LIT8(KImplementationTest,"text/wml");
   105 	ResolverParams.SetDataType(KImplementationTest());
   106 	ResolverParams.SetWildcardMatch(ETrue);	// Allow wildcard matching
   107 
   108 	REComSession::ListImplementationsL(
   109 			KUidInterface,
   110 			ResolverParams,
   111 			KDefaultResolverUid,
   112 			ifArray);
   113 
   114 	const TInt availCount = ifArray.Count();
   115 	test.Printf(_L("Found %d implementations.\n"),availCount);
   116 	test(availCount == 6);
   117 
   118 	for (TInt count=0;count<availCount;++count)
   119 		{
   120 		const CImplementationInformation* info = ifArray[count];
   121 
   122 		TDriveName driveName = info->Drive().Name();
   123 		test.Printf(_L("%d. uid={%x} version=%d on drive %S\n"), count+1, info->ImplementationUid(), info->Version(), &driveName);
   124 
   125 		switch(info->ImplementationUid().iUid)
   126 			{
   127 			case KUidImplementationAValue:
   128 				test(info->Version()==1);
   129 				test(info->Drive()==EDriveZ);
   130 				break;
   131 
   132 			case KUidImplementationBValue:
   133 				test(info->Version()==1);
   134 				test(info->Drive()==EDriveZ);
   135 				break;
   136 
   137 			case KUidImplementationCValue:
   138 				test(info->Version()==2);
   139 				test(info->Drive()==EDriveZ);
   140 				break;
   141 
   142 			case KUidImplementationDValue:
   143 				test(info->Version()==1);
   144 				test(info->Drive()==EDriveZ);
   145 				break;
   146 
   147 			case KUidImplementationEValue:
   148 				test(info->Version()==2);
   149 				test(info->Drive()==EDriveZ);
   150 				break;
   151 
   152 			case KUidImplementationFValue:
   153 				test(info->Version()==2);
   154 				test(info->Drive()==EDriveZ);
   155 				break;
   156 			}
   157 		}
   158 
   159 	// Empty the array of implementations
   160 	test.Printf(_L("Destroying List..."));
   161 	ifArray.ResetAndDestroy();
   162 
   163 	REComSession::FinalClose(); // Don't want leaks outside the test
   164 
   165 	// Check for open handles
   166 	thisThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
   167 
   168 	test(startThreadHandleCount == endThreadHandleCount);
   169 	test.Printf(_L("Great ! No handle mismatch."));
   170 
   171 	// Test Ends...
   172 
   173 	__UHEAP_MARKEND;
   174 	}
   175 
   176 void TheTest::StartTestL()
   177 	{
   178 	TestImplementationsL();
   179 	}
   180 
   181 TInt DoTestsL()
   182 	{
   183 	// Should any tests leave past the lowest level???
   184 	TheTest theT;
   185 	theT.StartTestL();
   186 	return KErrNone;
   187 	}
   188 
   189 GLDEF_C TInt E32Main()
   190 	{
   191 	__UHEAP_MARK;
   192 	test.Title();
   193 	test.Start(_L("Rom resolver tests"));
   194 
   195 	// get clean-up stack
   196 	CTrapCleanup* cleanup = CTrapCleanup::New();
   197 
   198 	CopyFiles();
   199 	//The reason for the folowing delay is:
   200 	//ECOM server could be already started. It means that when we copy some
   201 	//ECOM plugins from Z: to C: drive - ECOM server should look for and
   202 	//find the new ECOM plugins. The ECOM server uses for that CDiscoverer::CIdleScanningTimer
   203 	//which is an active object. So the discovering service is asynchronous. We have to
   204 	//wait some time until it finishes. Otherwise ListImplementationsL could fail to find
   205 	//requested implementations.
   206 	User::After(KOneSecond * 3);
   207 
   208 	TRAPD(err,DoTestsL());
   209 	delete cleanup;
   210 
   211 	test(err==KErrNone);
   212 
   213 	CleanupFiles();
   214 
   215 	test.Next(_L("/n"));
   216 	test.End();
   217 	test.Close();
   218 	__UHEAP_MARKEND;
   219 	return(0);
   220 	}