sl@0: // Copyright (c) 2006-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: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include "TEcomDecpDataRec.h" sl@0: sl@0: const TInt KNumDataTypes = 1; sl@0: const TUid KUid = {0x102032A2}; sl@0: sl@0: sl@0: const TInt KTestDataRecognizerError=-420; // some random number for test error code sl@0: _LIT(KDeceptiveRecognizerToken, "c:\\test\\appfwk\\emime\\deceptive_recognizer.token"); sl@0: sl@0: sl@0: CApaDataRecognizerType* CTEcomDecpDataRec::CreateRecognizerL() sl@0: { sl@0: return new (ELeave) CTEcomDecpDataRec; sl@0: } sl@0: sl@0: CTEcomDecpDataRec::CTEcomDecpDataRec():CApaDataRecognizerType(KUid, CApaDataRecognizerType::EHigh) sl@0: { sl@0: iCountDataTypes = KNumDataTypes; sl@0: } sl@0: sl@0: TUint CTEcomDecpDataRec::PreferredBufSize() sl@0: { sl@0: return 0; sl@0: } sl@0: sl@0: TDataType CTEcomDecpDataRec::SupportedDataTypeL(TInt /*lIndex*/) const sl@0: { sl@0: return TDataType(_L8("deceptivedata/app")); sl@0: } sl@0: sl@0: void CTEcomDecpDataRec::DoRecognizeL(const TDesC& /*aName*/, const TDesC8& /*aBuffer*/) sl@0: { sl@0: // KTestDataRecognizerError - Random error code chosen to simulate a leave in a recognizer which can be used for testing. sl@0: // sl@0: // NOTE: To avoid leaving with KTestDataRecognizerError whenever a file is not recognized, a token has been used, sl@0: // so that only when running emime tests this leaving will occur (i.e, the token is created/destroyed during such tests). sl@0: // Otherwise, the DoRecognizeL does nothing. sl@0: sl@0: RFs fs; sl@0: CleanupClosePushL(fs); sl@0: User::LeaveIfError(fs.Connect()); sl@0: sl@0: if (BaflUtils::FileExists(fs, KDeceptiveRecognizerToken)) sl@0: { sl@0: User::Leave(KTestDataRecognizerError); sl@0: } sl@0: sl@0: CleanupStack::PopAndDestroy(&fs); sl@0: }