sl@0: // Copyright (c) 1997-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: // Started by BLB, May 1996 sl@0: // Test comms device sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include "T_LIBT.H" sl@0: #include sl@0: sl@0: LOCAL_D RTest test(_L("Unloader")); sl@0: LOCAL_D RFs TheFs; sl@0: _LIT(KLibraryName, "libtst.tpr"); sl@0: typedef CLibTest* (*NewTestL)(); sl@0: typedef TLibAssoc TTestAssoc; sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0415 sl@0: @SYMTestCaseDesc CLibTest class functionality test sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Library tester sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void testLibClass(CLibTest* aTester) sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0415 ")); sl@0: test(aTester->Test1()==1); sl@0: test(aTester->Test2()==2); sl@0: test(aTester->Test3()==3); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0416 sl@0: @SYMTestCaseDesc Tests for constant CLibTest class sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Library tester sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void testLibClassC(const CLibTest* aTester) sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0416 ")); sl@0: test(aTester->Test1()==1); sl@0: test(aTester->Test2()==2); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-1283 sl@0: @SYMTestCaseDesc Tests for RLibrary::Load(),RLibrary::Lookup() function sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Attempt to load a named DLL. sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void LoadCreate(CLibTest*& aTest,RLibrary& aLib) sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1283 ")); sl@0: TInt error=aLib.Load(KLibraryName); sl@0: test(error==KErrNone); sl@0: NewTestL createClass=(NewTestL)aLib.Lookup(1); sl@0: aTest=(*createClass)(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0417 sl@0: @SYMTestCaseDesc Manual load of library test sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Tests for library through manual load. sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void testManualLoad() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0417 Manual ")); sl@0: RLibrary library; sl@0: CLibTest* tester; sl@0: LoadCreate(tester,library); sl@0: testLibClass(tester); sl@0: testLibClassC(tester); sl@0: delete(tester); sl@0: library.Close(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0418 sl@0: @SYMTestCaseDesc Smart load of library test sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Tests for library through smart load. sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void testSmartLoad() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0418 Smart ")); sl@0: RLibrary library; sl@0: CLibTest* tester; sl@0: LoadCreate(tester,library); sl@0: testLibClass(tester); sl@0: testLibClassC(tester); sl@0: TTestAssoc assoc(library,tester); sl@0: testLibClass(assoc.Ptr()); sl@0: testLibClassC(assoc.Ptr()); sl@0: assoc.Unload(); sl@0: assoc.Unload(); sl@0: // sl@0: LoadCreate(tester,library); sl@0: TTestAssoc assoc2; sl@0: assoc2.Set(library,tester); sl@0: // sl@0: // Following will panic since not cleared first sl@0: // LoadCreate(tester,library); sl@0: // assoc2.Set(library,tester); sl@0: // sl@0: // Following will not be possible sl@0: // delete(assoc2); sl@0: assoc2.Unload(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0419 sl@0: @SYMTestCaseDesc Smart load of library test sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Tests for Leave,cleanupstack on Leave sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void testSmartLeaveL(TTestAssoc& aAssoc,TBool aLeave) sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0419 ")); sl@0: CleanupStack::PushL((TCleanupItem)aAssoc); sl@0: if (aLeave) sl@0: User::Leave(KErrNone); sl@0: CleanupStack::PopAndDestroy(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0420 sl@0: @SYMTestCaseDesc Wrapper function calling library tester functions sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Call up library tester functions sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void testSmartClass() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0420 Pointer functions ")); sl@0: RLibrary library; sl@0: CLibTest* tester; sl@0: LoadCreate(tester,library); sl@0: TTestAssoc assoc(library,tester); sl@0: testLibClass(assoc); sl@0: testLibClassC(assoc); sl@0: assoc.Unload(); sl@0: // sl@0: LoadCreate(tester,library); sl@0: assoc.Set(library,tester); sl@0: TRAPD(error,testSmartLeaveL(assoc,ETrue)); sl@0: test(error==KErrNone); sl@0: // sl@0: LoadCreate(tester,library); sl@0: assoc.Set(library,tester); sl@0: TRAP(error,testSmartLeaveL(assoc,EFalse)); sl@0: test(error==KErrNone); sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: test.Title(); sl@0: test.Start(_L("Unloader ")); sl@0: TInt error=TheFs.Connect(); sl@0: test(error==KErrNone); sl@0: __UHEAP_MARK; sl@0: CTrapCleanup *trapCleanup=CTrapCleanup::New(); sl@0: // sl@0: testManualLoad(); sl@0: testSmartLoad(); sl@0: testSmartClass(); sl@0: // sl@0: delete(trapCleanup); sl@0: __UHEAP_MARKEND; sl@0: test.End(); sl@0: test.Close(); sl@0: return(0); sl@0: }