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 sl@0: #include sl@0: #include "T_CUTPST.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: #define UNUSED_VAR(a) a = a sl@0: sl@0: const TInt KTestCleanupStack=0x40; sl@0: sl@0: sl@0: LOCAL_D CTrapCleanup* TheTrapCleanup=NULL; sl@0: LOCAL_D CPlainText* TheTextObject=NULL; sl@0: LOCAL_D CClipboard* TheWriteBoard=NULL; sl@0: LOCAL_D CClipboard* TheReadBoard=NULL; sl@0: LOCAL_D RFs TheSession; 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 testPlainTextCutPaste2() sl@0: { sl@0: TheTextObject=CPlainText::NewL(); sl@0: CleanupStack::PushL(TheTextObject); sl@0: OpenWriteClipboardLC(); // delete the system clipboard file if it exists. sl@0: sl@0: // Copy zero-length text to the clipboard. sl@0: INFO_PRINTF1(_L("Copy zero-length text to the clipboard")); sl@0: TheTextObject->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,0); sl@0: sl@0: OpenReadClipboardLC(); sl@0: test(TheTextObject->DocumentLength()==0); sl@0: sl@0: // Paste zero-length text from the clipboard. sl@0: INFO_PRINTF1(_L("Paste zero-length text from the clipboard")); sl@0: TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0); sl@0: sl@0: // Copy multiple paragraphs to the clipboard sl@0: INFO_PRINTF1(_L("PasteFromStoreL(aPos,aMaxPasteLength)")); sl@0: TBuf<512> buf(_L("Here is para one.")); sl@0: buf.Append(CEditableText::EParagraphDelimiter); sl@0: buf.Append(_L("This is paragraph two.")); sl@0: buf.Append(CEditableText::EParagraphDelimiter); sl@0: TheTextObject->InsertL(0,buf); sl@0: int text_length = TheTextObject->DocumentLength(); sl@0: sl@0: OpenWriteClipboardLC(); sl@0: TheTextObject->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheTextObject->DocumentLength()); sl@0: TheTextObject->Reset(); sl@0: test(TheTextObject->DocumentLength()==0); sl@0: sl@0: // Now paste the text. sl@0: OpenReadClipboardLC(); sl@0: TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheTextObject->DocumentLength()); sl@0: test(TheTextObject->DocumentLength()==text_length); sl@0: TInt fieldCount=TheTextObject->FieldCount(); sl@0: test(fieldCount==0); sl@0: sl@0: CleanupStack::PopAndDestroy(); // Last clipboard object sl@0: CleanupStack::PopAndDestroy(); // TheTextObject sl@0: TheWriteBoard=NULL; sl@0: TheReadBoard=NULL; sl@0: } sl@0: sl@0: LOCAL_C void testPlainTextCutPaste() sl@0: // sl@0: // sl@0: { sl@0: INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-CPLAIN-0001 Cut&Paste - with plainText ")); sl@0: TheTextObject=CPlainText::NewL(); sl@0: CleanupStack::PushL(TheTextObject); sl@0: OpenWriteClipboardLC(); // delete the system clipboard file if it exists. sl@0: test(TheTextObject->DocumentLength()==0); sl@0: // sl@0: INFO_PRINTF1(_L("Paste from empty store")); sl@0: OpenReadClipboardLC(); sl@0: TInt charCount=0; sl@0: TRAPD(ret, sl@0: charCount=TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheTextObject->DocumentLength())); sl@0: UNUSED_VAR(ret); sl@0: if (charCount<=0) sl@0: INFO_PRINTF1(_L(" No recognised data to paste or clipboard empty\n\r")); sl@0: TInt fieldCount=TheTextObject->FieldCount(); sl@0: test(fieldCount==0); sl@0: // sl@0: // INFO_PRINTF1(_L("Paste from clipboard with no recognised types")); sl@0: // WriteForeignDataToClipboardL(); sl@0: // sl@0: INFO_PRINTF1(_L("Paste into empty PlainText")); sl@0: TheTextObject->InsertL(TheTextObject->DocumentLength(),_L("SomeData")); sl@0: OpenWriteClipboardLC(); sl@0: TheTextObject->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheTextObject->DocumentLength()); sl@0: TheTextObject->Reset(); sl@0: test(TheTextObject->DocumentLength()==0); sl@0: OpenReadClipboardLC(); sl@0: TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheTextObject->DocumentLength()); sl@0: test(TheTextObject->DocumentLength()==_L("SomeData").Length()); sl@0: fieldCount=TheTextObject->FieldCount(); sl@0: test(fieldCount==0); sl@0: // sl@0: INFO_PRINTF1(_L("Paste @ start (pos=0)")); sl@0: TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0); sl@0: test(TheTextObject->DocumentLength()==_L("SomeDataSomeData").Length()); sl@0: fieldCount=TheTextObject->FieldCount(); sl@0: test(fieldCount==0); sl@0: // sl@0: INFO_PRINTF1(_L("Paste @ end (DocumentLength())")); sl@0: TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheTextObject->DocumentLength()); sl@0: test(TheTextObject->DocumentLength()==_L("SomeDataSomeDataSomeData").Length()); sl@0: fieldCount=TheTextObject->FieldCount(); sl@0: test(fieldCount==0); sl@0: // sl@0: INFO_PRINTF1(_L("Paste @ middle")); sl@0: TheTextObject->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),4); sl@0: fieldCount=TheTextObject->FieldCount(); sl@0: test(fieldCount==0); sl@0: TBuf<33> buf(_L("SomeSomeDataDataSomeDataSomeData")); sl@0: test(TheTextObject->DocumentLength()==buf.Length()); sl@0: buf.Append(CEditableText::EParagraphDelimiter); sl@0: test(TheTextObject->Read(0)==buf); sl@0: // sl@0: CleanupStack::PopAndDestroy(); // Last clipboard object sl@0: CleanupStack::PopAndDestroy(); // TheTextObject sl@0: TheWriteBoard=NULL; sl@0: TheReadBoard=NULL; 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: CT_CUTPST::CT_CUTPST() sl@0: { sl@0: SetTestStepName(KTestStep_T_CUTPST); sl@0: pTestStep = this; sl@0: } sl@0: sl@0: TVerdict CT_CUTPST::doTestStepL() sl@0: { sl@0: SetTestStepResult(EFail); sl@0: sl@0: INFO_PRINTF1(_L("Cut & Paste")); sl@0: __UHEAP_MARK; sl@0: setupCleanup(); sl@0: TRAPD(r1,testPlainTextCutPaste()); sl@0: TRAPD(r2,testPlainTextCutPaste2()); sl@0: sl@0: delete TheTrapCleanup; sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: if (r1 == KErrNone && r2 == KErrNone) sl@0: { sl@0: SetTestStepResult(EPass); sl@0: } sl@0: sl@0: return TestStepResult(); sl@0: }