sl@0: /* sl@0: * Copyright (c) 1997-2010 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: sl@0: #include "TSTCLIPB.H" sl@0: #include sl@0: #include "TXTMRTSR.H" sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "../incp/T_PMLPAR.H" sl@0: #include "T_RTCLIP.h" sl@0: sl@0: LOCAL_D CTestStep *pTestStep = NULL; sl@0: #define test(cond) \ sl@0: { \ sl@0: TBool __bb = (cond); \ sl@0: pTestStep->TEST(__bb); \ sl@0: if (!__bb) \ sl@0: { \ sl@0: pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \ sl@0: User::Leave(1); \ sl@0: } \ sl@0: } sl@0: #undef INFO_PRINTF1 sl@0: #undef INFO_PRINTF2 sl@0: // copy from tefexportconst.h sl@0: #define INFO_PRINTF1(p1) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1)) sl@0: #define INFO_PRINTF2(p1, p2) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2)) sl@0: sl@0: sl@0: #define UNUSED_VAR(a) a = a sl@0: sl@0: const TInt KTestCleanupStack=0x80; sl@0: sl@0: LOCAL_D CTrapCleanup* TheTrapCleanup=NULL; sl@0: LOCAL_D CRichText* TheText=NULL; sl@0: LOCAL_D CParaFormatLayer* TheGlobalParaLayer=NULL; sl@0: LOCAL_D CCharFormatLayer* TheGlobalCharLayer=NULL; sl@0: LOCAL_D CClipboard* TheWriteBoard=NULL; sl@0: LOCAL_D CClipboard* TheReadBoard=NULL; sl@0: LOCAL_D TFileName TheFileName = _L("z:\\test\\app-framework\\etext\\rtclipb.pml"); sl@0: LOCAL_D RFs TheSession; sl@0: sl@0: sl@0: class TDemStoreResolver : public MRichTextStoreResolver sl@0: { sl@0: public: sl@0: TDemStoreResolver(CStreamStore& aStore); sl@0: // sl@0: virtual const CStreamStore& StreamStoreL(TInt aPos)const; sl@0: private: sl@0: CStreamStore* iStore; sl@0: }; sl@0: sl@0: sl@0: TDemStoreResolver::TDemStoreResolver(CStreamStore& aStore) sl@0: : iStore(&aStore) sl@0: {} sl@0: sl@0: const CStreamStore& TDemStoreResolver::StreamStoreL(TInt /*aPos*/)const sl@0: {return *iStore;} sl@0: sl@0: sl@0: LOCAL_C void OpenWriteClipboardLC() sl@0: // Initialize a new write clipboard, after sl@0: // deleting any existing read clipboard. sl@0: // sl@0: { sl@0: if (TheReadBoard) sl@0: { sl@0: CleanupStack::PopAndDestroy(); sl@0: TheReadBoard=NULL; sl@0: TheSession.Close(); sl@0: } sl@0: User::LeaveIfError(TheSession.Connect()); sl@0: TheWriteBoard=CClipboard::NewForWritingLC(TheSession); sl@0: } sl@0: sl@0: sl@0: LOCAL_C void OpenReadClipboardLC() sl@0: // Initialize a new read clipboard, after sl@0: // deleting any existing write clipboard. sl@0: // sl@0: { sl@0: if (TheWriteBoard) sl@0: { sl@0: TheWriteBoard->CommitL(); sl@0: CleanupStack::PopAndDestroy(); sl@0: TheWriteBoard=NULL; sl@0: TheSession.Close(); sl@0: } sl@0: User::LeaveIfError(TheSession.Connect()); sl@0: TheReadBoard=CClipboard::NewForReadingLC(TheSession); sl@0: } sl@0: sl@0: sl@0: LOCAL_C void ParseRichTextDocumentLC() sl@0: // sl@0: { sl@0: CParser* myParser=CParser::NewL(); sl@0: CleanupStack::PushL(myParser); sl@0: TheText=myParser->ParseL(TheFileName); sl@0: TheGlobalParaLayer=(CParaFormatLayer*)TheText->GlobalParaFormatLayer(); sl@0: TheGlobalCharLayer=(CCharFormatLayer*)TheText->GlobalCharFormatLayer(); sl@0: CleanupStack::PopAndDestroy(); sl@0: // sl@0: CleanupStack::PushL(TheText); sl@0: } sl@0: sl@0: sl@0: LOCAL_C void testRichTextCutPaste1a() sl@0: // sl@0: // sl@0: { sl@0: INFO_PRINTF1(_L("Cut & paste, preserving formatting into non-empty document")); sl@0: TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml"); sl@0: ParseRichTextDocumentLC(); sl@0: TheText->DeleteL(0,TheText->DocumentLength()); sl@0: TPtrC buf1(_L("ab")); sl@0: TheText->InsertL(0,buf1); sl@0: TheText->InsertL(1,CEditableText::EParagraphDelimiter); sl@0: TheReadBoard=NULL; sl@0: TheWriteBoard=NULL; sl@0: OpenWriteClipboardLC(); sl@0: TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength()); sl@0: TheText->DeleteL(1,2); // Just leaves the single character 'a' as content. sl@0: // sl@0: OpenReadClipboardLC(); sl@0: TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),1); sl@0: // sl@0: CleanupStack::PopAndDestroy(); // Last clipboard object sl@0: CleanupStack::PopAndDestroy(); // TheTextObject sl@0: delete TheGlobalParaLayer; sl@0: delete TheGlobalCharLayer; sl@0: } sl@0: sl@0: _LIT(KOutputFile, "c:\\etext\\t_rtclip.doc"); sl@0: LOCAL_C void testRichTextCutPaste1b() sl@0: // sl@0: // sl@0: { sl@0: TheReadBoard=NULL; sl@0: TheWriteBoard=NULL; sl@0: INFO_PRINTF1(_L("Copy to Clipboard with pictures, with missing host applications.")); sl@0: TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml"); // dummy - just to get global layers sl@0: ParseRichTextDocumentLC(); sl@0: TheText->Reset(); sl@0: // sl@0: CXzeDoor* pic1=CXzeDoor::NewL('1',EFalse); // never fail to detach sl@0: CXzePicture* pic2=CXzePicture::NewL('2'); sl@0: CXzeDoor* pic3=CXzeDoor::NewL('1',EFalse); // never fail to detach sl@0: CXzePicture* pic4=CXzePicture::NewL('2'); sl@0: // sl@0: TPictureHeader hdr1; sl@0: TPictureHeader hdr2; sl@0: TPictureHeader hdr3; sl@0: TPictureHeader hdr4; sl@0: // sl@0: hdr1.iPictureType=KUidXzeDoorType; sl@0: hdr2.iPictureType=KUidXzePictureType; sl@0: hdr3.iPictureType=KUidXzeDoorType; sl@0: hdr4.iPictureType=KUidXzePictureType; sl@0: // sl@0: hdr1.iPicture=pic1; sl@0: hdr2.iPicture=pic2; sl@0: hdr3.iPicture=pic3; sl@0: hdr4.iPicture=pic4; sl@0: // sl@0: TheText->InsertL(0,hdr4); sl@0: TheText->InsertL(0,hdr3); sl@0: TheText->InsertL(0,hdr2); sl@0: TheText->InsertL(0,hdr1); sl@0: test(TheText->PictureCount()==4); sl@0: // sl@0: // Now save and reload this to get the pictures into a deferred picture store. sl@0: RFs session; sl@0: session.Connect(); sl@0: session.Delete(KOutputFile); sl@0: session.MkDirAll(KOutputFile); sl@0: CFileStore* store=CDirectFileStore::CreateLC(session,KOutputFile,EFileRead|EFileWrite); sl@0: store->SetTypeL(KDirectFileStoreLayoutUid); sl@0: TStreamId id=KNullStreamId; sl@0: TRAPD(r, sl@0: id=TheText->StoreL(*store)); sl@0: test(r==KErrNone); sl@0: // sl@0: TheText->Reset(); sl@0: TheText->RestoreL(*store,id); sl@0: MDemPictureFactory* factory=new(ELeave) MDemPictureFactory; sl@0: TDemStoreResolver resolver(*store); sl@0: TheText->SetPictureFactory(factory,&resolver); sl@0: // sl@0: // Now the tests. sl@0: OpenWriteClipboardLC(); sl@0: TInt documentLength=TheText->DocumentLength(); sl@0: TRAP(r, sl@0: TheText->DetachFromStoreL(CPicture::EDetachFull,0,documentLength)); sl@0: if (r==KErrNotSupported) sl@0: INFO_PRINTF1(_L(" SIMULATION: Some picture data has been removed\n")); sl@0: else if (r!=KErrNone) sl@0: User::Leave(r); sl@0: TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,documentLength); sl@0: // sl@0: TheText->Reset(); sl@0: TheText->SetPictureFactory(factory,&resolver); sl@0: documentLength=TheText->DocumentLength(); sl@0: test(documentLength==0); sl@0: OpenReadClipboardLC(); sl@0: TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),documentLength); sl@0: test(TheText->DocumentLength()==4); sl@0: test(TheText->ParagraphCount()==1); sl@0: test(TheText->PictureCount()==4); sl@0: ///////////////////////////////////////////////////////////////////////////// sl@0: CleanupStack::PopAndDestroy(); // Last clipboard object sl@0: CleanupStack::PopAndDestroy(); // store sl@0: CleanupStack::PopAndDestroy(); // TheTextObject sl@0: delete factory; sl@0: delete TheGlobalParaLayer; sl@0: delete TheGlobalCharLayer; sl@0: session.Close(); sl@0: } sl@0: sl@0: sl@0: LOCAL_C void testRichTextCutPaste1() sl@0: // sl@0: // sl@0: { sl@0: INFO_PRINTF1(_L("Cut&Paste - preserving formatting")); sl@0: TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml"); sl@0: ParseRichTextDocumentLC(); sl@0: // sl@0: CRichText* copiedText=CRichText::NewL(TheGlobalParaLayer,TheGlobalCharLayer); sl@0: //////////////////////////////////////////////////////////////////////////// sl@0: TheReadBoard=NULL; sl@0: TheWriteBoard=NULL; sl@0: // sl@0: // Scenario 1 sl@0: INFO_PRINTF1(_L("multiple partial phrases")); sl@0: OpenWriteClipboardLC(); sl@0: TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),36,73); sl@0: OpenReadClipboardLC(); sl@0: copiedText->Reset(); sl@0: TInt pasted=0; sl@0: TRAPD(ret, sl@0: pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0)); sl@0: test(ret==KErrNone); sl@0: test(pasted==73); sl@0: test(copiedText->DocumentLength()==73); sl@0: test(copiedText->ParagraphCount()==3); sl@0: // sl@0: // Scenario 2 sl@0: INFO_PRINTF1(_L("multiple whole phrases")); sl@0: OpenWriteClipboardLC(); sl@0: TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),51,60); sl@0: copiedText->Reset(); sl@0: OpenReadClipboardLC(); sl@0: pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0); sl@0: test(pasted==60); sl@0: test(copiedText->DocumentLength()==60); sl@0: test(copiedText->ParagraphCount()==3); sl@0: // sl@0: // Scenario 3 sl@0: INFO_PRINTF1(_L("single middle portion of a phrase")); sl@0: OpenWriteClipboardLC(); sl@0: TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),53,2); sl@0: copiedText->Reset(); sl@0: OpenReadClipboardLC(); sl@0: pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0); sl@0: test(pasted==2); sl@0: test(copiedText->DocumentLength()==2); sl@0: test(copiedText->ParagraphCount()==1); sl@0: // sl@0: // Scenario 4 sl@0: INFO_PRINTF1(_L("multiple phrases, starting/ending on shared paragraphs")); sl@0: OpenWriteClipboardLC(); sl@0: TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,140); sl@0: copiedText->Reset(); sl@0: OpenReadClipboardLC(); sl@0: pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0); sl@0: test(pasted==140); sl@0: test(copiedText->DocumentLength()==140); sl@0: test(copiedText->ParagraphCount()==5); sl@0: sl@0: // sl@0: // Scenario 5 sl@0: INFO_PRINTF1(_L("zero phrases")); sl@0: OpenWriteClipboardLC(); sl@0: TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),70,10); sl@0: copiedText->Reset(); sl@0: OpenReadClipboardLC(); sl@0: pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0); sl@0: test(pasted==10); sl@0: test(copiedText->DocumentLength()==10); sl@0: test(copiedText->ParagraphCount()==1); sl@0: sl@0: // sl@0: CleanupStack::PopAndDestroy(); // Last clipboard object sl@0: CleanupStack::PopAndDestroy(); // TheTextObject sl@0: delete copiedText; sl@0: delete TheGlobalParaLayer; sl@0: delete TheGlobalCharLayer; sl@0: sl@0: } sl@0: sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ETEXT-CT-4001 sl@0: @SYMTestCaseDesc Pasted final paragraph formatting should match copied final paragraph sl@0: formatting. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Enter three paragraphs into an empty document with the last paragraph sl@0: *not* terminated by a paragraph delimiter. Apply some custom sl@0: formatting to the last paragraph then copy and paste all of the text sl@0: into a new empty document. sl@0: @SYMTestExpectedResults The formatting in the pasted final paragraph should match the copied. sl@0: @SYMDEF INC115783 sl@0: */ sl@0: LOCAL_C void testRichTextCutPaste2() sl@0: { sl@0: INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-CT-4001 Pasted final paragraph format should match copied final paragraph format ")); sl@0: TheReadBoard=NULL; sl@0: TheWriteBoard=NULL; sl@0: TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml"); // dummy - just to get global layers sl@0: ParseRichTextDocumentLC(); sl@0: TheText->Reset(); sl@0: TheText->InsertL(0,_L("\x2029\x2029SomeData")); //3 paras, last has no ending para delimiter); sl@0: sl@0: //create paragraph formatting (yellow bkg, indent & bullets) sl@0: CParaFormat* paraFormatIn = CParaFormat::NewLC(); sl@0: paraFormatIn->iBullet=new(ELeave)TBullet; sl@0: paraFormatIn->iBullet->iHeightInTwips=240; sl@0: paraFormatIn->iFillColor = 0xffffff00; sl@0: paraFormatIn->iIndentInTwips = 600; sl@0: TParaFormatMask paraFormatMask; sl@0: paraFormatMask.SetAttrib(EAttBullet); sl@0: paraFormatMask.SetAttrib(EAttFillColor); sl@0: paraFormatMask.SetAttrib(EAttIndent); sl@0: sl@0: TheText->ApplyParaFormatL(paraFormatIn,paraFormatMask,3,0); //Apply format to last para only sl@0: sl@0: OpenWriteClipboardLC(); sl@0: TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength()); sl@0: sl@0: TheText->Reset(); sl@0: test(TheText->DocumentLength()==0); sl@0: OpenReadClipboardLC(); sl@0: TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheText->DocumentLength()); sl@0: test(TheText->DocumentLength()==_L("\x2029\x2029SomeData").Length()); sl@0: test(TheText->ParagraphCount()==3); sl@0: sl@0: CParaFormat* paraFormatOut = CParaFormat::NewLC(); sl@0: TheText->GetParagraphFormatL(paraFormatOut,3); sl@0: sl@0: test(paraFormatOut->IsEqual(*paraFormatIn,paraFormatMask));// in and out should match sl@0: sl@0: CleanupStack::PopAndDestroy(4); sl@0: delete TheGlobalParaLayer; sl@0: delete TheGlobalCharLayer; sl@0: } sl@0: sl@0: sl@0: LOCAL_C void testRichTextCutPaste3() sl@0: // sl@0: // sl@0: { sl@0: INFO_PRINTF1(_L("Cutting paragraph of constant character formatting")); sl@0: TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb3.pml"); sl@0: ParseRichTextDocumentLC(); sl@0: // sl@0: TheReadBoard=NULL; sl@0: TheWriteBoard=NULL; sl@0: // sl@0: INFO_PRINTF1(_L("Copying to clipboard")); sl@0: OpenWriteClipboardLC(); sl@0: TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),4,3); sl@0: // sl@0: CleanupStack::PopAndDestroy(); // Last clipboard object sl@0: CleanupStack::PopAndDestroy(); // TheTextObject sl@0: delete TheGlobalParaLayer; sl@0: delete TheGlobalCharLayer; sl@0: sl@0: } sl@0: sl@0: sl@0: sl@0: LOCAL_C void testRichTextCutPaste() sl@0: // sl@0: // sl@0: { sl@0: INFO_PRINTF1(_L("Cut&Paste - with Rich Text")); sl@0: ParseRichTextDocumentLC(); sl@0: OpenWriteClipboardLC(); sl@0: INFO_PRINTF1(_L("Copy zero-length text to the clipboard")); sl@0: TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,0); sl@0: sl@0: OpenReadClipboardLC(); sl@0: INFO_PRINTF1(_L("Paste from empty clipboard")); sl@0: TInt err=0; sl@0: TRAPD(ret, sl@0: err=TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheText->DocumentLength())); sl@0: UNUSED_VAR(ret); sl@0: if (err==KErrNotFound) sl@0: INFO_PRINTF1(_L(" No recognised data to paste or clipboard empty\n\r")); sl@0: TInt fieldCount=TheText->FieldCount(); sl@0: test(fieldCount==0); sl@0: //////////////////////////////////////////////////////////////////////////// sl@0: INFO_PRINTF1(_L("Paste into empty RichText")); sl@0: TheText->Reset(); sl@0: TheText->InsertL(TheText->DocumentLength(),_L("SomeData")); sl@0: OpenWriteClipboardLC(); sl@0: TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength()); sl@0: TheText->Reset(); sl@0: test(TheText->DocumentLength()==0); sl@0: OpenReadClipboardLC(); sl@0: TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheText->DocumentLength()); sl@0: test(TheText->DocumentLength()==_L("SomeData").Length()); sl@0: test(TheText->ParagraphCount()==1); sl@0: fieldCount=TheText->FieldCount(); sl@0: test(fieldCount==0); sl@0: ///////////////////////////////////////////////////////////////////////////// sl@0: INFO_PRINTF1(_L("Pasting text only - no paragraph delimiter")); sl@0: TheText->Reset(); sl@0: TheText->InsertL(0,_L("the end")); sl@0: TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),4); sl@0: test(TheText->DocumentLength()==16); sl@0: ////////////////////////////////////////////////////////////////////////// sl@0: INFO_PRINTF1(_L("Paste @ start (pos=0)")); sl@0: TheText->Reset(); sl@0: TheText->InsertL(TheText->DocumentLength(),_L("SomeData")); sl@0: TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0); sl@0: test(TheText->DocumentLength()==_L("SomeDataSomeData").Length()); sl@0: test(TheText->ParagraphCount()==1); sl@0: fieldCount=TheText->FieldCount(); sl@0: test(fieldCount==0); sl@0: //////////////////////////////////////////////////////////////////////////// sl@0: INFO_PRINTF1(_L("Paste @ end (DocumentLength())")); sl@0: TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheText->DocumentLength()); sl@0: test(TheText->DocumentLength()==_L("SomeDataSomeDataSomeData").Length()); sl@0: test(TheText->ParagraphCount()==1); sl@0: fieldCount=TheText->FieldCount(); sl@0: test(fieldCount==0); sl@0: //////////////////////////////////////////////////////////////////////////// sl@0: INFO_PRINTF1(_L("Paste @ middle")); sl@0: TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),4); sl@0: fieldCount=TheText->FieldCount(); sl@0: test(fieldCount==0); sl@0: TBuf<33> buf(_L("SomeSomeDataDataSomeDataSomeData")); sl@0: test(TheText->DocumentLength()==buf.Length()); sl@0: buf.Append(CEditableText::EParagraphDelimiter); sl@0: test(TheText->Read(0)==buf); sl@0: test(TheText->ParagraphCount()==1); sl@0: ///////////////////////////////////////////////////////////////////////////// sl@0: sl@0: ///////////////////////////////////////////////////////////////////////////// sl@0: INFO_PRINTF1(_L("Pasting rich text inbetween 2 pictures")); sl@0: TheText->Reset(); sl@0: // sl@0: CXzePicture* pic1=CXzePicture::NewL('1'); sl@0: CXzePicture* pic2=CXzePicture::NewL('2'); sl@0: // sl@0: TPictureHeader hdr1; sl@0: TPictureHeader hdr2; sl@0: // sl@0: hdr1.iPictureType=KUidXzePictureType; sl@0: hdr2.iPictureType=KUidXzePictureType; sl@0: // sl@0: hdr1.iPicture=pic1; sl@0: hdr2.iPicture=pic2; sl@0: // sl@0: TheText->InsertL(0,hdr2); sl@0: TheText->InsertL(0,hdr1); sl@0: // sl@0: OpenWriteClipboardLC(); sl@0: TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength()); sl@0: // sl@0: OpenReadClipboardLC(); sl@0: sl@0: TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),1); sl@0: test(TheText->DocumentLength()==4); sl@0: test(TheText->ParagraphCount()==1); sl@0: ///////////////////////////////////////////////////////////////////////////// sl@0: INFO_PRINTF1(_L("Pasting rich text with para delimiters")); sl@0: TheText->InsertL(1,CEditableText::EParagraphDelimiter); sl@0: // sl@0: OpenWriteClipboardLC(); sl@0: TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength()); sl@0: // sl@0: OpenReadClipboardLC(); sl@0: TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),1); sl@0: test(TheText->DocumentLength()==10); sl@0: test(TheText->ParagraphCount()==3); sl@0: sl@0: ///////////////////////////////////////////////////////////////////////////// sl@0: CleanupStack::PopAndDestroy(); // Last clipboard object sl@0: CleanupStack::PopAndDestroy(); // TheTextObject sl@0: delete TheGlobalParaLayer; sl@0: delete TheGlobalCharLayer; sl@0: } sl@0: sl@0: sl@0: LOCAL_C void setupCleanup() sl@0: // sl@0: // Initialise the cleanup stack. sl@0: // sl@0: { sl@0: sl@0: TheTrapCleanup=CTrapCleanup::New(); sl@0: TRAPD(r,\ sl@0: {\ sl@0: for (TInt i=KTestCleanupStack;i>0;i--)\ sl@0: CleanupStack::PushL((TAny*)1);\ sl@0: test(r==KErrNone);\ sl@0: CleanupStack::Pop(KTestCleanupStack);\ sl@0: }); sl@0: } sl@0: sl@0: sl@0: LOCAL_C void DeleteDataFile(const TDesC& aFullName) sl@0: { sl@0: RFs fsSession; sl@0: TInt err = fsSession.Connect(); sl@0: if(err == KErrNone) sl@0: { sl@0: TEntry entry; sl@0: if(fsSession.Entry(aFullName, entry) == KErrNone) sl@0: { sl@0: RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName); sl@0: err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly); sl@0: if(err != KErrNone) sl@0: { sl@0: RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName); sl@0: } sl@0: err = fsSession.Delete(aFullName); sl@0: if(err != KErrNone) sl@0: { sl@0: RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName); sl@0: } sl@0: } sl@0: fsSession.Close(); sl@0: } sl@0: else sl@0: { sl@0: RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName); sl@0: } sl@0: } sl@0: sl@0: CT_RTCLIP::CT_RTCLIP() sl@0: { sl@0: SetTestStepName(KTestStep_T_RTCLIP); sl@0: pTestStep = this; sl@0: } sl@0: sl@0: TVerdict CT_RTCLIP::doTestStepL() sl@0: { sl@0: SetTestStepResult(EFail); sl@0: sl@0: INFO_PRINTF1(_L("Cut & Paste")); sl@0: sl@0: __UHEAP_MARK; sl@0: setupCleanup(); sl@0: sl@0: TRAPD(r1, testRichTextCutPaste()); sl@0: TRAPD(r2, testRichTextCutPaste1()); sl@0: TRAPD(r3, testRichTextCutPaste1a()); sl@0: TRAPD(r4, testRichTextCutPaste1b()); sl@0: TRAPD(r5, testRichTextCutPaste2()); sl@0: TRAPD(r6, testRichTextCutPaste3()); sl@0: sl@0: delete TheTrapCleanup; sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: ::DeleteDataFile(KOutputFile); //deletion of data files must be before call to End() - DEF047652 sl@0: sl@0: if (r1 == KErrNone && r2 == KErrNone && r3 == KErrNone && r4 == KErrNone && r5 == KErrNone && r6 == KErrNone) sl@0: { sl@0: SetTestStepResult(EPass); sl@0: } sl@0: sl@0: return TestStepResult(); sl@0: }